/***************************************************************************** * Project: RooFit * * * * Copyright (c) 2000-2005, Regents of the University of California * * and Stanford University. All rights reserved. * * * * Redistribution and use in source and binary forms, * * with or without modification, are permitted according to the terms * * listed in LICENSE (http://roofit.sourceforge.net/license.txt) * *****************************************************************************/ #ifndef ROODMYRBW #define ROODMYRBW #include "RooAbsPdf.h" #include "RooRealProxy.h" #include "RooAbsReal.h" class RoodMyRBW : public RooAbsPdf { public: RoodMyRBW(const char *name, const char *title, RooAbsReal& _x, RooAbsReal& _mass, RooAbsReal& _width); RoodMyRBW(const RoodMyRBW& other, const char* name=0) ; virtual TObject* clone(const char* newname) const { return new RoodMyRBW(*this,newname); } inline virtual ~RoodMyRBW() { } protected: RooRealProxy x; RooRealProxy mass; RooRealProxy width; Double_t evaluate() const ; private: ClassDef(RoodMyRBW,0) // Your description goes here... }; #endif