File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 2727// the key is the feature's name (std::string)
2828// the value is the corresponding value in EnumInputFeatures
2929#define FILL_MAP_XIC0TOXIPI (FEATURE ) \
30- { \
30+ { \
3131 #FEATURE, static_cast <uint8_t >(InputFeaturesXic0ToXiPi::FEATURE) \
3232 }
3333
3737// by calling the corresponding GETTER from OBJECT
3838#define CHECK_AND_FILL_VEC_XIC0TOXIPI_FULL (OBJECT, FEATURE, GETTER ) \
3939 case static_cast <uint8_t >(InputFeaturesXic0ToXiPi::FEATURE): { \
40- inputFeatures.emplace_back (OBJECT.GETTER ()); \
41- break ; \
40+ inputFeatures.emplace_back (OBJECT.GETTER ()); \
41+ break ; \
4242 }
4343
4444// where OBJECT is named candidate and FEATURE = GETTER
4545#define CHECK_AND_FILL_VEC_XIC0TOXIPI (GETTER ) \
4646 case static_cast <uint8_t >(InputFeaturesXic0ToXiPi::GETTER): { \
47- inputFeatures.emplace_back (candidate.GETTER ()); \
48- break ; \
47+ inputFeatures.emplace_back (candidate.GETTER ()); \
48+ break ; \
4949 }
5050
5151namespace o2 ::analysis
@@ -115,8 +115,7 @@ class HfMlResponseXic0ToXiPi : public HfMlResponse<TypeOutputScore>
115115 FILL_MAP_XIC0TOXIPI (cosPACharmBaryon),
116116 FILL_MAP_XIC0TOXIPI (cosPAV0),
117117 FILL_MAP_XIC0TOXIPI (impactParBachFromCharmBaryonXY),
118- FILL_MAP_XIC0TOXIPI (impactParCascXY)
119- };
118+ FILL_MAP_XIC0TOXIPI (impactParCascXY)};
120119 }
121120};
122121
You can’t perform that action at this time.
0 commit comments