Skip to content

Commit 9b76aba

Browse files
authored
Update and rename HfMlResponseXic0ToXiPikf.h to HfMlResponseXic0ToXiPiKf.h
Switch Xic0ToXiPikf to Xic0ToXiPiKf
1 parent a8801e6 commit 9b76aba

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// granted to it by virtue of its status as an Intergovernmental Organization
1010
// or submit itself to any jurisdiction.
1111

12-
/// \file HfMlResponseXic0ToXiPikf.h
12+
/// \file HfMlResponseXic0ToXiPiKf.h
1313
/// \brief Class to compute the ML response for Ξc^0 → Ξ∓ π± kf analysis selections
1414
/// \author Tao Fang <tao.fang@cern.ch>, Central China Normal University
1515

@@ -25,30 +25,30 @@
2525
// the value is the corresponding value in EnumInputFeatures
2626
#define FILL_MAP_XIC0TOXIPIKF(FEATURE) \
2727
{ \
28-
#FEATURE, static_cast<uint8_t>(InputFeaturesXic0ToXiPikf::FEATURE) \
28+
#FEATURE, static_cast<uint8_t>(InputFeaturesXic0ToXiPiKf::FEATURE) \
2929
}
3030

3131
// Check if the index of mCachedIndices (index associated to a FEATURE)
3232
// matches the entry in EnumInputFeatures associated to this FEATURE
3333
// if so, the inputFeatures vector is filled with the FEATURE's value
3434
// by calling the corresponding GETTER from OBJECT
3535
#define CHECK_AND_FILL_VEC_XIC0TOXIPIKF_FULL(OBJECT, FEATURE, GETTER) \
36-
case static_cast<uint8_t>(InputFeaturesXic0ToXiPikf::FEATURE): { \
36+
case static_cast<uint8_t>(InputFeaturesXic0ToXiPiKf::FEATURE): { \
3737
inputFeatures.emplace_back(OBJECT.GETTER()); \
3838
break; \
3939
}
4040

4141
// where OBJECT is named candidate and FEATURE = GETTER
4242
#define CHECK_AND_FILL_VEC_XIC0TOXIPIKF(GETTER) \
43-
case static_cast<uint8_t>(InputFeaturesXic0ToXiPikf::GETTER): { \
43+
case static_cast<uint8_t>(InputFeaturesXic0ToXiPiKf::GETTER): { \
4444
inputFeatures.emplace_back(candidate.GETTER()); \
4545
break; \
4646
}
4747

4848
namespace o2::analysis
4949
{
5050

51-
enum class InputFeaturesXic0ToXiPikf : uint8_t {
51+
enum class InputFeaturesXic0ToXiPiKf : uint8_t {
5252
tpcNSigmaPiFromLambda,
5353
tpcNSigmaPiFromCasc,
5454
tpcNSigmaPiFromCharmBaryon,
@@ -66,13 +66,13 @@ enum class InputFeaturesXic0ToXiPikf : uint8_t {
6666
};
6767

6868
template <typename TypeOutputScore = float>
69-
class HfMlResponseXic0ToXiPikf : public HfMlResponse<TypeOutputScore>
69+
class HfMlResponseXic0ToXiPiKf : public HfMlResponse<TypeOutputScore>
7070
{
7171
public:
7272
/// Default constructor
73-
HfMlResponseXic0ToXiPikf() = default;
73+
HfMlResponseXic0ToXiPiKf() = default;
7474
/// Default destructor
75-
virtual ~HfMlResponseXic0ToXiPikf() = default;
75+
virtual ~HfMlResponseXic0ToXiPiKf() = default;
7676

7777
/// Method to get the input features vector needed for ML inference
7878
/// \param candidate is the Xic0 candidate

0 commit comments

Comments
 (0)