Skip to content

Commit 23ad59c

Browse files
authored
Update candidateSelectorXic0ToXiPiKf.cxx
1 parent ddbe967 commit 23ad59c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGHF/TableProducer/candidateSelectorXic0ToXiPiKf.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ struct HfCandidateSelectorXic0ToXiPiKf {
133133

134134
// CCDB configuration
135135
Configurable<std::string> ccdbUrl{"ccdbUrl", "http://alice-ccdb.cern.ch", "url of the ccdb repository"};
136-
Configurable<std::vector<std::string>> modelPathsCCDB{"modelPathsCCDB", std::vector<std::string>{"EventFiltering/PWGHF/BDTXic0"}, "Paths of models on CCDB"};
136+
Configurable<std::vector<std::string>> modelPathsCCDB{"modelPathsCCDB", std::vector<std::string>{"EventFiltering/PWGHF/BDTXic0ToXipikf"}, "Paths of models on CCDB"};
137137
Configurable<std::vector<std::string>> onnxFileNames{"onnxFileNames", std::vector<std::string>{"ModelHandler_onnx_Xic0ToXipikf.onnx"}, "ONNX file names for each pT bin (if not from CCDB full path)"};
138138
Configurable<int64_t> timestampCCDB{"timestampCCDB", -1, "timestamp of the ONNX file for ML model used to query in CCDB"};
139139
Configurable<bool> loadModelsFromCCDB{"loadModelsFromCCDB", false, "Flag to enable or disable the loading of models from CCDB"};
140140

141141
o2::analysis::HfMlResponseXic0ToXiPikf<float> hfMlResponse;
142-
std::vector<float> outputMlXic0ToXiPi = {};
142+
std::vector<float> outputMlXic0ToXiPikf = {};
143143
o2::ccdb::CcdbApi ccdbApi;
144144

145145
TrackSelectorPr selectorProton;
@@ -547,11 +547,11 @@ 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, outputMlXic0ToXiPi);
550+
isSelectedMlXic0 = hfMlResponse.isSelectedMl(inputFeaturesXic0, ptCand, outputMlXic0ToXiPikf);
551551
if (!isSelectedMlXic0) {
552552
continue;
553553
}
554-
hfMlToXiPi(outputMlXic0ToXiPi);
554+
hfMlToXiPi(outputMlXic0ToXiPikf);
555555
}
556556

557557
hfSelToXiPi(statusPidCharmBaryon, statusPidCascade, statusPidLambda, statusInvMassCharmBaryon, statusInvMassCascade, statusInvMassLambda, resultSelections, infoTpcStored, infoTofStored,

0 commit comments

Comments
 (0)