You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// condition for sign: we want to work only with pi, p and K, without antiparticles
332
-
if ((pid == particlesPdgCode[i]) & (track.sign() == 1)) {
336
+
if (pid == particlesPdgCode[i] && track.sign() == 1) {
333
337
if (pdgCodeMC == particlesPdgCode[i]) {
334
338
fillPidHistos<i>(track, pdgCodeMC, true);
335
339
} else {
@@ -342,12 +346,11 @@ struct pidml {
342
346
PidONNXModel model211All;
343
347
PidONNXModel model2212All;
344
348
PidONNXModel model321All;
345
-
// Model with only TPC model
349
+
// Model with only TPC signal model
346
350
PidONNXModel model211TPC;
347
351
PidONNXModel model2212TPC;
348
352
PidONNXModel model321TPC;
349
353
350
-
// Configurable<bool> cfgUseTOF{"useTOF", true, "Use ML model with TOF signal"};
351
354
Configurable<std::string> cfgModelDir{"model-dir", "http://alice-ccdb.cern.ch/Users/m/mkabus/pidml/onnx_models", "base path to the directory with ONNX models"};
352
355
Configurable<std::string> cfgScalingParamsFile{"scaling-params", "http://alice-ccdb.cern.ch/Users/m/mkabus/pidml/onnx_models/train_208_mc_with_beta_and_sigmas_scaling_params.json", "base path to the ccdb JSON file with scaling parameters from training"};
0 commit comments