Skip to content

Commit 278d244

Browse files
Merge pull request #22 from alibuild/alibot-cleanup-11418
Please consider the following formatting changes to #11418
2 parents 179c214 + 1383ced commit 278d244

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

PWGHF/TableProducer/candidateCreator3Prong.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ struct HfCandidateCreator3ProngExpressions {
959959
auto finalStates = getDecayChannelMain(pdg);
960960
for (const auto& [chn, finalState] : finalStates) {
961961
std::array<int, 3> finalStateParts3Prong = std::array{finalState[0], finalState[1], finalState[2]};
962-
if (finalState.size() > 3) { // Partly Reco decays with 4 or 5 final state particles, o2-linter: disable=magic-number
962+
if (finalState.size() > 3) { // Partly Reco decays with 4 or 5 final state particles, o2-linter: disable=magic-number
963963
if (matchKinkedDecayTopology && matchInteractionsWithMaterial) {
964964
indexRec = RecoDecay::getMatchedMCRec<false, false, true, true, true>(mcParticles, arrayDaughters, pdg, finalStateParts3Prong, true, &sign, depth, &nKinkedTracks, &nInteractionsWithMaterial);
965965
} else if (matchKinkedDecayTopology && !matchInteractionsWithMaterial) {

PWGHF/Utils/utilsMcGen.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ void fillMcMatchGen3Prong(T const& mcParticles, U const& mcParticlesPerMcColl, V
170170
RecoDecay::getDaughters<false>(particle, &arrAllDaughtersIndex, finalStateParts, maxDepth);
171171
matched = RecoDecay::isMatchedMCGen(mcParticles, particle, motherPdgCode, finalStateParts, true, &sign, -1);
172172
} else if (finalState.size() == 4) { // Partly Reco 3-prong decays from 4-prong decays, o2-linter: disable=magic-number
173-
std::array<int, 4> finalStateParts = std::array{finalState[0], finalState[1], finalState[2], finalState[3]};
173+
std::array<int, 4> finalStateParts = std::array{finalState[0], finalState[1], finalState[2], finalState[3]};
174174
o2::hf_decay::changeFinalStatePdgSign(particle.pdgCode(), +kPi0, finalStateParts);
175175
RecoDecay::getDaughters<false>(particle, &arrAllDaughtersIndex, finalStateParts, maxDepth);
176176
matched = RecoDecay::isMatchedMCGen(mcParticles, particle, motherPdgCode, finalStateParts, true, &sign, -1);

PWGHF/Utils/utilsMcMatching.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ inline int8_t flagResonantDecay(const int motherPdg, std::array<int, N> const& a
247247
return 0;
248248
}
249249

250-
/// Flip the sign of a specific PDG code in an array
250+
/// Flip the sign of a specific PDG code in an array
251251
/// of PDG codes representing either a final or a resonant state
252252
/// \tparam N size of the array of PDG codes
253253
/// \param motherPdgCode PDG code of the mother particle

0 commit comments

Comments
 (0)