@@ -216,6 +216,8 @@ struct FlowZdcTask {
216216 histos.add (" ZposVsEta" , " " , kTProfile , {axisZpos});
217217 histos.add (" sigma1Pt" , " ;;#sigma(p_{T})/p_{T};" , kTProfile , {axisPt});
218218 histos.add (" dcaXYvspT" , " ;DCA_{xy} (cm);;" , kTH2F , {{{50 , -1 ., 1 .}, {axisPt}}});
219+ histos.add (" GlobalMult_vs_FT0C" , " GlobalMult_vs_FT0C" , kTH2F , {axisMult, axisFT0CMult});
220+ histos.add (" VtxZHist" , " VtxZHist" , kTH1D , {axisVtxZ});
219221
220222 // event selection steps
221223 histos.add (" eventSelectionSteps" , " eventSelectionSteps" , kTH1D , {axisEvent});
@@ -239,9 +241,6 @@ struct FlowZdcTask {
239241 xAxis->SetBinLabel (16 , " Within TDC cut?" );
240242 xAxis->SetBinLabel (17 , " Within ZEM cut?" );
241243
242- histos.add (" GlobalMult_vs_FT0C" , " GlobalMult_vs_FT0C" , kTH2F , {axisMult, axisFT0CMult});
243- histos.add (" VtxZHist" , " VtxZHist" , kTH1D , {axisVtxZ});
244-
245244 if (doprocessZdcCollAssoc) { // Check if the process function for ZDCCollAssoc is enabled
246245 histos.add (" ZNAcoll" , " ZNAcoll; ZNA amplitude; Entries" , {HistType::kTH1F , {{nBinsAmp, -0.5 , maxZn}}});
247246 histos.add (" ZNCcoll" , " ZNCcoll; ZNC amplitude; Entries" , {HistType::kTH1F , {{nBinsAmp, -0.5 , maxZn}}});
@@ -295,7 +294,7 @@ struct FlowZdcTask {
295294 histos.add (" ZEM2Vstdc" , " ;t_{ZEM2};ZEM2;" , kTH2F , {{{30 , -15 ., 15 .}, {30 , -0.5 , 2000.5 }}});
296295 histos.add (" debunch" , " ;t_{ZDC}-t_{ZDA};t_{ZDC}+t_{ZDA}" , kTH2F , {{{nBinsTDC, minTdc, maxTdc}, {nBinsTDC, minTdc, maxTdc}}});
297296
298- histos.add (" Nch " , " Nch" , kTH1F , {{nBinsNch, minNch, maxNch}});
297+ histos.add (" GlbTracks " , " Nch" , kTH1F , {{nBinsNch, minNch, maxNch}});
299298 histos.add (" NchVsFT0C" , " ;T0C (#times 1/100, -3.3 < #eta < -2.1);#it{N}_{ch} (|#eta|<0.8);" , kTH2F , {{{nBinsAmpFT0, 0 ., 950 .}, {nBinsNch, minNch, maxNch}}});
300299 histos.add (" NchVsFT0M" , " ;T0A+T0C (#times 1/100, -3.3 < #eta < -2.1 and 3.5 < #eta < 4.9);#it{N}_{ch} (|#eta|<0.8);" , kTH2F , {{{nBinsAmpFT0, 0 ., 3000 .}, {nBinsNch, minNch, maxNch}}});
301300 histos.add (" NchVsFT0A" , " ;T0A (#times 1/100, 3.5 < #eta < 4.9);#it{N}_{ch} (|#eta|<0.8);" , kTH2F , {{{nBinsAmpFT0, 0 ., maxAmpFT0}, {nBinsNch, minNch, maxNch}}});
@@ -541,7 +540,7 @@ struct FlowZdcTask {
541540 histos.fill (HIST (" ZPCcvsZPCsum" ), sumZPC / cfgCollisionEnergy, zdc.energyCommonZPC () / cfgCollisionEnergy);
542541 histos.fill (HIST (" ZPAcvsZPAsum" ), sumZPA / cfgCollisionEnergy, zdc.energyCommonZPA () / cfgCollisionEnergy);
543542
544- histos.fill (HIST (" Nch " ), glbTracks);
543+ histos.fill (HIST (" GlbTracks " ), glbTracks);
545544 histos.fill (HIST (" ZNA" ), znA);
546545 histos.fill (HIST (" ZNC" ), znC);
547546 histos.fill (HIST (" ZPA" ), zpA);
@@ -614,7 +613,6 @@ struct FlowZdcTask {
614613 }
615614 }
616615 const double normT0M{(ft0aAmp + ft0aAmp) / 100 .};
617- histos.fill (HIST (" hFT0MAmp" ), normT0M);
618616
619617 const auto & zdcread = foundBC.zdc ();
620618 const auto cent = collision.centFT0C ();
@@ -708,8 +706,6 @@ struct FlowZdcTask {
708706 if (!skipEvent) {
709707 return ;
710708 }
711- std::vector<float > pTs;
712- std::vector<float > vecFD;
713709 std::vector<float > vecOneOverEff;
714710 auto efficiency = ccdb->getForTimeStamp <TH1F>(paTHEff.value , foundBC.timestamp ());
715711 if (!efficiency) {
0 commit comments