|
14 | 14 | /// \since Mar 28, 2024 |
15 | 15 | /// \brief Multiparticle flow measurements with FT0 and ZDC |
16 | 16 |
|
| 17 | +#include "FlowContainer.h" |
| 18 | +#include "GFW.h" |
| 19 | +#include "GFWCumulant.h" |
| 20 | +#include "GFWPowerArray.h" |
| 21 | +#include "GFWWeights.h" |
17 | 22 |
|
18 | | -#include <cmath> |
19 | | -#include <vector> |
20 | | -#include <string> |
21 | | -#include <memory> |
22 | | - |
23 | | -#include "TList.h" |
24 | | -#include <TProfile.h> |
25 | | -#include <TRandom3.h> |
26 | | -#include <TF1.h> |
27 | | - |
28 | | -#include "Framework/runDataProcessing.h" |
29 | | -#include "Framework/AnalysisTask.h" |
30 | | -#include "Framework/ASoAHelpers.h" |
31 | | -#include "Framework/RunningWorkflowInfo.h" |
32 | | -#include "Framework/HistogramRegistry.h" |
33 | | -#include "Framework/AnalysisDataModel.h" |
34 | | -#include <CCDB/BasicCCDBManager.h> |
35 | | -#include <DataFormatsParameters/GRPMagField.h> |
36 | | - |
37 | | -#include "Common/DataModel/EventSelection.h" |
38 | 23 | #include "Common/Core/TrackSelection.h" |
39 | 24 | #include "Common/Core/TrackSelectionDefaults.h" |
40 | | -#include "Common/DataModel/TrackSelectionTables.h" |
41 | 25 | #include "Common/DataModel/Centrality.h" |
| 26 | +#include "Common/DataModel/EventSelection.h" |
42 | 27 | #include "Common/DataModel/Multiplicity.h" |
| 28 | +#include "Common/DataModel/TrackSelectionTables.h" |
43 | 29 |
|
| 30 | +#include "Framework/ASoAHelpers.h" |
| 31 | +#include "Framework/AnalysisDataModel.h" |
| 32 | +#include "Framework/AnalysisTask.h" |
| 33 | +#include "Framework/HistogramRegistry.h" |
44 | 34 | #include "Framework/O2DatabasePDGPlugin.h" |
| 35 | +#include "Framework/RunningWorkflowInfo.h" |
| 36 | +#include "Framework/runDataProcessing.h" |
45 | 37 | #include "ReconstructionDataFormats/GlobalTrackID.h" |
46 | 38 | #include "ReconstructionDataFormats/Track.h" |
| 39 | +#include <CCDB/BasicCCDBManager.h> |
| 40 | +#include <DataFormatsParameters/GRPMagField.h> |
| 41 | + |
| 42 | +#include "TList.h" |
47 | 43 | #include "TPDGCode.h" |
| 44 | +#include <TF1.h> |
| 45 | +#include <TProfile.h> |
| 46 | +#include <TRandom3.h> |
48 | 47 |
|
49 | | -#include "GFW.h" |
50 | | -#include "GFWPowerArray.h" |
51 | | -#include "GFWCumulant.h" |
52 | | -#include "GFWWeights.h" |
53 | | -#include "FlowContainer.h" |
| 48 | +#include <cmath> |
| 49 | +#include <memory> |
| 50 | +#include <string> |
| 51 | +#include <vector> |
54 | 52 |
|
55 | 53 | using namespace o2; |
56 | 54 | using namespace o2::framework; |
@@ -1030,11 +1028,11 @@ struct FlowGfwTask { |
1030 | 1028 | } |
1031 | 1029 |
|
1032 | 1030 | if (cfgGlobalTracks) { |
1033 | | - if (withinPtRef) { |
1034 | | - registry.fill(HIST("GlobalTracks"), centrality, nch); |
1035 | | - fGFW->Fill(track.eta(), fPtAxis->FindBin(track.pt()) - 1, track.phi(), wacc * weff, 1); |
1036 | | - } |
| 1031 | + if (withinPtRef) { |
| 1032 | + registry.fill(HIST("GlobalTracks"), centrality, nch); |
| 1033 | + fGFW->Fill(track.eta(), fPtAxis->FindBin(track.pt()) - 1, track.phi(), wacc * weff, 1); |
1037 | 1034 | } |
| 1035 | + } |
1038 | 1036 |
|
1039 | 1037 | if (cfgGlobalplusITS) { |
1040 | 1038 | if (withinPtRef) { |
|
0 commit comments