Skip to content

Commit 69175cd

Browse files
author
Henrik Fribert
committed
Fix: Removed unused variables
1 parent 42701ce commit 69175cd

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

ALICE3/TableProducer/OTF/onTheFlyTrackerPid.cxx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -495,11 +495,7 @@ struct OnTheFlyTrackerPid {
495495
mcPvVtx.setZ(mcCollisionObject.posZ());
496496
}
497497

498-
int nTracksProcessed = 0;
499-
int nValidToT = 0;
500-
501498
for (const auto& track : tracks) {
502-
nTracksProcessed++;
503499
float truncatedMeanToT = -1.0f;
504500
std::array<float, kNumHypothesisParticles> nSigmaValues;
505501
nSigmaValues.fill(999.f);
@@ -598,7 +594,6 @@ struct OnTheFlyTrackerPid {
598594
nUse = kMaxValidHitsForTruncation7Plus;
599595

600596
if (nUse > 0 && nValid >= nUse) {
601-
nValidToT++;
602597
std::sort(validToTs.begin(), validToTs.end());
603598
float sum = 0.0f;
604599
for (size_t i = 0; i < nUse; ++i) {

0 commit comments

Comments
 (0)