From f02034bd1d3c53ebf357f22e462ee96927478701 Mon Sep 17 00:00:00 2001 From: ALICE Action Bot Date: Thu, 19 Jun 2025 15:16:58 +0000 Subject: [PATCH] Please consider the following formatting changes --- PWGHF/HFC/Utils/utilsCorrelations.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/PWGHF/HFC/Utils/utilsCorrelations.h b/PWGHF/HFC/Utils/utilsCorrelations.h index a52000bb110..d2f0ac49736 100644 --- a/PWGHF/HFC/Utils/utilsCorrelations.h +++ b/PWGHF/HFC/Utils/utilsCorrelations.h @@ -123,7 +123,7 @@ bool passPIDSelection(Atrack const& track, SpeciesContainer const mPIDspecies, return true; // Passed all checks } -//function to select candidate based on PDF and decay channels and their mass +// function to select candidate based on PDF and decay channels and their mass template bool matchCandAndMass(McParticle const& particle, double& massCand) { @@ -146,32 +146,32 @@ bool matchCandAndMass(McParticle const& particle, double& massCand) // Map decay type to mass switch (matchGenFlag) { - case BIT(aod::hf_cand_sigmac::DecayType::Sc0ToPKPiPi):{ + case BIT(aod::hf_cand_sigmac::DecayType::Sc0ToPKPiPi): { massCand = o2::constants::physics::MassSigmaC0; return true; } - case BIT(aod::hf_cand_sigmac::DecayType::ScStar0ToPKPiPi):{ + case BIT(aod::hf_cand_sigmac::DecayType::ScStar0ToPKPiPi): { massCand = o2::constants::physics::MassSigmaCStar0; return true; } - case BIT(aod::hf_cand_sigmac::DecayType::ScplusplusToPKPiPi):{ + case BIT(aod::hf_cand_sigmac::DecayType::ScplusplusToPKPiPi): { massCand = o2::constants::physics::MassSigmaCStarPlusPlus; return true; } - case BIT(aod::hf_cand_sigmac::DecayType::ScStarPlusPlusToPKPiPi):{ + case BIT(aod::hf_cand_sigmac::DecayType::ScStarPlusPlusToPKPiPi): { massCand = o2::constants::physics::MassSigmaCStarPlusPlus; return true; } - case hf_decay::hf_cand_3prong::DecayChannelMain::LcToPKPi:{ + case hf_decay::hf_cand_3prong::DecayChannelMain::LcToPKPi: { massCand = o2::constants::physics::MassLambdaCPlus; return true; } - default:{ + default: { return false; } }