Skip to content

Commit 129256a

Browse files
committed
fix warning
1 parent 5200e72 commit 129256a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

PWGHF/Core/SelectorCuts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static const std::vector<std::string> labelsRowsNucleiType = {"Deutron", "Triton
9393

9494
constexpr float BetheBlochParams[3][6] = {{5.39302, 7.859534, 0.004048, 2.323197, 1.609307, 0.09},
9595
{5.39302, 7.859534, 0.004048, 2.323197, 1.609307, 0.09},
96-
{-126.557359, -0.858569, 1.111643, 1.210323, 2.656374, 0.09}};
96+
{-126.55736, -0.858569, 1.11164, 1.21032, 2.656374, 0.09}};
9797

9898
static const std::vector<std::string> labelsBetheBlochParams = {"p0", "p1", "p2", "p3", "p4", "resolution"};
9999

PWGHF/TableProducer/trackIndexSkimCreator.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1854,13 +1854,13 @@ struct HfTrackIndexSkimCreator {
18541854
iDecay3P == hf_cand_3prong::DecayType::ChToHeKPi)) {
18551855

18561856
ChannelsNucleiQA nucleiType;
1857-
if (iDecay3P == hf_cand_3prong::DecayType::CdToDeKPi)
1857+
if (iDecay3P == hf_cand_3prong::DecayType::CdToDeKPi) {
18581858
nucleiType = ChannelsNucleiQA::Deuteron;
1859-
else if (iDecay3P == hf_cand_3prong::DecayType::CtToTrKPi)
1859+
} else if (iDecay3P == hf_cand_3prong::DecayType::CtToTrKPi) {
18601860
nucleiType = ChannelsNucleiQA::Triton;
1861-
else if (iDecay3P == hf_cand_3prong::DecayType::ChToHeKPi)
1861+
} else if (iDecay3P == hf_cand_3prong::DecayType::ChToHeKPi) {
18621862
nucleiType = ChannelsNucleiQA::Helium3;
1863-
else {
1863+
} else {
18641864
LOG(fatal, "Unhandled DecayType = %d", static_cast<int>(iDecay3P));
18651865
}
18661866

0 commit comments

Comments
 (0)