#ifndef ROO_MINUIT
#define ROO_MINUIT
#include "TObject.h"
#include "TStopwatch.h"
#include <fstream>
class RooAbsReal ;
class RooFitResult ;
class RooArgList ;
class RooRealVar ;
class RooArgSet ;
class TVirtualFitter ;
class TH2F ;
class RooPlot ;
void RooMinuitGlue(Int_t& , Double_t* , Double_t &f, Double_t *par, Int_t ) ;
class RooMinuit : public TObject {
public:
RooMinuit(RooAbsReal& function) ;
virtual ~RooMinuit() ;
enum Strategy { Speed=0, Balance=1, Robustness=2 } ;
enum PrintLevel { None=-1, Reduced=0, Normal=1, ExtraForProblem=2, Maximum=3 } ;
void setStrategy(Int_t strat) ;
void setErrorLevel(Double_t level) ;
void setEps(Double_t eps) ;
void optimizeConst(Bool_t flag) ;
void setEvalErrorWall(Bool_t flag) { _doEvalErrorWall = flag ; }
RooFitResult* fit(const char* options) ;
Int_t migrad() ;
Int_t hesse() ;
Int_t minos() ;
Int_t minos(const RooArgSet& minosParamList) ;
Int_t seek() ;
Int_t simplex() ;
Int_t improve() ;
RooFitResult* save(const char* name=0, const char* title=0) ;
RooPlot* contour(RooRealVar& var1, RooRealVar& var2,
Double_t n1=1, Double_t n2=2, Double_t n3=0,
Double_t n4=0, Double_t n5=0, Double_t n6=0) ;
Int_t setPrintLevel(Int_t newLevel) ;
void setNoWarn() ;
Int_t setWarnLevel(Int_t newLevel) ;
void setPrintEvalErrors(Int_t numEvalErrors) { _printEvalErrors = numEvalErrors ; }
void setVerbose(Bool_t flag=kTRUE) { _verbose = flag ; }
void setProfile(Bool_t flag=kTRUE) { _profile = flag ; }
Bool_t setLogFile(const char* logfile=0) ;
static void cleanup() ;
protected:
friend void RooMinuitGlue(Int_t &np, Double_t *gin, Double_t &f, Double_t *par, Int_t flag) ;
void profileStart() ;
void profileStop() ;
Bool_t synchronize(Bool_t verbose) ;
void backProp() ;
inline Int_t getNPar() const { return _nPar ; }
inline ofstream* logfile() const { return _logfile ; }
inline Double_t& maxFCN() { return _maxFCN ; }
Double_t getPdfParamVal(Int_t index) ;
Double_t getPdfParamErr(Int_t index) ;
virtual Bool_t setPdfParamVal(Int_t index, Double_t value, Bool_t verbose=kFALSE) ;
void setPdfParamErr(Int_t index, Double_t value) ;
void setPdfParamErr(Int_t index, Double_t loVal, Double_t hiVal) ;
void clearPdfParamAsymErr(Int_t index) ;
private:
Int_t _printLevel ;
Int_t _warnLevel ;
Int_t _status ;
Bool_t _optConst ;
Bool_t _profile ;
Bool_t _handleLocalErrors ;
Int_t _numBadNLL ;
Int_t _nPar ;
Int_t _printEvalErrors ;
Bool_t _doEvalErrorWall ;
RooArgList* _floatParamList ;
RooArgList* _initFloatParamList ;
RooArgList* _constParamList ;
RooArgList* _initConstParamList ;
RooAbsReal* _func ;
Double_t _maxFCN ;
ofstream* _logfile ;
Bool_t _verbose ;
TStopwatch _timer ;
TStopwatch _cumulTimer ;
static TVirtualFitter *_theFitter ;
RooMinuit(const RooMinuit&) ;
ClassDef(RooMinuit,0)
} ;
#endif
Last change: Tue Nov 25 08:47:40 2008
Last generated: 2008-11-25 08:47
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.