Skip to content

Commit ef64674

Browse files
committed
Do not use deprecated ROOT interfaces
1 parent bef1473 commit ef64674

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Detectors/PHOS/calib/src/PHOSRunbyrunCalibrator.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ void PHOSRunbyrunCalibrator::writeHistos()
213213
{
214214

215215
// Merge collected in different slots histograms
216-
TF1 fRatio("ratio", this, &PHOSRunbyrunCalibrator::CBRatio, 0, 1, 6, "PHOSRunbyrunCalibrator", "CBRatio");
217-
TF1 fBg("background", this, &PHOSRunbyrunCalibrator::bg, 0, 1, 6, "PHOSRunbyrunCalibrator", "bg");
218-
TF1 fSignal("signal", this, &PHOSRunbyrunCalibrator::CBSignal, 0, 1, 6, "PHOSRunbyrunCalibrator", "CBSignal");
216+
TF1 fRatio("ratio", this, &PHOSRunbyrunCalibrator::CBRatio, 0, 1, 6);
217+
TF1 fBg("background", this, &PHOSRunbyrunCalibrator::bg, 0, 1, 6);
218+
TF1 fSignal("signal", this, &PHOSRunbyrunCalibrator::CBSignal, 0, 1, 6);
219219
// fit inv mass distributions
220220

221221
for (int mod = 0; mod < 4; mod++) {

0 commit comments

Comments
 (0)