CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HGGRooPdfs.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * Package: RooFitModels *
4  * File: $Id: HGGRooPdfs.h,v 1.1 2012/02/10 15:10:48 gpetrucc Exp $
5  * Authors: *
6  * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7  * DK, David Kirkby, UC Irvine, dkirkby@uci.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_EXPONENTIAL
17 #define ROO_EXPONENTIAL
18 
19 #include "RooAbsPdf.h"
20 #include "RooRealProxy.h"
21 
22 class RooRealVar;
23 class RooAbsReal;
24 
25 class RooPower : public RooAbsPdf {
26 public:
27  RooPower() {} ;
28  RooPower(const char *name, const char *title,
29  RooAbsReal& _x, RooAbsReal& _c);
30  RooPower(const RooPower& other, const char* name=0);
31  virtual TObject* clone(const char* newname) const { return new RooPower(*this,newname); }
32  inline virtual ~RooPower() { }
33 
34  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
35  Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
36 
37 protected:
38  RooRealProxy x;
39  RooRealProxy c;
40 
41  Double_t evaluate() const;
42 
43 private:
44  ClassDef(RooPower,1) // Exponential PDF
45 };
46 
47 #endif
Double_t evaluate() const
Definition: HGGRooPdfs.cc:54
RooRealProxy c
Definition: HGGRooPdfs.h:39
RooRealProxy x
Definition: HGGRooPdfs.h:38
virtual TObject * clone(const char *newname) const
Definition: HGGRooPdfs.h:31
RooPower()
Definition: HGGRooPdfs.h:27
virtual ~RooPower()
Definition: HGGRooPdfs.h:32
Double_t analyticalIntegral(Int_t code, const char *rangeName=0) const
Definition: HGGRooPdfs.cc:69
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=0) const
Definition: HGGRooPdfs.cc:61