Skip to content

Commit 899eb7f

Browse files
author
Sabrina Hernandez
committed
added zdc correlation histograms
1 parent aed8a9b commit 899eb7f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

PWGCF/Flow/Tasks/flowZdcTask.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -246,19 +246,19 @@ struct FlowZdcTask {
246246
histos.add("ZNVsFT0M", ";T0A+T0C (#times 1/100);ZNA+ZNC Sector Energy;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZn}}});
247247
histos.add("ZPVsFT0A", ";T0A (#times 1/100);ZPA+ZPC Sector Energy;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZp}}});
248248
histos.add("ZPVsFT0C", ";T0C (#times 1/100);ZPA+ZPC Sector Energy;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZp}}});
249-
histos.add("ZPVsFT0M", ";T0A+T0C (#times 1/100);ZPA+ZPC Sector Energy;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZp}}});
249+
histos.add("ZPVsFT0M", ";T0A+T0C (#times 1/100);ZPA+ZPC Sector Energy;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZp}}});
250250
histos.add("ZNAVsFT0A", ";T0A (#times 1/100);ZNA Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZn}}});
251251
histos.add("ZNAVsFT0C", ";T0C (#times 1/100);ZNA Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZn}}});
252252
histos.add("ZNAVsFT0M", ";T0A+T0C (#times 1/100);ZNA Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZn}}});
253253
histos.add("ZNCVsFT0A", ";T0A (#times 1/100);ZNC Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZn}}});
254254
histos.add("ZNCVsFT0C", ";T0C (#times 1/100);ZNC Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZn}}});
255-
histos.add("ZNCVsFT0M", ";T0A+T0C (#times 1/100);ZNC Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZn}}});
255+
histos.add("ZNCVsFT0M", ";T0A+T0C (#times 1/100);ZNC Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZn}}});
256256
histos.add("ZPAVsFT0A", ";T0A (#times 1/100);ZPA Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZp}}});
257257
histos.add("ZPAVsFT0C", ";T0C (#times 1/100);ZPA Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZp}}});
258258
histos.add("ZPAVsFT0M", ";T0A+T0C (#times 1/100);ZPA Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZp}}});
259259
histos.add("ZPCVsFT0A", ";T0A (#times 1/100);ZPC Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZp}}});
260260
histos.add("ZPCVsFT0C", ";T0C (#times 1/100);ZPC Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0}, {nBinsZDC, -0.5, maxZp}}});
261-
histos.add("ZPCVsFT0M", ";T0A+T0C (#times 1/100);ZPC Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZp}}});
261+
histos.add("ZPCVsFT0M", ";T0A+T0C (#times 1/100);ZPC Sector;", kTH2F, {{{nBinsAmpFT0, 0., maxAmpFT0M}, {nBinsZDC, -0.5, maxZp}}});
262262
histos.add("ZN", ";ZNA+ZNC;Entries;", kTH1F, {{nBinsZDC, -0.5, maxZn}});
263263
histos.add("ZNA", ";ZNA Amplitude;Entries;", kTH1F, {{nBinsZDC, -0.5, maxZn}});
264264
histos.add("ZPA", ";ZPA Amplitude;Entries;", kTH1F, {{nBinsZDC, -0.5, maxZp}});
@@ -579,7 +579,7 @@ struct FlowZdcTask {
579579
histos.fill(HIST("ZNVsFT0M"), (aT0A + aT0C) / 100., sumSectZN);
580580
histos.fill(HIST("ZPVsFT0A"), aT0A / 100., sumSectZP);
581581
histos.fill(HIST("ZPVsFT0C"), aT0C / 100., sumSectZP);
582-
histos.fill(HIST("ZPVsFT0M"), (aT0A + aT0C) / 100., sumSectZP);
582+
histos.fill(HIST("ZPVsFT0M"), (aT0A + aT0C) / 100., sumSectZP);
583583
histos.fill(HIST("ZPAVsFT0A"), aT0A / 100., sumZPA);
584584
histos.fill(HIST("ZPAVsFT0C"), aT0C / 100., sumZPA);
585585
histos.fill(HIST("ZPAVsFT0M"), (aT0A + aT0C) / 100., sumZPA);
@@ -591,7 +591,7 @@ struct FlowZdcTask {
591591
histos.fill(HIST("ZNCVsFT0M"), (aT0A + aT0C) / 100., sumZNC);
592592
histos.fill(HIST("ZNAVsFT0A"), aT0A / 100., sumZNA);
593593
histos.fill(HIST("ZNAVsFT0C"), aT0C / 100., sumZNA);
594-
histos.fill(HIST("ZNAVsFT0M"), (aT0A + aT0C) / 100., sumZNA);
594+
histos.fill(HIST("ZNAVsFT0M"), (aT0A + aT0C) / 100., sumZNA);
595595
histos.fill(HIST("ZPA"), zpA);
596596
histos.fill(HIST("ZPACommon"), commonSumZpa);
597597
histos.fill(HIST("ZPASector"), sumZPA);

0 commit comments

Comments
 (0)