Skip to content

Commit 9730337

Browse files
committed
Changed the default value of several configurables
1 parent dbb91a1 commit 9730337

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ struct ThreeParticleCorrelations {
5656
std::string prefix = "EventSelection";
5757
Configurable<float> zvtxMax{"zvtxMax", 10.0, "Maximum collision Z-vertex position (cm)"};
5858
Configurable<int> occupMin{"occupMin", 0, "Minimum collision occupancy"};
59-
Configurable<int> occupMax{"occupMax", 15000, "Maximum collision occupancy"};
59+
Configurable<int> occupMax{"occupMax", 500, "Maximum collision occupancy"};
6060
Configurable<bool> useOccupCut{"useOccupCut", true, "Use the kNoCollInTimeRangeStandard cut"};
6161
} evSelGroup;
6262

6363
// V0 filter parameters
6464
struct : ConfigurableGroup {
6565
std::string prefix = "V0Selection";
66-
Configurable<float> v0PtMin{"v0PtMin", 0.6, "Minimum V0 transverse momentum"};
66+
Configurable<float> v0PtMin{"v0PtMin", 1.6, "Minimum V0 transverse momentum"};
6767
Configurable<float> v0PtMax{"v0PtMax", 12.0, "Maximum V0 transverse momentum"};
6868
Configurable<float> tpcNCrossedRows{"tpcNCrossedRows", 70.0, "Minimum number of TPC crossed rows"};
6969
Configurable<float> decayR{"decayR", 1.2, "Minimum V0 decay radius (cm)"};
@@ -165,7 +165,7 @@ struct ThreeParticleCorrelations {
165165
struct : ConfigurableGroup {
166166
std::string prefix = "processSwitchBoard";
167167
Configurable<int> confBfieldSwitch{"confBfieldSwitch", 0, "Switch for the detector magnetic field (1 if Pos, -1 if Neg, 0 if both)"};
168-
Configurable<bool> confRatioCorrectionSwitch{"confRatioCorrectionSwitch", false, "Switch for correcting the negative spectra back to the positive spectra"};
168+
Configurable<bool> confRatioCorrectionSwitch{"confRatioCorrectionSwitch", true, "Switch for correcting the negative spectra back to the positive spectra"};
169169
Configurable<bool> confFakeV0Switch{"confFakeV0Switch", false, "Switch for the fakeV0Filter function"};
170170
Configurable<bool> confRDSwitch{"confRDSwitch", true, "Switch for the radialDistanceFilter function"};
171171
} switchGroup;

0 commit comments

Comments
 (0)