Epsilon2.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 HEPfit Collaboration
3  * All rights reserved.
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #ifndef EPSILON2_H
9 #define EPSILON2_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
22 class Epsilon2 : public ThObservable {
23 public:
24 
29  Epsilon2(const StandardModel& SM_i)
30  : ThObservable(SM_i)
31  {
32  };
33 
38  double computeThValue()
39  {
40  return SM.epsilon2();
41  }
42 
43 
44 private:
45 
46 
47 };
48 
49 #endif /* EPSILON2_H */
virtual double epsilon2() const
The SM contribution to the epsilon parameter .
An observable class for the parameter.
Definition: Epsilon2.h:22
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
Epsilon2(const StandardModel &SM_i)
Constructor.
Definition: Epsilon2.h:29
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:99
double computeThValue()
To be added.
Definition: Epsilon2.h:38