@@ -782,7 +782,7 @@ struct sigma0builder {
782782 auto negTrackGamma2 = gamma2.template negTrackExtra_as <dauTracks>();
783783
784784 // Gamma1 Selection
785- bool passedTPCGamma1 = (TMath::Abs (posTrackGamma1.tpcNSigmaEl ()) < Pi0PhotonMaxTPCNSigmas) ||
785+ bool passedTPCGamma1 = (TMath::Abs (posTrackGamma1.tpcNSigmaEl ()) < Pi0PhotonMaxTPCNSigmas) ||
786786 (TMath::Abs (negTrackGamma1.tpcNSigmaEl ()) < Pi0PhotonMaxTPCNSigmas);
787787
788788 if (TMath::Abs (gamma1.mGamma ()) > Pi0PhotonMaxMass ||
@@ -1191,10 +1191,10 @@ struct sigma0builder {
11911191 histos.fill (HIST (" MC/h2dPtVsCentralityBeforeSel_MCAssocALambda" ), centrality, v0.pt ());
11921192 }
11931193
1194- if (processPhotonCandidate (v0, coll)) // selecting photons
1194+ if (processPhotonCandidate (v0, coll)) // selecting photons
11951195 bestGammasArray.push_back (v0.globalIndex ()); // Save indices of best gamma candidates
11961196
1197- if (processLambdaCandidate (v0, coll)) // selecting lambdas
1197+ if (processLambdaCandidate (v0, coll)) // selecting lambdas
11981198 bestLambdasArray.push_back (v0.globalIndex ()); // Save indices of best lambda candidates
11991199 }
12001200
@@ -1284,7 +1284,7 @@ struct sigma0builder {
12841284 if (fIsAntiSigma )
12851285 histos.fill (HIST (" MC/h2dPtVsCentralityBeforeSel_MCAssocASigma0" ), centrality, SigmaMCpT);
12861286 }
1287-
1287+
12881288 // Build sigma0 candidate, please
12891289 if (!buildSigma0 (lambda, gamma, coll))
12901290 continue ;
@@ -1305,7 +1305,7 @@ struct sigma0builder {
13051305 LambdaCandPDGCode, LambdaCandPDGCodeMother, fIsLambdaPrimary , LambdaMCpT, fIsLambdaCorrectlyAssign );
13061306
13071307 // Filling tables with accepted candidates
1308- fillTables (lambda, gamma, coll);
1308+ fillTables (lambda, gamma, coll);
13091309
13101310 nSigmaCandidates++;
13111311 if (nSigmaCandidates % 10000 == 0 )
@@ -1320,7 +1320,7 @@ struct sigma0builder {
13201320 for (const auto & coll : collisions) {
13211321
13221322 if (!IsEventAccepted (coll, true ))
1323- continue ;
1323+ continue ;
13241324
13251325 // Do analysis with collision-grouped V0s, retain full collision information
13261326 const uint64_t collIdx = coll.globalIndex ();
@@ -1345,10 +1345,10 @@ struct sigma0builder {
13451345 // _______________________________________________
13461346 // V0s loop
13471347 for (auto & v0 : V0s) {
1348- if (processPhotonCandidate (v0, coll)) // selecting photons
1348+ if (processPhotonCandidate (v0, coll)) // selecting photons
13491349 bestGammasArray.push_back (v0.globalIndex ()); // Save indices of best gamma candidates
13501350
1351- if (processLambdaCandidate (v0, coll)) // selecting lambdas
1351+ if (processLambdaCandidate (v0, coll)) // selecting lambdas
13521352 bestLambdasArray.push_back (v0.globalIndex ()); // Save indices of best lambda candidates
13531353 }
13541354
@@ -1367,17 +1367,17 @@ struct sigma0builder {
13671367 // _______________________________________________
13681368 // Sigma0 nested loop
13691369 for (size_t i = 0 ; i < bestGammasArray.size (); ++i) {
1370- auto gamma = fullV0s.rawIteratorAt (bestGammasArray[i]);
1370+ auto gamma = fullV0s.rawIteratorAt (bestGammasArray[i]);
13711371
13721372 for (size_t j = 0 ; j < bestLambdasArray.size (); ++j) {
13731373 auto lambda = fullV0s.rawIteratorAt (bestLambdasArray[j]);
1374-
1374+
13751375 // Building sigma0 candidate
13761376 if (!buildSigma0 (lambda, gamma, coll))
1377- continue ;
1377+ continue ;
13781378
13791379 // Filling tables with accepted candidates
1380- fillTables (lambda, gamma, coll);
1380+ fillTables (lambda, gamma, coll);
13811381
13821382 nSigmaCandidates++;
13831383 if (nSigmaCandidates % 10000 == 0 )
0 commit comments