From 7b183d49ba5de9898bb5de220a7749c79b5929bd Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Thu, 13 Aug 2026 10:27:18 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGLF/TableProducer/Nuspex/ebyeMaker.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PWGLF/TableProducer/Nuspex/ebyeMaker.cxx b/PWGLF/TableProducer/Nuspex/ebyeMaker.cxx index 2c785589746..b8c0c566fd3 100644 --- a/PWGLF/TableProducer/Nuspex/ebyeMaker.cxx +++ b/PWGLF/TableProducer/Nuspex/ebyeMaker.cxx @@ -945,7 +945,7 @@ struct EbyeMaker { candV0.genpt = genPt; candV0.geneta = mcPart.eta(); candV0.pdgcode = pdgCode; - auto it = find_if(candidateV0s.begin(), candidateV0s.end(), [&](CandidateV0 &v0) { return v0.mcIndex == mcPart.globalIndex(); }); + auto it = find_if(candidateV0s.begin(), candidateV0s.end(), [&](CandidateV0& v0) { return v0.mcIndex == mcPart.globalIndex(); }); if (it != candidateV0s.end()) { continue; } else { @@ -968,7 +968,7 @@ struct EbyeMaker { else if (mcPart.has_mothers() && iP == 0 && kUsePID) candTrack.pdgcodemoth = getPartTypeMother(mcPart); - auto it = find_if(candidateTracks[iP].begin(), candidateTracks[iP].end(), [&](CandidateTrack &trk) { return trk.mcIndex == mcPart.globalIndex(); }); + auto it = find_if(candidateTracks[iP].begin(), candidateTracks[iP].end(), [&](CandidateTrack& trk) { return trk.mcIndex == mcPart.globalIndex(); }); if (it != candidateTracks[iP].end()) { continue; } else {