From 80cdfa57f1a9d9e17c137651f6aaa440840fc382 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Thu, 14 May 2026 17:21:26 +0000 Subject: [PATCH] Please consider the following formatting changes --- ALICE3/TableProducer/OTF/onTheFlyTracker.cxx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/ALICE3/TableProducer/OTF/onTheFlyTracker.cxx b/ALICE3/TableProducer/OTF/onTheFlyTracker.cxx index 69c30e060e5..6e2e7d0e0a7 100644 --- a/ALICE3/TableProducer/OTF/onTheFlyTracker.cxx +++ b/ALICE3/TableProducer/OTF/onTheFlyTracker.cxx @@ -982,7 +982,7 @@ struct OnTheFlyTracker { continue; // extra sure } if (cascadeDecaySettings.doXiQA) { - getHist(TH1, histPath + "hXiBuilding")->Fill(static_cast(i+1)); + getHist(TH1, histPath + "hXiBuilding")->Fill(static_cast(i + 1)); } isReco[i] = true; @@ -993,7 +993,7 @@ struct OnTheFlyTracker { isReco[i] = true; xiDaughterTrackParCovsTracked[i] = xiDaughterTrackParCovsPerfect[i]; if (cascadeDecaySettings.doXiQA) { - getHist(TH1, histPath + "hXiBuilding")->Fill(static_cast(i+1)); + getHist(TH1, histPath + "hXiBuilding")->Fill(static_cast(i + 1)); } } @@ -1452,8 +1452,8 @@ struct OnTheFlyTracker { nV0SiliconHits[i] = fastTracker[icfg]->GetNSiliconPoints(); nV0TPCHits[i] = fastTracker[icfg]->GetNGasPoints(); - if (nV0SiliconHits[i] >= fastTrackerSettings.minSiliconHits || - (nV0SiliconHits[i] >= fastTrackerSettings.minSiliconHitsIfTPCUsed && + if (nV0SiliconHits[i] >= fastTrackerSettings.minSiliconHits || + (nV0SiliconHits[i] >= fastTrackerSettings.minSiliconHitsIfTPCUsed && nV0TPCHits[i] >= fastTrackerSettings.minTPCClusters)) { isV0Reco[i] = true; } else { @@ -1606,7 +1606,7 @@ struct OnTheFlyTracker { if (!fillV0Table) { tracksV0Daugs.clear(); // clear the tracks added for this V0 since we won't be filling the table - return; // don't fill the table if we didn't find a V0 candidate + return; // don't fill the table if we didn't find a V0 candidate } // populate V0s @@ -1778,8 +1778,7 @@ struct OnTheFlyTracker { } const bool isCascadeToDecay = (mcParticle.pdgCode() == kXiMinus) && cascadeDecaySettings.decayXi; - const bool isV0ToDecay = std::find(v0PDGs.begin(), v0PDGs.end(), mcParticle.pdgCode()) != v0PDGs.end() - && v0DecaySettings.decayV0; + const bool isV0ToDecay = std::find(v0PDGs.begin(), v0PDGs.end(), mcParticle.pdgCode()) != v0PDGs.end() && v0DecaySettings.decayV0; const bool longLivedToBeHandled = std::find(longLivedHandledPDGs.begin(), longLivedHandledPDGs.end(), std::abs(mcParticle.pdgCode())) != longLivedHandledPDGs.end(); const bool nucleiToBeHandled = std::find(nucleiPDGs.begin(), nucleiPDGs.end(), std::abs(mcParticle.pdgCode())) != nucleiPDGs.end();