Skip to content

Commit c0f84ac

Browse files
clang format
1 parent 306c332 commit c0f84ac

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

PWGLF/TableProducer/Nuspex/LFTreeCreatorClusterStudies.cxx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -563,8 +563,8 @@ struct LfTreeCreatorClusterStudies {
563563

564564
template <typename McPart>
565565
void fillMcHistogramsV0(const float massLambda, const float massAntiLambda,
566-
const std::array<float, 3>& momMother,
567-
const McPart& posDaughter, const McPart& negDaughter)
566+
const std::array<float, 3>& momMother,
567+
const McPart& posDaughter, const McPart& negDaughter)
568568
{
569569
if ((std::abs(posDaughter.pdgCode()) != 2212 && std::abs(posDaughter.pdgCode()) != 211) ||
570570
(std::abs(negDaughter.pdgCode()) != 2212 && std::abs(negDaughter.pdgCode()) != 211)) {
@@ -589,8 +589,8 @@ struct LfTreeCreatorClusterStudies {
589589

590590
template <typename McPart>
591591
void fillMcHistogramsCascade(const float massOmega,
592-
const std::array<float, 3>& momMother,
593-
const McPart& bachelorDaughter, const McPart& posV0Daughter)
592+
const std::array<float, 3>& momMother,
593+
const McPart& bachelorDaughter, const McPart& posV0Daughter)
594594
{
595595
McPart v0Daughter;
596596
for (const auto& iterV0Daughter : posV0Daughter.template mothers_as<aod::McParticles>()) {
@@ -618,7 +618,7 @@ struct LfTreeCreatorClusterStudies {
618618
m_hAnalysis.fill(HIST("massOmegaMc"), std::hypot(momMother[0], momMother[1], momMother[2]) * -1.f, massOmega);
619619
}
620620
}
621-
621+
622622
template <bool isMC = false>
623623
void fillTable(const Candidate& candidate)
624624
{
@@ -655,8 +655,9 @@ struct LfTreeCreatorClusterStudies {
655655
}
656656
if (track.tpcNClsFound() < 90) {
657657
return false;
658-
} if ((track.tpcChi2NCl() > 4.0f) ||
659-
(track.tpcChi2NCl() < track_tpcChi2Min)) {
658+
}
659+
if ((track.tpcChi2NCl() > 4.0f) ||
660+
(track.tpcChi2NCl() < track_tpcChi2Min)) {
660661
return false;
661662
}
662663
return true;
@@ -1007,7 +1008,6 @@ struct LfTreeCreatorClusterStudies {
10071008
}
10081009
auto mcPosParticleV0 = posV0Daughter.mcParticle();
10091010
fillMcHistogramsCascade(massOmega, momMother, mcParticle, mcPosParticleV0);
1010-
10111011
}
10121012

10131013
m_hAnalysis.fill(HIST("isPositive"), bachelorTrack.p() > 0);

0 commit comments

Comments
 (0)