#ifndef ROOPROFILELL
#define ROOPROFILELL
#include "RooAbsReal.h"
#include "RooRealProxy.h"
#include "RooSetProxy.h"
#include <map>
#include <string>
class RooMinuit ;
class RooProfileLL : public RooAbsReal {
public:
RooProfileLL(const char *name, const char *title, RooAbsReal& nll, const RooArgSet& observables);
RooProfileLL(const RooProfileLL& other, const char* name=0) ;
virtual TObject* clone(const char* newname) const { return new RooProfileLL(*this,newname); }
virtual ~RooProfileLL() ;
void setAlwaysStartFromMin(Bool_t flag) { _startFromMin = flag ; }
Bool_t alwaysStartFromMin() const { return _startFromMin ; }
RooAbsReal& nll() { return (RooAbsReal&) _nll.arg() ; }
const RooArgSet& bestFitParams() const ;
virtual RooAbsReal* createProfile(const RooArgSet& paramsOfInterest) ;
protected:
void validateAbsMin() const ;
RooRealProxy _nll ;
RooSetProxy _obs ;
RooSetProxy _par ;
Bool_t _startFromMin ;
TIterator* _piter ;
TIterator* _oiter ;
mutable RooMinuit* _minuit ;
mutable Bool_t _absMinValid ;
mutable Double_t _absMin ;
mutable RooArgSet _paramAbsMin ;
mutable std::map<std::string,bool> _paramFixed ;
Double_t evaluate() const ;
private:
ClassDef(RooProfileLL,0)
};
#endif
Last change: Fri Nov 21 10:53:32 2008
Last generated: 2008-11-21 10:53
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.