|
18 | 18 | /// \author Raymond Ehlers (raymond.ehlers@cern.ch) ORNL, Florian Jonas (florian.jonas@cern.ch) |
19 | 19 | /// |
20 | 20 |
|
21 | | -#include <algorithm> |
| 21 | +#include <gsl/span> |
| 22 | +#include <fairlogger/Logger.h> |
| 23 | +#include <cstdint> |
| 24 | +#include <cstddef> |
22 | 25 | #include <memory> |
| 26 | +#include <sstream> |
23 | 27 | #include <unordered_map> |
24 | 28 | #include <cmath> |
25 | 29 | #include <string> |
26 | 30 | #include <tuple> |
| 31 | +#include <utility> |
27 | 32 | #include <vector> |
28 | 33 | #include <random> |
29 | 34 |
|
30 | 35 | #include "CCDB/BasicCCDBManager.h" |
31 | 36 | #include "Framework/runDataProcessing.h" |
32 | | -#include "Framework/AnalysisTask.h" |
33 | 37 | #include "Framework/AnalysisDataModel.h" |
| 38 | +#include "Framework/AnalysisTask.h" |
| 39 | +#include "Framework/AnalysisHelpers.h" |
34 | 40 | #include "Framework/ASoA.h" |
| 41 | +#include "Framework/Configurable.h" |
| 42 | +#include "Framework/Expressions.h" |
| 43 | +#include "Framework/HistogramSpec.h" |
| 44 | +#include "Framework/HistogramRegistry.h" |
| 45 | +#include "Framework/InitContext.h" |
| 46 | +#include "Framework/WorkflowSpec.h" |
35 | 47 |
|
36 | 48 | #include "DetectorsBase/GeometryManager.h" |
37 | 49 |
|
| 50 | +#include "PWGJE/DataModel/EMCALClusterDefinition.h" |
38 | 51 | #include "PWGJE/DataModel/EMCALClusters.h" |
39 | 52 | #include "PWGJE/DataModel/EMCALMatchedCollisions.h" |
40 | 53 |
|
41 | 54 | #include "Common/DataModel/EventSelection.h" |
42 | 55 | #include "Common/DataModel/TrackSelectionTables.h" |
| 56 | +#include "DataFormatsEMCAL/ClusterLabel.h" |
43 | 57 | #include "DataFormatsEMCAL/Cell.h" |
44 | 58 | #include "DataFormatsEMCAL/CellLabel.h" |
45 | 59 | #include "DataFormatsEMCAL/Constants.h" |
|
49 | 63 | #include "EMCALBase/NonlinearityHandler.h" |
50 | 64 | #include "EMCALReconstruction/Clusterizer.h" |
51 | 65 | #include "PWGJE/Core/JetUtilities.h" |
| 66 | +#include "GPUROOTCartesianFwd.h" |
52 | 67 | #include "TVector2.h" |
| 68 | +#include "TH1.h" |
53 | 69 |
|
54 | 70 | using namespace o2; |
55 | 71 | using namespace o2::framework; |
|
0 commit comments