-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRooExpolPdf.h
40 lines (32 loc) · 1.13 KB
/
RooExpolPdf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*****************************************************************************
* Project: RooFit *
* *
* This code was autogenerated by RooClassFactory *
*****************************************************************************/
#ifndef ROOEXPOLPDF
#define ROOEXPOLPDF
#include "RooFit.h"
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
#include "RooCategoryProxy.h"
#include "RooAbsReal.h"
#include "RooAbsCategory.h"
class RooExpolPdf : public RooAbsPdf {
public:
RooExpolPdf() {} ;
RooExpolPdf(const char *name, const char *title,
RooAbsReal& _m,
RooAbsReal& _p1,
RooAbsReal& _p2);
RooExpolPdf(const RooExpolPdf& other, const char* name=0) ;
virtual TObject* clone(const char* newname) const { return new RooExpolPdf(*this,newname); }
inline virtual ~RooExpolPdf() { }
protected:
RooRealProxy m;
RooRealProxy p1;
RooRealProxy p2;
Double_t evaluate() const ;
private:
ClassDef(RooExpolPdf,1) // Your description goes here...
};
#endif