Skip to content

Commit a2e5e3e

Browse files
committed
fixes
1 parent 8f87741 commit a2e5e3e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PWGJE/Core/JetHFUtilities.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ constexpr bool isMatchedHFCandidate(T const& candidate)
480480
return false;
481481
}
482482
} else if constexpr (isXicToXiPiPiCandidate<T>()) {
483-
if (std::abs(candidate.flagMcMatchRec()) == aod::hf_cand_xic_to_xi_pi_pi::DecayType::XicToXiPiPi) {
483+
if (std::abs(candidate.flagMcMatchRec()) == o2::aod::hf_cand_xic_to_xi_pi_pi::DecayType::XicToXiPiPi) {
484484
return true;
485485
} else {
486486
return false;
@@ -528,7 +528,7 @@ constexpr bool isMatchedHFCandidate(T const& candidate)
528528
return false;
529529
}
530530
} else if constexpr (isXicToXiPiPiMcCandidate<T>()) {
531-
if (std::abs(candidate.flagMcMatchGen()) == aod::hf_cand_xic_to_xi_pi_pi::DecayType::XicToXiPiPi) {
531+
if (std::abs(candidate.flagMcMatchGen()) == o2::aod::hf_cand_xic_to_xi_pi_pi::DecayType::XicToXiPiPi) {
532532
return true;
533533
} else {
534534
return false;

PWGJE/JetFinders/jetFinderXicToXiPiPiDataCharged.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
// jet finder D+ data charged task
12+
// jet finder XicToXiPiPi data charged task
1313
//
1414
/// \author Nima Zardoshti <nima.zardoshti@cern.ch>
1515

0 commit comments

Comments
 (0)