diff --git a/DQMServices/Components/plugins/DQMGenericClient.cc b/DQMServices/Components/plugins/DQMGenericClient.cc index bd4999eebcf21..1d1fa290ea671 100644 --- a/DQMServices/Components/plugins/DQMGenericClient.cc +++ b/DQMServices/Components/plugins/DQMGenericClient.cc @@ -158,7 +158,7 @@ class FitSlicesYTool { // ... create your hists TH2F* h = me->getTH2F(); TF1 fgaus("fgaus", "gaus", h->GetYaxis()->GetXmin(), h->GetYaxis()->GetXmax(), TF1::EAddToList::kNo); - h->FitSlicesY(&fgaus, 0, -1, 0, "QNR SERIAL"); + h->FitSlicesY(&fgaus, 0, -1, 0, "QNRL SERIAL"); string name(h->GetName()); h0 = (TH1*)gDirectory->Get((name + "_0").c_str()); h1 = (TH1*)gDirectory->Get((name + "_1").c_str());