-
Notifications
You must be signed in to change notification settings - Fork 429
Expand file tree
/
Copy pathExpGaussExp.hpp
More file actions
40 lines (30 loc) · 1.16 KB
/
ExpGaussExp.hpp
File metadata and controls
40 lines (30 loc) · 1.16 KB
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 EXPGAUSSEXP
#define EXPGAUSSEXP
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
#include "RooCategoryProxy.h"
#include "RooAbsReal.h"
#include "RooAbsCategory.h"
class ExpGaussExp : public RooAbsPdf {
public:
ExpGaussExp() {} ;
ExpGaussExp(const char *name, const char *title, RooAbsReal& _x, RooAbsReal& _p0, RooAbsReal& _p1, RooAbsReal& _p2, RooAbsReal& _p3);
ExpGaussExp(const ExpGaussExp& other, const char* name=0) ;
virtual TObject* clone(const char* newname) const { return new ExpGaussExp(*this,newname); }
inline virtual ~ExpGaussExp() { }
protected:
RooRealProxy x ;
RooRealProxy p0 ;
RooRealProxy p1 ;
RooRealProxy p2 ;
RooRealProxy p3 ;
Double_t evaluate() const ;
private:
ClassDef(ExpGaussExp,1) // Your description goes here...
};
#endif