Skip to content

Commit a07790d

Browse files
authored
Correction for histograms filling
1 parent 3dad17c commit a07790d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGLF/Tasks/GlobalEventProperties/studyPnch.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,12 @@ struct StudyPnch {
361361
auto recTracksPart = RecTracks.sliceBy(perCollision, RecCol.globalIndex());
362362
auto multrec = countNTracksMcCol(recTracksPart, RecCol);
363363
if (multrec > 0) {
364-
histos.fill(HIST("hMultiplicityMCrec"), multrec);
364+
histos.fill(HIST("hMultiplicityMCrecMod"), multrec);
365365
}
366366
auto multgen = countGenTracks(GenParticles, mcCollision);
367367
if (multgen > 0 && multrec > 0) {
368-
histos.fill(HIST("hMultiplicityMCgen"), multgen);
369-
histos.fill(HIST("hResponseMatrix"), multrec, multgen);
368+
histos.fill(HIST("hMultiplicityMCgenMod"), multgen);
369+
histos.fill(HIST("hResponseMatrixMod"), multrec, multgen);
370370
}
371371
}
372372
}

0 commit comments

Comments
 (0)