#ifndef ROO_HIST_PDF
#define ROO_HIST_PDF
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
#include "RooSetProxy.h"
#include "RooAICRegistry.h"
class RooRealVar;
class RooAbsReal;
class RooDataHist ;
class RooHistPdf : public RooAbsPdf {
public:
  RooHistPdf(const char *name, const char *title, const RooArgSet& vars, const RooDataHist& dhist, Int_t intOrder=0);
  RooHistPdf(const RooHistPdf& other, const char* name=0);
  virtual TObject* clone(const char* newname) const { return new RooHistPdf(*this,newname); }
  inline virtual ~RooHistPdf() { }
  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
  Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
protected:
  Double_t evaluate() const;
  RooSetProxy  _depList ;   
  RooDataHist* _dataHist ;  
  mutable RooAICRegistry _codeReg ; 
  Int_t        _intOrder ; 
  ClassDef(RooHistPdf,0) 
};
#endif
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.