Skip to content

Commit 47e2d6b

Browse files
authored
Merge pull request #97 from alibuild/alibot-cleanup-15951
Please consider the following formatting changes to #15951
2 parents 5c1f315 + d94ea7f commit 47e2d6b

1 file changed

Lines changed: 19 additions & 20 deletions

File tree

PWGEM/Dilepton/Utils/MlResponseFwdTrack.h

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -27,38 +27,37 @@
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

4544
namespace o2::analysis
4645
{
4746
// possible input features for ML
4847
enum 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

6463
template <typename TypeOutputScore = float>

0 commit comments

Comments
 (0)