File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727// Fill the map of available input features
2828// the key is the feature's name (std::string)
2929// the value is the corresponding value in EnumInputFeatures
30- #define FILL_MAP_TRACK (FEATURE ) \
31- { \
32- #FEATURE, static_cast <uint8_t >(InputFeaturesFwdTrack::FEATURE) \
33- }
30+ #define FILL_MAP_TRACK (FEATURE ) \
31+ { \
32+ #FEATURE, static_cast <uint8_t >(InputFeaturesFwdTrack::FEATURE)}
3433
3534// Check if the index of mCachedIndices (index associated to a FEATURE)
3635// matches the entry in EnumInputFeatures associated to this FEATURE
3736// if so, the inputFeatures vector is filled with the FEATURE's value
3837// by calling the corresponding GETTER=FEATURE from track
39- #define CHECK_AND_FILL_TRACK (GETTER ) \
38+ #define CHECK_AND_FILL_TRACK (GETTER ) \
4039 case static_cast <uint8_t >(InputFeaturesFwdTrack::GETTER): { \
41- inputFeature = track.GETTER ; \
42- break ; \
40+ inputFeature = track.GETTER ; \
41+ break ; \
4342 }
4443
4544namespace o2 ::analysis
4645{
4746// possible input features for ML
4847enum class InputFeaturesFwdTrack : uint8_t {
49- multFT0C,
50- multMFT,
51- ptMCHMID,
52- rSigned1Pt,
53- dEta,
54- dPhi,
55- dX,
56- dY,
57- chi2MatchMCHMFT,
58- sigmaPhiMFT,
59- sigmaTglMFT,
60- sigmaPhiMCHMID,
61- sigmaTglMCHMID,
48+ multFT0C,
49+ multMFT,
50+ ptMCHMID,
51+ rSigned1Pt,
52+ dEta,
53+ dPhi,
54+ dX,
55+ dY,
56+ chi2MatchMCHMFT,
57+ sigmaPhiMFT,
58+ sigmaTglMFT,
59+ sigmaPhiMCHMID,
60+ sigmaTglMCHMID,
6261};
6362
6463template <typename TypeOutputScore = float >
You can’t perform that action at this time.
0 commit comments