Skip to content

Commit 1542a77

Browse files
committed
Add INEL flag
1 parent 7c8d79a commit 1542a77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGMM/UE/Tasks/uecharged.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ template <typename C, typename P>
513513
void ueCharged::processTrue(const C& mcCollision, const P& particles)
514514
{
515515
int multTrue = 0;
516-
int multTrueINEL = 0;
516+
// int multTrueINEL = 0;
517517
for (const auto& particle : particles) {
518518
auto pdgParticle = pdg->GetParticle(particle.pdgCode());
519519
if (!pdgParticle || pdgParticle->Charge() == 0.) {
@@ -523,7 +523,7 @@ void ueCharged::processTrue(const C& mcCollision, const P& particles)
523523
continue;
524524
}
525525
if (std::abs(particle.eta()) <= 1.0) {
526-
multTrueINEL++;
526+
// multTrueINEL++;
527527
}
528528
if (std::abs(particle.eta()) >= cfgTrkEtaCut) {
529529
continue;

0 commit comments

Comments
 (0)