From 157fe595a4d2a4aceee5de4162cb7de8a8ee3c20 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Mon, 27 Apr 2026 13:22:57 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx b/PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx index 2d4720caddd..a9a823d364c 100644 --- a/PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx +++ b/PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx @@ -220,7 +220,6 @@ struct lnnRecoTask { Configurable mcSignalOnly{"mcSignalOnly", true, "If true, save only signal in MC"}; Configurable doTrackQA{"doTrackQA", true, "if true, compute the QA studies beased on detectors (ITS-TPC-TOF) signals"}; Configurable useNoSameBunchPileup{"useNoSameBunchPileup", false, "reject collisions in case of pileup with another collision in the same foundBC"}; - // Define o2 fitter, 2-prong, active memory (no need to redefine per event) o2::vertexing::DCAFitterN<2> fitter; @@ -594,7 +593,7 @@ struct lnnRecoTask { float h3lE = h3E + piE; // Building the mother particle: lnn - constexpr std::size_t KMomDim= 3; + constexpr std::size_t KMomDim = 3; std::array lnnMom; const auto& vtx = fitter.getPCACandidate(); @@ -707,8 +706,8 @@ struct lnnRecoTask { lnnCand.gMom3H = isTrTrack ? mcTrackPos.pVector() : mcTrackNeg.pVector(); lnnCand.gMomPi = isTrTrack ? mcTrackNeg.pVector() : mcTrackPos.pVector(); - - int kNDimGen = 3; + + int kNDimGen = 3; for (int i = 0; i < kNDimGen; i++) { lnnCand.gDecVtx[i] = secVtx[i] - posPrimVtx[i]; } @@ -729,7 +728,7 @@ struct lnnRecoTask { { if (!mcPart.has_mothers()) return false; - + int decayProcess = 4; if (mcPart.getProcess() != decayProcess) return false; @@ -976,7 +975,7 @@ struct lnnRecoTask { lnnCand.survEvSelection = isGoodCollision[mcPart.mcCollisionId()]; int chargeFactor = -1 + 2 * (lnnCand.pdgCode > 0); - int kDimGen = 3; + int kDimGen = 3; for (int i = 0; i < kDimGen; i++) { lnnCand.gDecVtx[i] = secVtx[i] - primVtx[i]; lnnCand.gMom[i] = momMother[i];