Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions PWGHF/Core/HfMlResponseXicToPKPi.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@
// where GETTER1 and GETTER2 are methods of the OBJECT, and used
// depending on whether the candidate is a XicToPKPi or a XicToPiKP
#define CHECK_AND_FILL_VEC_XIC_SIGNED(OBJECT, FEATURE, GETTER1, GETTER2) \
case static_cast<uint8_t>(InputFeaturesXicToPKPi::FEATURE): { \
if (caseXicToPKPi) { \
inputFeatures.emplace_back(OBJECT.GETTER1()); \
} else { \
inputFeatures.emplace_back(OBJECT.GETTER2()); \
} \
break; \
}
case static_cast<uint8_t>(InputFeaturesXicToPKPi::FEATURE): { \
if (caseXicToPKPi) { \
inputFeatures.emplace_back(OBJECT.GETTER1()); \
} else { \
inputFeatures.emplace_back(OBJECT.GETTER2()); \
} \
break; \
}

namespace o2::analysis
{
Expand Down
Loading