Hi,
I’m trying to plot a profile likelihood interval using:
ProfileLikelihoodCalculator pl(*data,mc);
pl.SetConfidenceLevel(0.95);
LikelihoodInterval interval = pl.GetInterval();
LikelihoodIntervalPlot plot(interval);
plot.SetNPoints(50);
plot.Draw("");
When I do, I get a series of errors like this:
[#0] WARNING:Minization – RooMinimizerFcn: Minimized function has error status.
Returning maximum FCN so far (26831.6) to force MIGRAD to back out of this region. Error log follows
Parameter values: f=0.418067, mGau=0.665142, mLan=178.942, mu=0.3775, wG=1.53094, wL=34.3664
RooGaussian::SignalG[ x=Mjj mean=mGau sigma=wG ]
p.d.f normalization integral is zero or negative @ x=Mjj=44.3092, mean=mGau=0.665142 +/- 0.945268, sigma=wG=1.53094 +/- 1.15983
And so on…
Which I don’t understand. The PDF (a gaussian plus two landaus) is well behaved and the fit to data looks good. I guess I’m missing something.
Any suggestions would be welcome.