Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions PWGHF/D2H/Tasks/taskXicToXiPiPi.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ struct HfTaskXicToXiPiPi {
ConfigurableAxis binsImpParErr{"binsImpParErr", {200, -0.1, 0.1}, ""};
ConfigurableAxis binsSV{"binsSV", {200, -5., 5.}, ""};
ConfigurableAxis binsChi2{"binsChi2", {200, 0., 0.1}, ""};

HistogramRegistry registry{"registry"};

void init(InitContext const&)
Expand Down Expand Up @@ -277,9 +277,9 @@ struct HfTaskXicToXiPiPi {

if constexpr (useMl) {
// with ML information
double outputBkg = -99.; // bkg score
double outputPrompt = -99.; // prompt score
double outputFD = -99.; // non-prompt score
double outputBkg = -99.; // bkg score
double outputPrompt = -99.; // prompt score
double outputFD = -99.; // non-prompt score
if (candidate.mlProbXicToXiPiPi().size() > 0) {
outputBkg = candidate.mlProbXicToXiPiPi()[0];
outputPrompt = candidate.mlProbXicToXiPiPi()[1];
Expand Down
Loading