a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
EffectiveEDMcouplings.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 HEPfit Collaboration
3  *
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #ifndef EFFECTIVEEDMCOUPLINGS_H
9 #define EFFECTIVEEDMCOUPLINGS_H
10 
11 #include <gslpp.h>
12 
13 #define LEPS 1.e-5 // tolerance in the limit of S(x,y) to S(x)
14 
15 class StandardModel;
16 
27 public:
32 
36  virtual ~EffectiveEDMcouplings();
37 
43  virtual double kappa_t() ;
44 
50  virtual double kappa_b() ;
51 
52 protected:
53 
54 private:
55 
56 // const StandardModel & SM;
57 
58 
59 };
60 
61 #endif /* EFFECTIVEEDMCOUPLINGS_H */
62 
EffectiveEDMcouplings::kappa_b
virtual double kappa_b()
Definition: EffectiveEDMcouplings.cpp:22
EffectiveEDMcouplings::kappa_t
virtual double kappa_t()
Definition: EffectiveEDMcouplings.cpp:17
EffectiveEDMcouplings::~EffectiveEDMcouplings
virtual ~EffectiveEDMcouplings()
The default destructor.
Definition: EffectiveEDMcouplings.cpp:14
gslpp.h
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:477
EffectiveEDMcouplings
A class for effective EDM couplings.
Definition: EffectiveEDMcouplings.h:26
EffectiveEDMcouplings::EffectiveEDMcouplings
EffectiveEDMcouplings(const StandardModel &SM_i)
The default constructor.
Definition: EffectiveEDMcouplings.cpp:10