|
20 | 20 | // * |
21 | 21 | //********************************************************* |
22 | 22 |
|
23 | | -#ifndef PWGJE_TASKS_JETFORMATIONTIMERECLUSTERING_H_ |
24 | | -#define PWGJE_TASKS_JETFORMATIONTIMERECLUSTERING_H_ |
25 | | - |
| 23 | +#include "PWGJE/Core/FastJetUtilities.h" |
| 24 | +#include "PWGJE/Core/JetFinder.h" |
26 | 25 | #include "PWGJE/DataModel/Jet.h" // IWYU pragma: keep |
27 | 26 | #include "PWGJE/DataModel/JetReducedData.h" |
28 | | -#include "PWGJE/DataModel/JetSubstructure.h" // new |
| 27 | +#include "PWGJE/DataModel/JetSubstructure.h" |
29 | 28 | #include "PWGJE/DataModel/JetSubtraction.h" |
30 | 29 |
|
31 | 30 | #include <Framework/ASoA.h> |
| 31 | +#include <Framework/AnalysisHelpers.h> |
| 32 | +#include <Framework/AnalysisTask.h> |
| 33 | +#include <Framework/Configurable.h> |
| 34 | +#include <Framework/HistogramRegistry.h> |
| 35 | +#include <Framework/HistogramSpec.h> |
| 36 | +#include <Framework/InitContext.h> |
| 37 | +#include <Framework/O2DatabasePDGPlugin.h> |
| 38 | +#include <Framework/runDataProcessing.h> |
| 39 | + |
| 40 | +#include <TMath.h> |
| 41 | + |
| 42 | +#include <fastjet/ClusterSequenceArea.hh> |
| 43 | +#include <fastjet/JetDefinition.hh> |
| 44 | +#include <fastjet/PseudoJet.hh> |
32 | 45 |
|
33 | 46 | #include <cmath> |
34 | 47 | #include <cstdint> |
| 48 | +#include <utility> |
35 | 49 | #include <vector> |
36 | 50 |
|
| 51 | +using namespace o2; |
| 52 | +using namespace o2::framework; |
| 53 | +using namespace o2::framework::expressions; |
| 54 | + |
37 | 55 | namespace o2::aod |
38 | 56 | { |
39 | 57 | // new part |
@@ -65,41 +83,12 @@ DECLARE_SOA_TABLE(CEWSJetTFSSs, "AOD", "CEWSJETTFSS", jetTFsubstructure::JetPt, |
65 | 83 |
|
66 | 84 | } // namespace o2::aod |
67 | 85 |
|
68 | | -#endif // PWGJE_DATAMODEL_JETFORMATIONTIMERECLUSTERING_H_ |
69 | | - |
70 | 86 | //********************************************************* |
71 | 87 | // * |
72 | 88 | // Begin of the task * |
73 | 89 | // * |
74 | 90 | //********************************************************* |
75 | 91 |
|
76 | | -#include "PWGJE/Core/FastJetUtilities.h" |
77 | | -#include "PWGJE/Core/JetFinder.h" |
78 | | - |
79 | | -#include <Framework/ASoA.h> |
80 | | -#include <Framework/AnalysisHelpers.h> |
81 | | -#include <Framework/AnalysisTask.h> |
82 | | -#include <Framework/Configurable.h> |
83 | | -#include <Framework/HistogramRegistry.h> |
84 | | -#include <Framework/HistogramSpec.h> |
85 | | -#include <Framework/InitContext.h> |
86 | | -#include <Framework/O2DatabasePDGPlugin.h> |
87 | | -#include <Framework/runDataProcessing.h> |
88 | | - |
89 | | -#include <TMath.h> |
90 | | - |
91 | | -#include <fastjet/ClusterSequenceArea.hh> |
92 | | -#include <fastjet/JetDefinition.hh> |
93 | | -#include <fastjet/PseudoJet.hh> |
94 | | - |
95 | | -#include <cmath> |
96 | | -#include <cstdint> |
97 | | -#include <utility> |
98 | | - |
99 | | -using namespace o2; |
100 | | -using namespace o2::framework; |
101 | | -using namespace o2::framework::expressions; |
102 | | - |
103 | 92 | struct JetFormationTimeReclustering { |
104 | 93 |
|
105 | 94 | Produces<aod::CJetTFSSs> jetSubstructureDataTable; |
|
0 commit comments