|
18 | 18 | /// (with or without corrections) and save the results in a dedicated table. |
19 | 19 | /// |
20 | 20 |
|
21 | | -// C++/ROOT includes. |
22 | | -#include <TComplex.h> |
23 | | -#include <TH3F.h> |
24 | | - |
25 | | -#include <chrono> |
26 | | -#include <string> |
27 | | -#include <unordered_map> |
28 | | -#include <vector> |
29 | | - |
30 | | -// o2Physics includes. |
31 | | -#include "Framework/AnalysisDataModel.h" |
32 | | -#include "Framework/AnalysisTask.h" |
33 | | -#include "Framework/runDataProcessing.h" |
34 | | -#include "Framework/RunningWorkflowInfo.h" |
35 | | - |
36 | 21 | #include "Common/Core/EventPlaneHelper.h" |
| 22 | +#include "Common/Core/TrackSelection.h" |
| 23 | +#include "Common/DataModel/Centrality.h" |
37 | 24 | #include "Common/DataModel/EventSelection.h" |
38 | 25 | #include "Common/DataModel/FT0Corrected.h" |
39 | 26 | #include "Common/DataModel/Multiplicity.h" |
40 | | -#include "Common/DataModel/Centrality.h" |
41 | | - |
42 | 27 | #include "Common/DataModel/Qvectors.h" |
43 | | - |
44 | | -#include "Common/Core/TrackSelection.h" |
45 | 28 | #include "Common/DataModel/TrackSelectionTables.h" |
46 | | -// o2 includes. |
| 29 | + |
47 | 30 | #include "CCDB/BasicCCDBManager.h" |
48 | 31 | #include "DetectorsCommonDataFormats/AlignParam.h" |
| 32 | +#include "Framework/AnalysisDataModel.h" |
| 33 | +#include "Framework/AnalysisTask.h" |
| 34 | +#include "Framework/RunningWorkflowInfo.h" |
| 35 | +#include "Framework/runDataProcessing.h" |
| 36 | + |
| 37 | +#include <TComplex.h> |
| 38 | +#include <TH3F.h> |
| 39 | + |
| 40 | +#include <chrono> |
| 41 | +#include <string> |
| 42 | +#include <unordered_map> |
| 43 | +#include <vector> |
49 | 44 |
|
50 | 45 | using namespace o2; |
51 | 46 | using namespace o2::framework; |
@@ -154,7 +149,7 @@ struct qVectorsTable { |
154 | 149 | Produces<aod::QvectorBTotVecs> qVectorBTotVec; |
155 | 150 | ///////////////////////////////////////////////////////////////// |
156 | 151 |
|
157 | | - std::unordered_map<string, bool> useDetector = { |
| 152 | + std::unordered_map<std::string, bool> useDetector = { |
158 | 153 | {"QvectorBTots", cfgUseBTot}, |
159 | 154 | {"QvectorBNegs", cfgUseBNeg}, |
160 | 155 | {"QvectorBPoss", cfgUseBPos}, |
|
0 commit comments