We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4574a1f commit 34c968aCopy full SHA for 34c968a
PWGLF/Tasks/Nuspex/ebyeMult.cxx
@@ -502,7 +502,7 @@ struct EbyeMult {
502
}
503
504
505
- if (partInAcc > 0)
+ if (partInAcc >= 0)
506
return nParticles;
507
return -1;
508
@@ -569,7 +569,7 @@ struct EbyeMult {
569
// search generated INEL > 0 (one charged particle in |eta| < 1)
570
for (const auto& mcCollision : mcCollisions) {
571
int mult = genMultINELgtZERO(mcCollision, mcParticles);
572
- if (mult > 0) {
+ if (mult >= 0) {
573
histos.fill(HIST("GenINELgtZERO"), mult);
574
575
0 commit comments