|
14 | 14 | /// \author Nima Zardoshti <nima.zardoshti@cern.ch> |
15 | 15 | /// \author Jochen Klein <jochen.klein@cern.ch> |
16 | 16 |
|
| 17 | +#include <Framework/ASoA.h> |
| 18 | +#include <Framework/AnalysisHelpers.h> |
| 19 | +#include <Framework/Configurable.h> |
| 20 | +#include <Framework/Expressions.h> |
| 21 | +#include <Framework/HistogramRegistry.h> |
| 22 | +#include <Framework/HistogramSpec.h> |
| 23 | +#include <Framework/InitContext.h> |
| 24 | +#include <Framework/O2DatabasePDGPlugin.h> |
| 25 | +#include <Framework/runDataProcessing.h> // IWYU pragma: keep (needed in tasks) |
| 26 | + |
| 27 | +#include <string> |
17 | 28 | #include <vector> |
18 | 29 |
|
19 | | -#include "CommonConstants/PhysicsConstants.h" |
| 30 | +#include <fastjet/JetDefinition.hh> |
| 31 | +#include <fastjet/PseudoJet.hh> |
| 32 | + |
| 33 | +#include <THn.h> |
| 34 | +#include <TMathBase.h> |
20 | 35 |
|
21 | | -#include "PWGJE/Core/JetFindingUtilities.h" |
22 | 36 | #include "PWGJE/Core/JetDerivedDataUtilities.h" |
23 | | -#include "Common/Core/RecoDecay.h" |
| 37 | +#include "PWGJE/Core/JetFinder.h" |
| 38 | +#include "PWGJE/Core/JetFindingUtilities.h" |
| 39 | +#include "PWGJE/DataModel/EMCALClusterDefinition.h" |
| 40 | +#include "PWGJE/DataModel/EMCALClusters.h" |
| 41 | +#include "PWGJE/DataModel/Jet.h" |
| 42 | +#include "PWGJE/DataModel/JetReducedData.h" |
| 43 | +#include "PWGJE/DataModel/JetSubtraction.h" |
24 | 44 |
|
25 | 45 | using namespace o2; |
26 | | -using namespace o2::analysis; |
27 | 46 | using namespace o2::framework; |
28 | 47 | using namespace o2::framework::expressions; |
29 | 48 |
|
30 | | -// NB: runDataProcessing.h must be included after customize! |
31 | | -#include "Framework/runDataProcessing.h" |
32 | | - |
33 | 49 | template <typename CandidateTableData, typename CandidateTableMCD, typename CandidateTableMCP, typename JetTracksSubTable, typename JetParticlesSubTable, typename JetTable, typename ConstituentTable, typename JetEvtWiseSubTable, typename ConstituentEvtWiseSubTable> |
34 | 50 | struct JetFinderHFTask { |
35 | 51 | Produces<JetTable> jetsTable; |
|
0 commit comments