CGEM BOSS 6.6.5.i
BESIII Offline Software System
Loading...
Searching...
No Matches
TLi2.h
Go to the documentation of this file.
1#ifndef RAD_TLi2
2#define RAD_TLi2
3
4class TLi2{
5public:
6 TLi2(){};
7 ~TLi2(){};
8 static double Eval(const double &x){
9 return Li2My(x);
10 };
11 static double Li2Cern(const double &x);
12 static double Li2My(const double &x);
13};
14
15#endif //#ifndef RAD_TLi2
16
Double_t x[10]
Definition TLi2.h:4
static double Li2My(const double &x)
TLi2()
Definition TLi2.h:6
static double Li2Cern(const double &x)
~TLi2()
Definition TLi2.h:7
static double Eval(const double &x)
Definition TLi2.h:8