|
14 | 14 | /// \brief Implementation for QA tasks of the ITS PID quantities |
15 | 15 | /// |
16 | 16 |
|
17 | | -#include <string> |
18 | | -#include <vector> |
| 17 | +#include "Common/DataModel/EventSelection.h" |
| 18 | +#include "Common/DataModel/PIDResponse.h" |
| 19 | +#include "Common/DataModel/PIDResponseITS.h" |
| 20 | +#include "Common/DataModel/TrackSelectionTables.h" |
19 | 21 |
|
20 | 22 | #include "Framework/AnalysisTask.h" |
21 | | -#include "Framework/runDataProcessing.h" |
22 | 23 | #include "Framework/HistogramRegistry.h" |
23 | 24 | #include "Framework/StaticFor.h" |
24 | | -#include "Common/DataModel/TrackSelectionTables.h" |
25 | | -#include "Common/DataModel/EventSelection.h" |
26 | | -#include "Common/DataModel/PIDResponse.h" |
27 | | -#include "Common/DataModel/PIDResponseITS.h" |
| 25 | +#include "Framework/runDataProcessing.h" |
| 26 | + |
| 27 | +#include <string> |
| 28 | +#include <vector> |
28 | 29 |
|
29 | 30 | using namespace o2; |
30 | 31 | using namespace o2::framework; |
@@ -183,8 +184,9 @@ struct itsPidQa { |
183 | 184 | return averageClusterSizePerCoslInv(track.itsClusterSizes(), track.eta()); |
184 | 185 | } |
185 | 186 |
|
186 | | - void init(o2::framework::InitContext&) |
| 187 | + void init(o2::framework::InitContext& context) |
187 | 188 | { |
| 189 | + o2::aod::ITSResponse::setParameters(context); |
188 | 190 | const AxisSpec vtxZAxis{100, -20, 20, "Vtx_{z} (cm)"}; |
189 | 191 | const AxisSpec etaAxis{etaBins, "#it{#eta}"}; |
190 | 192 | const AxisSpec phiAxis{phiBins, "#it{#phi}"}; |
|
0 commit comments