/***************************************************************************** * Project: RooFit * * * * This code was autogenerated by RooClassFactory * *****************************************************************************/ #ifndef MYPDF #define MYPDF #include "RooAbsPdf.h" #include "RooRealProxy.h" #include "RooCategoryProxy.h" #include "RooAbsReal.h" #include "RooAbsCategory.h" class MyPdf : public RooAbsPdf { public: MyPdf() {} ; MyPdf(const char *name, const char *title, RooAbsReal& _x); MyPdf(const char *name, const char *title, RooAbsReal& _x, RooDataHist* _dh1); MyPdf(const MyPdf& other, const char* name=0) ; virtual TObject* clone(const char* newname) const { return new MyPdf(*this,newname); } inline virtual ~MyPdf() { } protected: RooRealProxy x ; RooDataHist* dh1; Double_t evaluate() const ; private: ClassDef(MyPdf,1) // Your description goes here... }; #endif