Skip to content

Commit 7b30c76

Browse files
authored
Merge pull request AliceO2Group#13 from alibuild/alibot-cleanup-4716
Please consider the following formatting changes to AliceO2Group#4716
2 parents 5904530 + 5c4f723 commit 7b30c76

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

PWGLF/Tasks/Nuspex/antidLambdaEbye.cxx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ struct antidLambdaEbye {
510510
auto V0Table_thisCollision = V0s.sliceBy(perCollisionV0, collIdx);
511511
V0Table_thisCollision.bindExternalIndices(&tracks);
512512

513-
//fillMC(tracks, V0s, centrality);
513+
// fillMC(tracks, V0s, centrality);
514514
fillMcEvent(TrackTable_thisCollision, V0Table_thisCollision, centrality, mcParticles, mcLab);
515515
if (candidateV0s.size() == 1 && candidateV0s[0].pt < -998.f && candidateV0s[0].eta < -998.f && candidateV0s[0].globalIndexPos == -999 && candidateV0s[0].globalIndexPos == -999) {
516516
goodCollisions[collision.mcCollisionId()].first = false;
@@ -529,7 +529,8 @@ struct antidLambdaEbye {
529529
auto pdgCode = mcPart.pdgCode();
530530

531531
if (std::abs(pdgCode) == 3122) {
532-
if (!mcPart.has_mothers()) continue;
532+
if (!mcPart.has_mothers())
533+
continue;
533534
bool foundPr = false;
534535
for (auto& mcDaught : mcPart.daughters_as<aod::McParticles>()) {
535536
if (std::abs(mcDaught.pdgCode()) == 2212) {
@@ -548,7 +549,8 @@ struct antidLambdaEbye {
548549
histos.fill(HIST("genAntiL"), centrality, genPt, std::abs(genEta));
549550
}
550551
} else if (std::abs(pdgCode) == o2::constants::physics::kDeuteron) {
551-
if (!mcPart.isPhysicalPrimary()) continue;
552+
if (!mcPart.isPhysicalPrimary())
553+
continue;
552554
std::cout << pdgCode << std::endl;
553555
auto genPt = std::hypot(mcPart.px(), mcPart.py());
554556
if (pdgCode > 0) {

0 commit comments

Comments
 (0)