diff --git a/PWGHF/TableProducer/pidCreator.cxx b/PWGHF/TableProducer/pidCreator.cxx index 15ed9b89e20..de9f757e3ed 100644 --- a/PWGHF/TableProducer/pidCreator.cxx +++ b/PWGHF/TableProducer/pidCreator.cxx @@ -38,11 +38,8 @@ struct HfPidCreator { Produces trackPidFullPr; Produces trackPidTinyPr; /// 2-prong candidate tables - Produces cand2ProngPidFullEl; - Produces cand2ProngPidFullMu; Produces cand2ProngPidFullPi; Produces cand2ProngPidFullKa; - Produces cand2ProngPidFullPr; static constexpr float defaultNSigmaTolerance = .1f; static constexpr float defaultNSigma = -999.f + defaultNSigmaTolerance; // -999.f is the default value set in TPCPIDResponse.h and PIDTOF.h @@ -68,6 +65,7 @@ struct HfPidCreator { void init(InitContext& initContext) { // Check whether the right process functions are enabled. + // tracks checkTableSwitch(initContext, "PidTpcTofFullEl", doprocessFullEl); checkTableSwitch(initContext, "PidTpcTofTinyEl", doprocessTinyEl); checkTableSwitch(initContext, "PidTpcTofFullMu", doprocessFullMu); @@ -78,6 +76,9 @@ struct HfPidCreator { checkTableSwitch(initContext, "PidTpcTofTinyKa", doprocessTinyKa); checkTableSwitch(initContext, "PidTpcTofFullPr", doprocessFullPr); checkTableSwitch(initContext, "PidTpcTofTinyPr", doprocessTinyPr); + // 2-prong candidates + checkTableSwitch(initContext, "PidTpcTofCand2ProngFullPi", doprocessPIDCand2ProngFullPi); + checkTableSwitch(initContext, "PidTpcTofCand2ProngFullKa", doprocessPIDCand2ProngFullKa); } /// Function to combine TPC and TOF NSigma