Logo ROOT   6.14/05
Reference Guide
RooNovosibirsk.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitModels *
4  * File: $Id: RooNovosibirsk.h,v 1.7 2007/07/12 20:30:49 wouter Exp $
5  * Authors: *
6  * DB, Dieter Best, UC Irvine, best@slac.stanford.edu *
7  * HT, Hirohisa Tanaka SLAC tanaka@slac.stanford.edu *
8  * *
9  * Copyright (c) 2000-2005, Regents of the University of California *
10  * and Stanford University. All rights reserved. *
11  * *
12  * Redistribution and use in source and binary forms, *
13  * with or without modification, are permitted according to the terms *
14  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15  *****************************************************************************/
16 #ifndef ROO_NOVOSIBIRSK
17 #define ROO_NOVOSIBIRSK
18 
19 #include "RooAbsPdf.h"
20 #include "RooRealProxy.h"
21 
22 class RooRealVar;
23 class RooAbsReal;
24 
25 class RooNovosibirsk : public RooAbsPdf {
26 public:
27  // Your constructor needs a name and title and then a list of the
28  // dependent variables and parameters used by this PDF. Use an
29  // underscore in the variable names to distinguish them from your
30  // own local versions.
32  RooNovosibirsk(const char *name, const char *title,
33  RooAbsReal& _x, RooAbsReal& _peak,
34  RooAbsReal& _width, RooAbsReal& _tail);
35 
36  RooNovosibirsk(const RooNovosibirsk& other,const char* name=0) ;
37 
38  virtual TObject* clone(const char* newname) const { return new RooNovosibirsk(*this,newname); }
39 
40  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
41  Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
42 
43  // An empty constructor is usually ok
44  inline virtual ~RooNovosibirsk() { }
45 
46 protected:
51  Double_t evaluate() const;
52 
53 private:
54  ClassDef(RooNovosibirsk,1) // Novosibirsk PDF
55 };
56 
57 #endif
RooRealProxy peak
RooNovosibirsk implements the Novosibirsk function.
int Int_t
Definition: RtypesCore.h:41
RooRealProxy width
#define ClassDef(name, id)
Definition: Rtypes.h:320
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=0) const
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported...
RooRealVar represents a fundamental (non-derived) real valued object.
Definition: RooRealVar.h:36
Double_t evaluate() const
If tail=eta=0 the Belle distribution becomes gaussian.
RooRealProxy tail
RooRealProxy x
double Double_t
Definition: RtypesCore.h:55
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition: RooAbsReal.h:53
Mother of all ROOT objects.
Definition: TObject.h:37
RooAbsPdf is the abstract interface for all probability density functions The class provides hybrid a...
Definition: RooAbsPdf.h:41
virtual ~RooNovosibirsk()
virtual TObject * clone(const char *newname) const
RooRealProxy is the concrete proxy for RooAbsReal objects A RooRealProxy is the general mechanism to ...
Definition: RooRealProxy.h:23
Double_t analyticalIntegral(Int_t code, const char *rangeName=0) const
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral. ...
char name[80]
Definition: TGX11.cxx:109