Skip to content

Commit 4f15dc2

Browse files
author
Sabrina Hernandez
committed
adjusted ft0 histograms and added 2d histograms
1 parent bcd6e58 commit 4f15dc2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGCF/Flow/Tasks/FlowZDCtask.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ struct FlowZDCtask {
5858
O2_DEFINE_CONFIGURABLE(cfgCutPtPOIMax, float, 10.0f, "Maximal pT for poi tracks")
5959
O2_DEFINE_CONFIGURABLE(cfgCutPtMin, float, 0.2f, "Minimal pT for ref tracks")
6060
O2_DEFINE_CONFIGURABLE(cfgCutPtMax, float, 10.0f, "Maximal pT for ref tracks")
61-
O2_DEFINE_CONFIGURABLE(cfgCutEta, float, 0.8f, "Eta range for tracks")
61+
O2_DEFINE_CONFIGURABLE(cfgCutEta, float, 0.8f, "Eta range for tracks")
6262
O2_DEFINE_CONFIGURABLE(cfgCutChi2prTPCcls, float, 2.5, "Chi2 per TPC clusters")
6363
O2_DEFINE_CONFIGURABLE(cfgUseNch, bool, false, "Use Nch for flow observables")
6464
O2_DEFINE_CONFIGURABLE(cfgNbootstrap, int, 10, "Number of subsamples")
@@ -261,13 +261,13 @@ struct FlowZDCtask {
261261
histos.fill(HIST("ptHistogram"), track.pt());
262262
qTPC += std::complex<double>(std::cos(2.0 * phi), std::sin(2.0 * phi));
263263
} // end track loop 1
264-
int pT{0};
264+
int pT{0};
265265
for (const auto& track : tracks) {
266266
if (track.tpcNClsCrossedRows() < minTpcNcrossedRows)
267267
continue;
268268
if (fabs(track.dcaXY()) > cfgCutDCAxy)
269269
continue;
270-
pT = track.pt();
270+
pT = track.pt();
271271
pT++;
272272
} // end track loop 2
273273
histos.fill(HIST("multvsCent"), cent, nTot);

0 commit comments

Comments
 (0)