Skip to content

Commit 2d6fd94

Browse files
authored
Update alice3-decayfinder.cxx
1 parent 3542ff4 commit 2d6fd94

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ALICE3/TableProducer/alice3-decayfinder.cxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,9 +477,10 @@ struct alice3decayFinder {
477477
auto daughters = mcParticle.template daughters_as<aod::McParticles>();
478478
if (daughters.size() != 2)
479479
continue;
480-
int daugID[2], daugPDG[2], i = 0;
480+
// int daugID[2];
481+
int daugPDG[2], i = 0;
481482
for (const auto& dau : daughters) {
482-
daugID[i] = dau.globalIndex();
483+
// daugID[i] = dau.globalIndex();
483484
daugPDG[i] = dau.pdgCode();
484485
i++;
485486
}

0 commit comments

Comments
 (0)