@@ -156,10 +156,6 @@ struct FlowZdcTask {
156156
157157 HistogramRegistry histos{" histos" , {}, OutputObjHandlingPolicy::AnalysisObject};
158158 Service<ccdb::BasicCCDBManager> ccdb;
159- OutputObj<TProfile> pZNvsFT0Ccent{TProfile (" pZNvsFT0Ccent" , " ZN Energy vs FT0C Centrality" , 100 , 0 , 100 , 0 , 500 )};
160- OutputObj<TProfile> pZPvsFT0Ccent{TProfile (" pZPvsFT0Ccent" , " ZP Energy vs FT0C Centrality" , 100 , 0 , 100 , 0 , 500 )};
161- OutputObj<TProfile> pZNratiovscent{TProfile (" pZNratiovscent" , " Ratio ZNC/ZNA vs FT0C Centrality" , 100 , 0 , 100 , 0 , 5 )};
162- OutputObj<TProfile> pZPratiovscent{TProfile (" pZPratiovscent" , " Ratio ZPC/ZPA vs FT0C Centrality" , 100 , 0 , 100 , 0 , 5 )};
163159
164160 void init (InitContext const &)
165161 {
@@ -307,10 +303,6 @@ struct FlowZdcTask {
307303 histos.add (" ZNDifVsNch" , " ;#it{N}_{ch} (|#eta|<0.8);ZNA-ZNC;" , kTH2F , {{{nBinsNch, minNch, maxNch}, {100 , -50 ., 50 .}}});
308304 histos.add (" ZPAvsCent" , " ;centFT0C;ZPA" , kTH2F , {{{axisCent}, {nBinsZDC, -0.5 , maxZp}}});
309305 histos.add (" ZPCvsCent" , " ;centFT0C;ZPC" , kTH2F , {{{axisCent}, {nBinsZDC, -0.5 , maxZp}}});
310- histos.add (" pZPAvsFT0Ccent" , " ;FT0C centrality;ZPA Amplitude" , kTProfile , {{nBinsCent, minT0CcentCut, maxT0CcentCut}});
311- histos.add (" pZPCvsFT0Ccent" , " ;FT0C centrality;ZPC Amplitude" , kTProfile , {{nBinsCent, minT0CcentCut, maxT0CcentCut}});
312- histos.add (" pZPAvsGlbTrack" , " ;Global Tracks (ITS + TPC);ZPA Amplitude" , kTProfile , {{nBinsNch, minNch, maxNch}});
313- histos.add (" pZPCvsGlbTrack" , " ;Global Tracks (ITS + TPC);ZPC Amplitude" , kTProfile , {{nBinsNch, minNch, maxNch}});
314306 histos.add (" hZPASectorvsGlbTrack" , " ;Global Tracks (ITS + TPC);ZPA Sector Energy" , kTH2F , {{{nBinsNch, minNch, maxNch}, {nBinsZDC, minNch, maxZp}}});
315307 histos.add (" hZPCSectorvsGlbTrack" , " ;Global Tracks (ITS + TPC);ZPC Sector Energy" , kTH2F , {{{nBinsNch, minNch, maxNch}, {nBinsZDC, minNch, maxZp}}});
316308 histos.add (" hZNASectorvsGlbTrack" , " ;Global Tracks (ITS + TPC);ZNA Sector Energy" , kTH2F , {{{nBinsNch, minNch, maxNch}, {nBinsZDC, minNch, maxZn}}});
@@ -340,8 +332,6 @@ struct FlowZdcTask {
340332 histos.add (" ZpaVsTdc" , " ZPAvsTDC; ZPA Amp; ZPA TDC" , kTH2F , {{{480 , -13.5 , 11.45 }, {nBinsZDC, -0.5 , maxZp}}});
341333 histos.add (" Zem1VsTdc" , " ZEM1vsTDC; ZEM1 Amp; ZEM1 TDC" , kTH2F , {{{480 , -13.5 , 11.45 }, {nBinsZDC, -0.5 , maxZem}}});
342334 histos.add (" Zem2VsTdc" , " ZEM2vsTDC; ZEM2 Amp; ZEM2 TDC" , kTH2F , {{{480 , -13.5 , 11.45 }, {nBinsZDC, -0.5 , maxZem}}});
343- histos.add (" ZnaZpaTdc" , " ZNAvsZPAvsTDC; ZNA Amp; ZPA Amp; ZPA TDC" , kTH3F , {{{nBinsZDC, -0.5 , maxZn}, {nBinsZDC, -0.5 , maxZp}, {480 , -13.5 , 11.45 }}});
344- histos.add (" ZncZpcTdc" , " ZNCvsZPCvsTDC; ZNC Amp; ZPC Amp; ZPC TDC" , kTH3F , {{{nBinsZDC, -0.5 , maxZn}, {nBinsZDC, -0.5 , maxZp}, {480 , -13.5 , 11.45 }}});
345335 }
346336
347337 ccdb->setURL (" http://alice-ccdb.cern.ch" );
@@ -646,13 +636,9 @@ struct FlowZdcTask {
646636 histos.fill (HIST (" ZPAvsCent" ), cent, zpA);
647637 histos.fill (HIST (" ZPCvsCent" ), cent, zpC);
648638 if (std::isfinite (zpA) && !std::isnan (zpA) && cent >= minT0CcentCut && cent < maxT0CcentCut && glbTracks >= minNch && glbTracks < maxNch) {
649- histos.fill (HIST (" pZPAvsFT0Ccent" ), cent, zpA);
650- histos.fill (HIST (" pZPAvsGlbTrack" ), glbTracks, zpA);
651639 histos.fill (HIST (" hZPASectorvsGlbTrack" ), glbTracks, sumZPA);
652640 }
653641 if (std::isfinite (zpC) && !std::isnan (zpC) && cent >= minT0CcentCut && cent < maxT0CcentCut && glbTracks >= minNch && glbTracks < maxNch) {
654- histos.fill (HIST (" pZPCvsFT0Ccent" ), cent, zpC);
655- histos.fill (HIST (" pZPCvsGlbTrack" ), glbTracks, zpC);
656642 histos.fill (HIST (" hZPCSectorvsGlbTrack" ), glbTracks, sumZPC);
657643 }
658644 histos.fill (HIST (" hZNASectorvsGlbTrack" ), glbTracks, sumZNA);
@@ -856,13 +842,6 @@ struct FlowZdcTask {
856842 histos.fill (HIST (" T0MVsZN" ), normT0M, sumZNs);
857843 histos.fill (HIST (" T0MVsZP" ), normT0M, sumZPs);
858844 histos.fill (HIST (" NchUncorrected" ), glbTracks);
859-
860- float ratioZN = sumZNC / sumZNA;
861- float ratioZP = sumZPC / sumZPA;
862- pZNratiovscent->Fill (cent, ratioZN);
863- pZPratiovscent->Fill (cent, ratioZP);
864- pZNvsFT0Ccent->Fill (cent, sumZN);
865- pZPvsFT0Ccent->Fill (cent, sumZP);
866845 histos.get <TH2>(HIST (" ZDC_energy_vs_ZEM" ))->Fill (sumZEM, sumZDC);
867846 }
868847
@@ -934,8 +913,6 @@ struct FlowZdcTask {
934913 histos.fill (HIST (" ZnaVsTdc" ), zdc.timeZNA (), znA);
935914 histos.fill (HIST (" ZpcVsTdc" ), zdc.timeZPC (), zpC);
936915 histos.fill (HIST (" ZpaVsTdc" ), zdc.timeZPA (), zpA);
937- histos.fill (HIST (" ZnaZpaTdc" ), znA, zpA, zdc.timeZPA ());
938- histos.fill (HIST (" ZncZpcTdc" ), znC, zpC, zdc.timeZPC ());
939916 histos.fill (HIST (" Zem1VsTdc" ), zdc.timeZEM1 (), aZEM1);
940917 histos.fill (HIST (" Zem2VsTdc" ), zdc.timeZEM2 (), aZEM2);
941918 }
0 commit comments