How to use Minuit2 in RooMinuit::contour()

Dear Experts,
I would like to know how to use “Minuit2” when I use:


RooMinuit RooMin(NLL);
RooPlot
myFrameNLL = RooMin.contour(…);

Many thanks,

  • Mauro.

Hi,

If you want to use Minuit2, you should use the RooMinimizer class.

RooMinimizer RooMin(NLL);
RooPlot
myFrameNLL = RooMin.contour(…);

Cheers

Lorenzo