Line | |
---|
1 | #ifndef MARS_MMath
|
---|
2 | #define MARS_MMath
|
---|
3 |
|
---|
4 | #ifndef ROOT_TMath
|
---|
5 | #include <TMath.h>
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MMath : public TMath
|
---|
9 | {
|
---|
10 | public:
|
---|
11 | static Double_t GaussProb(Double_t x, Double_t sigma, Double_t mean=0);
|
---|
12 |
|
---|
13 | static Double_t Significance(Double_t s, Double_t b);
|
---|
14 | static Double_t SignificanceSym(Double_t s, Double_t b);
|
---|
15 | static Double_t SignificanceLiMa(Double_t s, Double_t b, Double_t alpha=1);
|
---|
16 | static Double_t SignificanceLiMaSigned(Double_t s, Double_t b, Double_t alpha=1);
|
---|
17 |
|
---|
18 | ClassDef(MMath, 0)
|
---|
19 | };
|
---|
20 |
|
---|
21 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.