Skip to content

Commit 45347b1

Browse files
authored
[PWGCF] use different polynomial for fitting multiplicity correlation plots (#13199)
1 parent 8f3db24 commit 45347b1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

PWGCF/EbyEFluctuations/Tasks/netchargeFluctuations.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,18 +113,18 @@ struct NetchargeFluctuations {
113113

114114
O2_DEFINE_CONFIGURABLE(cfgMultPVT0CCutEnabled, bool, true, "Enable PV multiplicity vs T0C centrality cut")
115115
O2_DEFINE_CONFIGURABLE(cfgMultGlobalFT0CCutEnabled, bool, true, "Enable globalTracks vs FT0C multiplicity cut")
116-
O2_DEFINE_CONFIGURABLE(cfgMultGlobalPVCutEnabled, bool, false, "Enable globalTracks vs PV multiplicity cut")
116+
O2_DEFINE_CONFIGURABLE(cfgMultGlobalPVCutEnabled, bool, true, "Enable globalTracks vs PV multiplicity cut")
117117

118118
Configurable<std::vector<double>> cfgMultPVT0CCutPars{"cfgMultPVT0CCutPars",
119-
std::vector<double>{187.621, -5.14575, 0.0716601, -0.000586642, 2.02818e-06, 51.2929, -1.66644, 0.0354762, -0.000389809, 1.55365e-06},
119+
std::vector<double>{30.434, -0.917137, 0.0185032, -0.000198425, 7.94381e-07, 13.7406, -0.282656, 0.00556147, -6.32766e-05, 2.51648e-07},
120120
"PV multiplicity vs T0C centrality cut parameter values"};
121121

122122
Configurable<std::vector<double>> cfgMultGlobalFT0CCutPars{"cfgMultGlobalFT0CCutPars",
123-
std::vector<double>{135.561, -3.7818, 0.0536562, -0.000445155, 1.55429e-06, 38.2336, -1.2568, 0.0270932, -0.000301034, 1.21234e-06},
123+
std::vector<double>{18.9628, -0.576466, 0.0117324, -0.000126086, 5.05365e-07, 8.99921, -0.188022, 0.0037089, -4.20275e-05, 1.68234e-07},
124124
"globalTracks vs FT0C cut parameter values"};
125125

126126
Configurable<std::vector<double>> cfgMultGlobalPVCutPars{"cfgMultGlobalPVCutPars",
127-
std::vector<double>{100., -2., 0.05, -0.0003, 1e-06, 30., -1.0, 0.02, -0.0002, 8e-07},
127+
std::vector<double>{0.148031, 0.616699, 0.603083, 0.112751, -0.0013846, 8.38211e-06},
128128
"globalTracks vs PV cut parameter values"};
129129

130130
std::vector<double> multPVT0CCutPars;
@@ -354,13 +354,13 @@ struct NetchargeFluctuations {
354354

355355
cfgFunCoeff.fMultGlobalPVCutLow =
356356
new TF1("fMultGlobalPVCutLow",
357-
"[0] + [1]*x - 5.*([2] + [3]*x)",
357+
"[0]+[1]*x - 3.5*([2]+[3]*x+[4]*x*x+[5]*x*x*x)",
358358
0, 100);
359359
cfgFunCoeff.fMultGlobalPVCutLow->SetParameters(&(cfgFunCoeff.multGlobalPVCutPars[0]));
360360

361361
cfgFunCoeff.fMultGlobalPVCutHigh =
362362
new TF1("fMultGlobalPVCutHigh",
363-
"[0] + [1]*x + 5.*([2] + [3]*x)",
363+
"[0]+[1]*x + 3.5*([2]+[3]*x+[4]*x*x+[5]*x*x*x)",
364364
0, 100);
365365
cfgFunCoeff.fMultGlobalPVCutHigh->SetParameters(&(cfgFunCoeff.multGlobalPVCutPars[0]));
366366

0 commit comments

Comments
 (0)