-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyPdfV1.h
40 lines (31 loc) · 1.08 KB
/
MyPdfV1.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 MYPDFV1
#define MYPDFV1
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
#include "RooCategoryProxy.h"
#include "RooAbsReal.h"
#include "RooAbsCategory.h"
class MyPdfV1 : public RooAbsPdf {
public:
MyPdfV1() {} ;
MyPdfV1(const char *name, const char *title,
RooAbsReal& _x,
RooAbsReal& _mu,
RooAbsReal& _sigma);
MyPdfV1(const MyPdfV1& other, const char* name=0) ;
virtual TObject* clone(const char* newname) const { return new MyPdfV1(*this,newname); }
inline virtual ~MyPdfV1() { }
protected:
RooRealProxy x ;
RooRealProxy mu ;
RooRealProxy sigma ;
Double_t evaluate() const ;
private:
ClassDef(MyPdfV1,1) // Your description goes here...
};
#endif