Go to the documentation of this file.00001 #ifndef ROO_CB_EX_GAUSS_SHAPE
00002 #define ROO_CB_EX_GAUSS_SHAPE
00003
00004
00005 #include "RooAbsPdf.h"
00006 #include "RooAbsArg.h"
00007 #include "RooRealProxy.h"
00008 #include "RooRealVar.h"
00009 #include "RooCategoryProxy.h"
00010 #include "RooAbsReal.h"
00011 #include "RooAbsCategory.h"
00012 #include "TMath.h"
00013 #include "Riostream.h"
00014
00015 class RooCBExGaussShape : public RooAbsPdf {
00016 public:
00017 RooCBExGaussShape() {} ;
00018 RooCBExGaussShape(const char *name, const char *title,
00019 RooAbsReal& _m,
00020 RooAbsReal& _m0,
00021 RooAbsReal& _sigma,
00022 RooAbsReal& _alpha,
00023 RooAbsReal& _n,
00024 RooAbsReal& _sigma_2,
00025 RooAbsReal& _frac
00026 );
00027
00028 RooCBExGaussShape(const RooCBExGaussShape& other, const char* name);
00029 inline virtual TObject* clone(const char* newname) const { return new RooCBExGaussShape(*this,newname);}
00030 inline ~RooCBExGaussShape(){}
00031 Double_t evaluate() const ;
00032
00033 ClassDef(RooCBExGaussShape,1)
00034
00035 protected:
00036
00037 RooRealProxy m ;
00038 RooRealProxy m0 ;
00039 RooRealProxy sigma ;
00040 RooRealProxy alpha ;
00041 RooRealProxy n ;
00042 RooRealProxy sigma_2 ;
00043 RooRealProxy frac ;
00044
00045 };
00046
00047 #endif