Skip to content

Commit 32e430e

Browse files
authored
[PWGHF] Add cut on soft-pi min pt . (#14715)
1 parent dad6636 commit 32e430e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ struct HfCandidateCreatorSigmac0plusplus {
8383

8484
/// Selections on candidate soft π-,+
8585
Configurable<bool> applyGlobalTrkWoDcaCutsSoftPi{"applyGlobalTrkWoDcaCutsSoftPi", false, "Switch on the application of the global-track w/o dca cuts for soft pion BEFORE ALL OTHER CUSTOM CUTS"};
86+
Configurable<float> softPiPtMin{"softPiPtMin", 0.1f, "Soft pion min value for pt (GeV/c)"};
8687
Configurable<float> softPiEtaMax{"softPiEtaMax", 0.9f, "Soft pion max value for pseudorapidity (abs vale)"};
8788
Configurable<float> softPiChi2Max{"softPiChi2Max", 36.f, "Soft pion max value for chi2 ITS"};
8889
Configurable<int> 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 {
157158
}
158159

159160
// kinematics
160-
// softPiCuts.SetPtRange(0.001, 1000.); // pt
161+
softPiCuts.SetPtRange(softPiPtMin, 1e10f); // pt
161162
softPiCuts.SetEtaRange(-softPiEtaMax, softPiEtaMax); // eta
162163
// softPiCuts.SetMaxDcaXY(softPiDcaXYMax); // dcaXY
163164
// softPiCuts.SetMaxDcaZ(softPiDcaZMax); // dcaZ

0 commit comments

Comments
 (0)