From 4288e8de287361d89a47d63897b2b545d6d6ca72 Mon Sep 17 00:00:00 2001 From: Mattia Faggin Date: Fri, 30 Jan 2026 15:15:54 +0000 Subject: [PATCH 1/2] Add cut on sot-pi min pt . --- PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx b/PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx index 1804b766043..93148b56cff 100644 --- a/PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx +++ b/PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx @@ -83,6 +83,7 @@ struct HfCandidateCreatorSigmac0plusplus { /// Selections on candidate soft π-,+ Configurable applyGlobalTrkWoDcaCutsSoftPi{"applyGlobalTrkWoDcaCutsSoftPi", false, "Switch on the application of the global-track w/o dca cuts for soft pion BEFORE ALL OTHER CUSTOM CUTS"}; + Configurable softPiPtMin{"softPiPtMin", 0.1, "Soft pion min value for pt"}; Configurable softPiEtaMax{"softPiEtaMax", 0.9f, "Soft pion max value for pseudorapidity (abs vale)"}; Configurable softPiChi2Max{"softPiChi2Max", 36.f, "Soft pion max value for chi2 ITS"}; Configurable softPiApplyCustomITSHitMap{"softPiApplyCustomITSHitMap", true, "Flag to enable/disable the application of the custom ITS hitmap requirement for the candidate soft pion"}; @@ -157,7 +158,7 @@ struct HfCandidateCreatorSigmac0plusplus { } // kinematics - // softPiCuts.SetPtRange(0.001, 1000.); // pt + softPiCuts.SetPtRange(softPiPtMin, 1000.); // pt softPiCuts.SetEtaRange(-softPiEtaMax, softPiEtaMax); // eta // softPiCuts.SetMaxDcaXY(softPiDcaXYMax); // dcaXY // softPiCuts.SetMaxDcaZ(softPiDcaZMax); // dcaZ From b19730d0c2913ecad8727fdb3803b72888054cf3 Mon Sep 17 00:00:00 2001 From: Mattia Faggin Date: Fri, 30 Jan 2026 15:20:50 +0000 Subject: [PATCH 2/2] Minor fixes. --- PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx b/PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx index 93148b56cff..ede5228feae 100644 --- a/PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx +++ b/PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx @@ -83,7 +83,7 @@ struct HfCandidateCreatorSigmac0plusplus { /// Selections on candidate soft π-,+ Configurable applyGlobalTrkWoDcaCutsSoftPi{"applyGlobalTrkWoDcaCutsSoftPi", false, "Switch on the application of the global-track w/o dca cuts for soft pion BEFORE ALL OTHER CUSTOM CUTS"}; - Configurable softPiPtMin{"softPiPtMin", 0.1, "Soft pion min value for pt"}; + Configurable softPiPtMin{"softPiPtMin", 0.1f, "Soft pion min value for pt (GeV/c)"}; Configurable softPiEtaMax{"softPiEtaMax", 0.9f, "Soft pion max value for pseudorapidity (abs vale)"}; Configurable softPiChi2Max{"softPiChi2Max", 36.f, "Soft pion max value for chi2 ITS"}; Configurable softPiApplyCustomITSHitMap{"softPiApplyCustomITSHitMap", true, "Flag to enable/disable the application of the custom ITS hitmap requirement for the candidate soft pion"}; @@ -158,7 +158,7 @@ struct HfCandidateCreatorSigmac0plusplus { } // kinematics - softPiCuts.SetPtRange(softPiPtMin, 1000.); // pt + softPiCuts.SetPtRange(softPiPtMin, 1e10f); // pt softPiCuts.SetEtaRange(-softPiEtaMax, softPiEtaMax); // eta // softPiCuts.SetMaxDcaXY(softPiDcaXYMax); // dcaXY // softPiCuts.SetMaxDcaZ(softPiDcaZMax); // dcaZ