#include <RooMinimizerOpt.h>
Public Member Functions | |
Double_t | edm () |
RooMinimizerOpt (RooAbsReal &function) |
Definition at line 12 of file RooMinimizerOpt.h.
RooMinimizerOpt::RooMinimizerOpt | ( | RooAbsReal & | function | ) |
Definition at line 10 of file RooMinimizerOpt.cc.
: RooMinimizer(function) { delete _fcn; _fcn = new RooMinimizerFcnOpt(_func,this,_verbose); setEps(ROOT::Math::MinimizerOptions::DefaultTolerance()); }
Double_t RooMinimizerOpt::edm | ( | ) |
Definition at line 19 of file RooMinimizerOpt.cc.
Referenced by nllutils::robustMinimize().
{ if (_theFitter == 0) throw std::logic_error("Must have done a fit before calling edm()"); return _theFitter->Result().Edm(); }