Skip to content

Commit ea0b3ab

Browse files
Merge pull request #28 from alibuild/alibot-cleanup-11903
Please consider the following formatting changes to #11903
2 parents bbb7cc2 + 6d177fc commit ea0b3ab

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

PWGLF/TableProducer/Strangeness/sigma0builder.cxx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ struct sigma0builder {
780780
auto negTrackGamma2 = gamma2.template negTrackExtra_as<dauTracks>();
781781

782782
// Gamma1 Selection
783-
bool passedTPCGamma1 = (TMath::Abs(posTrackGamma1.tpcNSigmaEl()) < Pi0PhotonMaxTPCNSigmas) ||
783+
bool passedTPCGamma1 = (TMath::Abs(posTrackGamma1.tpcNSigmaEl()) < Pi0PhotonMaxTPCNSigmas) ||
784784
(TMath::Abs(negTrackGamma1.tpcNSigmaEl()) < Pi0PhotonMaxTPCNSigmas);
785785

786786
if (TMath::Abs(gamma1.mGamma()) > Pi0PhotonMaxMass ||
@@ -1186,10 +1186,10 @@ struct sigma0builder {
11861186
histos.fill(HIST("MC/h2dPtVsCentralityBeforeSel_MCAssocALambda"), centrality, v0.pt());
11871187
}
11881188

1189-
if (processPhotonCandidate(v0, coll)) // selecting photons
1189+
if (processPhotonCandidate(v0, coll)) // selecting photons
11901190
bestGammasArray.push_back(v0.globalIndex()); // Save indices of best gamma candidates
11911191

1192-
if (processLambdaCandidate(v0, coll)) // selecting lambdas
1192+
if (processLambdaCandidate(v0, coll)) // selecting lambdas
11931193
bestLambdasArray.push_back(v0.globalIndex()); // Save indices of best lambda candidates
11941194
}
11951195

@@ -1279,7 +1279,7 @@ struct sigma0builder {
12791279
if (fIsAntiSigma)
12801280
histos.fill(HIST("MC/h2dPtVsCentralityBeforeSel_MCAssocASigma0"), centrality, SigmaMCpT);
12811281
}
1282-
1282+
12831283
// Build sigma0 candidate, please
12841284
if (!buildSigma0(lambda, gamma, coll))
12851285
continue;
@@ -1300,7 +1300,7 @@ struct sigma0builder {
13001300
LambdaCandPDGCode, LambdaCandPDGCodeMother, fIsLambdaPrimary, LambdaMCpT, fIsLambdaCorrectlyAssign);
13011301

13021302
// Filling tables with accepted candidates
1303-
fillTables(lambda, gamma, coll);
1303+
fillTables(lambda, gamma, coll);
13041304

13051305
nSigmaCandidates++;
13061306
if (nSigmaCandidates % 10000 == 0)
@@ -1315,7 +1315,7 @@ struct sigma0builder {
13151315
for (const auto& coll : collisions) {
13161316

13171317
if (!IsEventAccepted(coll, true))
1318-
continue;
1318+
continue;
13191319

13201320
// Do analysis with collision-grouped V0s, retain full collision information
13211321
const uint64_t collIdx = coll.globalIndex();
@@ -1340,10 +1340,10 @@ struct sigma0builder {
13401340
//_______________________________________________
13411341
// V0s loop
13421342
for (auto& v0 : V0s) {
1343-
if (processPhotonCandidate(v0, coll)) // selecting photons
1343+
if (processPhotonCandidate(v0, coll)) // selecting photons
13441344
bestGammasArray.push_back(v0.globalIndex()); // Save indices of best gamma candidates
13451345

1346-
if (processLambdaCandidate(v0, coll)) // selecting lambdas
1346+
if (processLambdaCandidate(v0, coll)) // selecting lambdas
13471347
bestLambdasArray.push_back(v0.globalIndex()); // Save indices of best lambda candidates
13481348
}
13491349

@@ -1362,17 +1362,17 @@ struct sigma0builder {
13621362
//_______________________________________________
13631363
// Sigma0 nested loop
13641364
for (size_t i = 0; i < bestGammasArray.size(); ++i) {
1365-
auto gamma = fullV0s.rawIteratorAt(bestGammasArray[i]);
1365+
auto gamma = fullV0s.rawIteratorAt(bestGammasArray[i]);
13661366

13671367
for (size_t j = 0; j < bestLambdasArray.size(); ++j) {
13681368
auto lambda = fullV0s.rawIteratorAt(bestLambdasArray[j]);
1369-
1369+
13701370
// Building sigma0 candidate
13711371
if (!buildSigma0(lambda, gamma, coll))
1372-
continue;
1372+
continue;
13731373

13741374
// Filling tables with accepted candidates
1375-
fillTables(lambda, gamma, coll);
1375+
fillTables(lambda, gamma, coll);
13761376

13771377
nSigmaCandidates++;
13781378
if (nSigmaCandidates % 10000 == 0)

0 commit comments

Comments
 (0)