-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dalitz_contour.cxx
50 lines (39 loc) · 1.34 KB
/
Dalitz_contour.cxx
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
/*****************************************************************************
* Project: RooFit *
* *
* This code was autogenerated by RooClassFactory *
*****************************************************************************/
// Your description goes here...
#include "Riostream.h"
#include "Dalitz_contour.h"
#include "RooAbsReal.h"
#include "RooAbsCategory.h"
#include <math.h>
#include "TMath.h"
ClassImp(Dalitz_contour)
Dalitz_contour::Dalitz_contour(const char *name, const char *title,
RooAbsReal& _mKP,
RooAbsReal& _mPsiP,
const Bool_t _massSquared,
const TString& _psi_nS
) :
RooAbsPdf(name,title),
mKP("mKP","mKP",this,_mKP),
mPsiP("mPsiP","mPsiP",this,_mPsiP),
massSquared(_massSquared),
psi_nS(_psi_nS)
{
}
Dalitz_contour::Dalitz_contour(const Dalitz_contour& other, const char* name) :
RooAbsPdf(other,name),
mKP("mKP",this,other.mKP),
mPsiP("mPsiP",this,other.mPsiP),
massSquared(other.massSquared),
psi_nS(other.psi_nS)
{
}
Double_t Dalitz_contour::evaluate() const
{
// ENTER EXPRESSION IN TERMS OF VARIABLE ARGUMENTS HERE
return Dalitz_contour_host(mKP, mPsiP, massSquared, psi_nS.Atoi());
}