This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRooGausDExp.h
53 lines (42 loc) · 1.57 KB
/
RooGausDExp.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
41
42
43
44
45
46
47
48
49
50
51
52
53
/*****************************************************************************
* Project: RooFit *
* *
* This code was autogenerated by RooClassFactory *
*****************************************************************************/
#ifndef RooGausDExp_hpp
#define RooGausDExp_hpp
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
#include "RooCategoryProxy.h"
#include "RooAbsReal.h"
#define _AN_INT_
using namespace RooFit;
class RooGausDExp : public RooAbsPdf {
public:
RooGausDExp() {} ;
RooGausDExp(const char *name, const char *title,
RooAbsReal& _x,
RooAbsReal& _mu,
RooAbsReal& _sig,
RooAbsReal& _tau0,
RooAbsReal& _tau1);
RooGausDExp(const RooGausDExp& other, const char* name=0) ;
virtual TObject* clone(const char* newname) const { return new RooGausDExp(*this,newname); }
#ifdef _AN_INT_
virtual Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const;
virtual Double_t analyticalIntegral(Int_t code,const char* rangeName=0) const;
#endif
inline virtual ~RooGausDExp() { }
protected:
double IntExp(double x,double tau) const;
double IntGaus(double x) const;
RooRealProxy x ;
RooRealProxy mu ;
RooRealProxy sig ;
RooRealProxy tau0 ;
RooRealProxy tau1 ;
Double_t evaluate() const ;
private:
ClassDef(RooGausDExp,1) // Your description goes here...
};
#endif /* RooDSCB_hpp */