Skip to content

Commit 7465550

Browse files
authored
[PWGCF] Changed the default value of several configurables (#16076)
1 parent 979bbb0 commit 7465550

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

PWGCF/MultiparticleCorrelations/Tasks/threeParticleCorrelations.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ struct ThreeParticleCorrelations {
8282
std::string prefix = "EventSelection";
8383
Configurable<float> zvtxMax{"zvtxMax", 10.0, "Maximum collision Z-vertex position (cm)"};
8484
Configurable<int> occupMin{"occupMin", 0, "Minimum collision occupancy"};
85-
Configurable<int> occupMax{"occupMax", 15000, "Maximum collision occupancy"};
85+
Configurable<int> occupMax{"occupMax", 500, "Maximum collision occupancy"};
8686
Configurable<bool> useOccupCut{"useOccupCut", true, "Use the kNoCollInTimeRangeStandard cut"};
8787
} evSelGroup;
8888

8989
// V0 filter parameters
9090
struct : ConfigurableGroup {
9191
std::string prefix = "V0Selection";
92-
Configurable<float> v0PtMin{"v0PtMin", 0.6, "Minimum V0 transverse momentum"};
92+
Configurable<float> v0PtMin{"v0PtMin", 1.6, "Minimum V0 transverse momentum"};
9393
Configurable<float> v0PtMax{"v0PtMax", 12.0, "Maximum V0 transverse momentum"};
9494
Configurable<float> tpcNCrossedRows{"tpcNCrossedRows", 70.0, "Minimum number of TPC crossed rows"};
9595
Configurable<float> decayR{"decayR", 1.2, "Minimum V0 decay radius (cm)"};
@@ -191,7 +191,7 @@ struct ThreeParticleCorrelations {
191191
struct : ConfigurableGroup {
192192
std::string prefix = "processSwitchBoard";
193193
Configurable<int> confBfieldSwitch{"confBfieldSwitch", 0, "Switch for the detector magnetic field (1 if Pos, -1 if Neg, 0 if both)"};
194-
Configurable<bool> confRatioCorrectionSwitch{"confRatioCorrectionSwitch", false, "Switch for correcting the negative spectra back to the positive spectra"};
194+
Configurable<bool> confRatioCorrectionSwitch{"confRatioCorrectionSwitch", true, "Switch for correcting the negative spectra back to the positive spectra"};
195195
Configurable<bool> confFakeV0Switch{"confFakeV0Switch", false, "Switch for the fakeV0Filter function"};
196196
Configurable<bool> confRDSwitch{"confRDSwitch", true, "Switch for the radialDistanceFilter function"};
197197
} switchGroup;

0 commit comments

Comments
 (0)