Skip to content

Commit fba9bb6

Browse files
authored
Merge pull request #6 from alibuild/alibot-cleanup-11388
Please consider the following formatting changes to #11388
2 parents 23ad59c + 6f591c4 commit fba9bb6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

PWGHF/Core/HfMlResponseXic0ToXiPikf.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,25 @@
2626
// the key is the feature's name (std::string)
2727
// the value is the corresponding value in EnumInputFeatures
2828
#define FILL_MAP_XIC0TOXIPIKF(FEATURE) \
29-
{ \
30-
#FEATURE, static_cast<uint8_t>( InputFeaturesXic0ToXiPikf::FEATURE) \
29+
{ \
30+
#FEATURE, static_cast<uint8_t>(InputFeaturesXic0ToXiPikf::FEATURE) \
3131
}
3232

3333
// Check if the index of mCachedIndices (index associated to a FEATURE)
3434
// matches the entry in EnumInputFeatures associated to this FEATURE
3535
// if so, the inputFeatures vector is filled with the FEATURE's value
3636
// by calling the corresponding GETTER from OBJECT
3737
#define CHECK_AND_FILL_VEC_XIC0TOXIPIKF_FULL(OBJECT, FEATURE, GETTER) \
38-
case static_cast<uint8_t>( InputFeaturesXic0ToXiPikf::FEATURE): { \
39-
inputFeatures.emplace_back(OBJECT.GETTER()); \
40-
break; \
38+
case static_cast<uint8_t>(InputFeaturesXic0ToXiPikf::FEATURE): { \
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_XIC0TOXIPIKF(GETTER) \
45-
case static_cast<uint8_t>( InputFeaturesXic0ToXiPikf::GETTER): { \
46-
inputFeatures.emplace_back(candidate.GETTER()); \
47-
break; \
45+
case static_cast<uint8_t>(InputFeaturesXic0ToXiPikf::GETTER): { \
46+
inputFeatures.emplace_back(candidate.GETTER()); \
47+
break; \
4848
}
4949

5050
namespace o2::analysis

PWGHF/TableProducer/candidateSelectorXic0ToXiPiKf.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ struct HfCandidateSelectorXic0ToXiPiKf {
547547
if (applyMl) {
548548
bool isSelectedMlXic0 = false;
549549
std::vector<float> inputFeaturesXic0 = hfMlResponse.getInputFeatures(candidate, trackPiFromLam, trackPiFromCasc, trackPiFromCharm);
550-
isSelectedMlXic0 = hfMlResponse.isSelectedMl(inputFeaturesXic0, ptCand, outputMlXic0ToXiPikf);
550+
isSelectedMlXic0 = hfMlResponse.isSelectedMl(inputFeaturesXic0, ptCand, outputMlXic0ToXiPikf);
551551
if (!isSelectedMlXic0) {
552552
continue;
553553
}

0 commit comments

Comments
 (0)