Skip to content

Commit f7970c9

Browse files
committed
propagate to JE
1 parent 8149956 commit f7970c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGJE/Core/JetHFUtilities.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ constexpr bool isMatchedHFCandidate(T const& candidate)
281281
return false;
282282
}
283283
} else if constexpr (isBplusCandidate<T>()) {
284-
if (std::abs(candidate.flagMcMatchRec()) == 1 << o2::aod::hf_cand_bplus::DecayType::BplusToD0Pi) {
284+
if (std::abs(candidate.flagMcMatchRec()) == o2::hf_decay::hf_cand_beauty::DecayChannelMain::BplusToD0Pi) {
285285
return true;
286286
} else {
287287
return false;
@@ -305,7 +305,7 @@ constexpr bool isMatchedHFCandidate(T const& candidate)
305305
return false;
306306
}
307307
} else if constexpr (isBplusMcCandidate<T>()) {
308-
if (std::abs(candidate.flagMcMatchGen()) == 1 << o2::aod::hf_cand_bplus::DecayType::BplusToD0Pi) {
308+
if (std::abs(candidate.flagMcMatchGen()) == o2::hf_decay::hf_cand_beauty::DecayChannelMain::BplusToD0Pi) {
309309
return true;
310310
} else {
311311
return false;

0 commit comments

Comments
 (0)