MINT2
Eff3piSymmetric.h
Go to the documentation of this file.
1 #ifndef MINT_EFF_THREE_PI_SYMMETRIC_HH
2 #define MINT_EFF_THREE_PI_SYMMETRIC_HH
3 
5 #include "Mint/IDalitzEvent.h"
6 #include "math.h"
7 
8 using namespace MINT;
9 using namespace std;
10 
11 class Eff3piSymmetric : public IReturnRealForEvent<IDalitzEvent> {
12  double m_p0;
13  double m_p1;
14  double m_p2;
15  double m_p3;
16 
17  public:
18  Eff3piSymmetric(double p0 = 0.599125, double p1 = 5.25471 * pow(10,-8),
19  double p2 = -5.83156 * pow(10,-14), double p3 = -1.80603 * pow(10,-21));
20  virtual double RealVal(IDalitzEvent& evt);
21 
22 };
23 
24 #endif
25 
26