| library: libRooFit #include "RooBreitWigner.h"
 | 
RooBreitWigner
class description - source file - inheritance tree (.pdf)
    protected:
      virtual Double_t evaluate() const
    public:
                       RooBreitWigner(const char* name, const char* title, RooAbsReal& _x, RooAbsReal& _mean, RooAbsReal& _width)
                       RooBreitWigner(const RooBreitWigner& other, const char* name = "0")
               virtual ~RooBreitWigner()
      virtual Double_t analyticalIntegral(Int_t code, const char* rangeName = "0") const
        static TClass* Class()
      virtual TObject* clone(const char* newname) const
         virtual Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName = "0") const
       virtual TClass* IsA() const
          virtual void ShowMembers(TMemberInspector& insp, char* parent)
          virtual void Streamer(TBuffer& b)
                  void StreamerNVirtual(TBuffer& b)
    protected:
      RooRealProxy x      
      RooRealProxy mean   
      RooRealProxy width  
 RooBreitWigner(const char *name, const char *title,
			 RooAbsReal& _x, RooAbsReal& _mean,
			 RooAbsReal& _width) :
  RooAbsPdf(name,title),
  x("x","Dependent",this,_x),
  mean("mean","Mean",this,_mean),
  width("width","Width",this,_width)
 RooBreitWigner(const RooBreitWigner& other, const char* name) : 
  RooAbsPdf(other,name), x("x",this,other.x), mean("mean",this,other.mean),
  width("width",this,other.width)
Double_t evaluate() const
Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* /*rangeName*/) const 
Double_t analyticalIntegral(Int_t code, const char* rangeName) const 
Inline Functions
               void ~RooBreitWigner()
           TObject* clone(const char* newname) const
            TClass* Class()
            TClass* IsA() const
               void ShowMembers(TMemberInspector& insp, char* parent)
               void Streamer(TBuffer& b)
               void StreamerNVirtual(TBuffer& b)
Last update: Tue Jun 28 18:11:11 2005
Copyright  (c) 2000-2005, Regents of the University of California          *
ROOT page - Class index - Class Hierarchy - Top of the page
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.