Skip to content

Commit 6fdc6e0

Browse files
committed
Added centrality-dependent histograms
1 parent fc98b5e commit 6fdc6e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGLF/Tasks/Nuspex/piKpRAA.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ struct PiKpRAA {
183183
Configurable<int> nBinsNPV{"nBinsNPV", 600, "N bins ITS tracks"};
184184
Configurable<float> minNch{"minNch", 0, "Min Nch (|eta|<0.8)"};
185185
Configurable<float> maxNch{"maxNch", 400, "Max Nch (|eta|<0.8)"};
186-
Configurable<float> minNPV{"minNPV}", 0, "Min Nch (|eta|<0.8)"};
187-
Configurable<float> maxNPV{"maxNPV}", 600, "Max Nch (|eta|<0.8)"};
186+
Configurable<float> minNpv{"minNpv", 0, "Min NPV"};
187+
Configurable<float> maxNpv{"maxNpv", 600, "Max NPV"};
188188

189189
// CCDB paths
190190
Configurable<std::string> pathMeanNch{"pathMeanNch", "Users/o/omvazque/MeanNch/OO/Pass2/PerTimeStamp/Aug20", "base path to the ccdb object"};
@@ -283,9 +283,9 @@ struct PiKpRAA {
283283
if (doprocessCalibrationAndV0s) {
284284
registry.add("zPos", ";;Entries;", kTH1F, {axisZpos});
285285
registry.add("T0Ccent", ";;Entries", kTH1F, {axisCent});
286-
registry.add("NchVsNPV", ";Nch; NPV;", kTH2F, {{{nBinsNPV, minNPV, maxNPV}, {nBinsNch, minNch, maxNch}}});
286+
registry.add("NchVsNPV", ";Nch; NPV;", kTH2F, {{{nBinsNPV, minNpv, maxNpv}, {nBinsNch, minNch, maxNch}}});
287287
registry.add("ExcludedEvtVsNch", ";Nch;Entries;", kTH1F, {{nBinsNch, minNch, maxNch}});
288-
registry.add("ExcludedEvtVsNPV", ";NPV;Entries;", kTH1F, {{nBinsNPV, minNPV, maxNPV}});
288+
registry.add("ExcludedEvtVsNPV", ";NPV;Entries;", kTH1F, {{nBinsNPV, minNpv, maxNpv}});
289289

290290
registry.add("dcaDauVsPt", ";V0 #it{p}_{T} (GeV/#it{c});DCA_{xy} (cm) daughters;", kTH2F, {{{axisPtV0s}, {200, -10., 10.}}});
291291
registry.add("nSigPiFromK0s", ";#it{n#sigma};;", kTH2F, {axisPtV0s, axisNsigmaTPC});

0 commit comments

Comments
 (0)