File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2626// the key is the feature's name (std::string)
2727// the value is the corresponding value in EnumInputFeatures
2828#define FILL_MAP_XIC0TOXIPI (FEATURE ) \
29- { \
29+ { \
3030 #FEATURE, static_cast <uint8_t >(InputFeaturesXic0ToXiPi::FEATURE) \
3131 }
3232
3636// by calling the corresponding GETTER from OBJECT
3737#define CHECK_AND_FILL_VEC_XIC0TOXIPI_FULL (OBJECT, FEATURE, GETTER ) \
3838 case static_cast <uint8_t >(InputFeaturesXic0ToXiPi::FEATURE): { \
39- inputFeatures.emplace_back (OBJECT.GETTER ()); \
40- break ; \
39+ inputFeatures.emplace_back (OBJECT.GETTER ()); \
40+ break ; \
4141 }
4242
4343// where OBJECT is named candidate and FEATURE = GETTER
4444#define CHECK_AND_FILL_VEC_XIC0TOXIPI (GETTER ) \
4545 case static_cast <uint8_t >(InputFeaturesXic0ToXiPi::GETTER): { \
46- inputFeatures.emplace_back (candidate.GETTER ()); \
47- break ; \
46+ inputFeatures.emplace_back (candidate.GETTER ()); \
47+ break ; \
4848 }
4949
5050namespace o2 ::analysis
You can’t perform that action at this time.
0 commit comments