-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVWGPdf.h
45 lines (35 loc) · 1.3 KB
/
VWGPdf.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
/*****************************************************************************
* Project: RooFit *
* *
* This code was autogenerated by RooClassFactory *
*****************************************************************************/
#ifndef VWGPDF
#define VWGPDF
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
#include "RooCategoryProxy.h"
#include "RooAbsReal.h"
#include "RooAbsCategory.h"
class VWGPdf : public RooAbsPdf {
public:
VWGPdf() {} ;
VWGPdf(const char *name, const char *title,
RooAbsReal& _x,
RooAbsReal& _mean,
RooAbsReal& _alpha,
RooAbsReal& _beta);
VWGPdf(const VWGPdf& other, const char* name=0) ;
virtual TObject* clone(const char* newname) const { return new VWGPdf(*this,newname); }
inline virtual ~VWGPdf() { }
//Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
//Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
protected:
RooRealProxy x ;
RooRealProxy mean ;
RooRealProxy alpha ;
RooRealProxy beta ;
Double_t evaluate() const ;
private:
ClassDef(VWGPdf,1) // Your description goes here...
};
#endif