@@ -978,7 +978,7 @@ struct OnTheFlyTracker {
978978 continue ; // extra sure
979979 }
980980 if (cascadeDecaySettings.doXiQA ) {
981- getHist (TH1 , histPath + " hXiBuilding" )->Fill (static_cast <float >(i+ 1 ));
981+ getHist (TH1 , histPath + " hXiBuilding" )->Fill (static_cast <float >(i + 1 ));
982982 }
983983 isReco[i] = true ;
984984
@@ -989,7 +989,7 @@ struct OnTheFlyTracker {
989989 isReco[i] = true ;
990990 xiDaughterTrackParCovsTracked[i] = xiDaughterTrackParCovsPerfect[i];
991991 if (cascadeDecaySettings.doXiQA ) {
992- getHist (TH1 , histPath + " hXiBuilding" )->Fill (static_cast <float >(i+ 1 ));
992+ getHist (TH1 , histPath + " hXiBuilding" )->Fill (static_cast <float >(i + 1 ));
993993 }
994994 }
995995
@@ -1447,8 +1447,8 @@ struct OnTheFlyTracker {
14471447 nV0SiliconHits[i] = fastTracker[icfg]->GetNSiliconPoints ();
14481448 nV0TPCHits[i] = fastTracker[icfg]->GetNGasPoints ();
14491449
1450- if (nV0SiliconHits[i] >= fastTrackerSettings.minSiliconHits ||
1451- (nV0SiliconHits[i] >= fastTrackerSettings.minSiliconHitsIfTPCUsed &&
1450+ if (nV0SiliconHits[i] >= fastTrackerSettings.minSiliconHits ||
1451+ (nV0SiliconHits[i] >= fastTrackerSettings.minSiliconHitsIfTPCUsed &&
14521452 nV0TPCHits[i] >= fastTrackerSettings.minTPCClusters )) {
14531453 isV0Reco[i] = true ;
14541454 } else {
@@ -1601,7 +1601,7 @@ struct OnTheFlyTracker {
16011601
16021602 if (!fillV0Table) {
16031603 tracksV0Daugs.clear (); // clear the tracks added for this V0 since we won't be filling the table
1604- return ; // don't fill the table if we didn't find a V0 candidate
1604+ return ; // don't fill the table if we didn't find a V0 candidate
16051605 }
16061606
16071607 // populate V0s
@@ -1773,8 +1773,7 @@ struct OnTheFlyTracker {
17731773 }
17741774
17751775 const bool isCascadeToDecay = (mcParticle.pdgCode () == kXiMinus ) && cascadeDecaySettings.decayXi ;
1776- const bool isV0ToDecay = std::find (v0PDGs.begin (), v0PDGs.end (), mcParticle.pdgCode ()) != v0PDGs.end ()
1777- && v0DecaySettings.decayV0 ;
1776+ const bool isV0ToDecay = std::find (v0PDGs.begin (), v0PDGs.end (), mcParticle.pdgCode ()) != v0PDGs.end () && v0DecaySettings.decayV0 ;
17781777
17791778 const bool longLivedToBeHandled = std::find (longLivedHandledPDGs.begin (), longLivedHandledPDGs.end (), std::abs (mcParticle.pdgCode ())) != longLivedHandledPDGs.end ();
17801779 const bool nucleiToBeHandled = std::find (nucleiPDGs.begin (), nucleiPDGs.end (), std::abs (mcParticle.pdgCode ())) != nucleiPDGs.end ();
0 commit comments