Skip to content

Commit b19730d

Browse files
committed
Minor fixes.
1 parent 4288e8d commit b19730d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGHF/TableProducer/candidateCreatorSigmac0plusplus.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +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.1, "Soft pion min value for pt"};
86+
Configurable<float> softPiPtMin{"softPiPtMin", 0.1f, "Soft pion min value for pt (GeV/c)"};
8787
Configurable<float> softPiEtaMax{"softPiEtaMax", 0.9f, "Soft pion max value for pseudorapidity (abs vale)"};
8888
Configurable<float> softPiChi2Max{"softPiChi2Max", 36.f, "Soft pion max value for chi2 ITS"};
8989
Configurable<int> 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 {
158158
}
159159

160160
// kinematics
161-
softPiCuts.SetPtRange(softPiPtMin, 1000.); // pt
161+
softPiCuts.SetPtRange(softPiPtMin, 1e10f); // pt
162162
softPiCuts.SetEtaRange(-softPiEtaMax, softPiEtaMax); // eta
163163
// softPiCuts.SetMaxDcaXY(softPiDcaXYMax); // dcaXY
164164
// softPiCuts.SetMaxDcaZ(softPiDcaZMax); // dcaZ

0 commit comments

Comments
 (0)