|
13 | 13 | /// \brief PID flow using the generic framework |
14 | 14 | /// \author Preet Bhanjan Pati <preet.bhanjan.pati@cern.ch> |
15 | 15 |
|
16 | | -#include <CCDB/BasicCCDBManager.h> |
17 | | -#include <cmath> |
18 | | -#include <vector> |
19 | | -#include <utility> |
20 | | -#include <array> |
21 | | -#include <string> |
22 | | -#include <map> |
23 | | - |
24 | | -#include "Math/Vector4D.h" |
25 | | - |
26 | | -#include "Framework/runDataProcessing.h" |
27 | | -#include "Framework/AnalysisTask.h" |
28 | | -#include "Framework/ASoAHelpers.h" |
29 | | -#include "Framework/RunningWorkflowInfo.h" |
30 | | -#include "Framework/HistogramRegistry.h" |
31 | | -#include "Framework/AnalysisDataModel.h" |
32 | | -#include "Framework/StepTHn.h" |
| 16 | +#include "PWGCF/GenericFramework/Core/FlowContainer.h" |
| 17 | +#include "PWGCF/GenericFramework/Core/GFW.h" |
| 18 | +#include "PWGCF/GenericFramework/Core/GFWConfig.h" |
| 19 | +#include "PWGCF/GenericFramework/Core/GFWCumulant.h" |
| 20 | +#include "PWGCF/GenericFramework/Core/GFWPowerArray.h" |
| 21 | +#include "PWGCF/GenericFramework/Core/GFWWeights.h" |
| 22 | +#include "PWGCF/GenericFramework/Core/GFWWeightsList.h" |
33 | 23 |
|
34 | | -#include "Common/DataModel/EventSelection.h" |
35 | 24 | #include "Common/Core/TrackSelection.h" |
36 | | -#include "Common/DataModel/TrackSelectionTables.h" |
| 25 | +#include "Common/Core/trackUtilities.h" |
37 | 26 | #include "Common/DataModel/Centrality.h" |
| 27 | +#include "Common/DataModel/EventSelection.h" |
| 28 | +#include "Common/DataModel/Multiplicity.h" |
38 | 29 | #include "Common/DataModel/PIDResponse.h" |
39 | 30 | #include "Common/DataModel/PIDResponseITS.h" |
40 | | -#include "Common/Core/trackUtilities.h" |
41 | | -#include "Common/DataModel/Multiplicity.h" |
42 | | -#include "CommonConstants/PhysicsConstants.h" |
43 | | - |
44 | | -#include "PWGCF/GenericFramework/Core/GFWPowerArray.h" |
45 | | -#include "PWGCF/GenericFramework/Core/GFW.h" |
46 | | -#include "PWGCF/GenericFramework/Core/GFWCumulant.h" |
47 | | -#include "PWGCF/GenericFramework/Core/FlowContainer.h" |
48 | | -#include "PWGCF/GenericFramework/Core/GFWWeights.h" |
49 | | -#include "PWGCF/GenericFramework/Core/GFWWeightsList.h" |
50 | | -#include "PWGCF/GenericFramework/Core/GFWConfig.h" |
| 31 | +#include "Common/DataModel/TrackSelectionTables.h" |
51 | 32 |
|
52 | | -#include "ReconstructionDataFormats/Track.h" |
| 33 | +#include "CommonConstants/PhysicsConstants.h" |
| 34 | +#include "Framework/ASoAHelpers.h" |
| 35 | +#include "Framework/AnalysisDataModel.h" |
| 36 | +#include "Framework/AnalysisTask.h" |
| 37 | +#include "Framework/HistogramRegistry.h" |
| 38 | +#include "Framework/RunningWorkflowInfo.h" |
| 39 | +#include "Framework/StepTHn.h" |
| 40 | +#include "Framework/runDataProcessing.h" |
53 | 41 | #include "ReconstructionDataFormats/PID.h" |
| 42 | +#include "ReconstructionDataFormats/Track.h" |
| 43 | +#include <CCDB/BasicCCDBManager.h> |
54 | 44 |
|
| 45 | +#include "Math/Vector4D.h" |
| 46 | +#include <TF1.h> |
55 | 47 | #include <TProfile.h> |
56 | 48 | #include <TRandom3.h> |
57 | | -#include <TF1.h> |
| 49 | + |
| 50 | +#include <array> |
| 51 | +#include <cmath> |
| 52 | +#include <map> |
| 53 | +#include <string> |
| 54 | +#include <utility> |
| 55 | +#include <vector> |
58 | 56 |
|
59 | 57 | using namespace o2; |
60 | 58 | using namespace o2::framework; |
|
0 commit comments