a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
AlphaMz.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 ALPHAMZ_H
9 #define ALPHAMZ_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
22 class AlphaEmMz : public ThObservable {
23 public:
24 
29  AlphaEmMz(const StandardModel& SM_i)
30  : ThObservable(SM_i)
31  {
32  };
33 
38  double computeThValue();
39 
40 
41 private:
42 
43 
44 };
45 
46 #endif /* ALPHAMZ_H */
47 
ThObservable.h
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:474
AlphaEmMz::AlphaEmMz
AlphaEmMz(const StandardModel &SM_i)
Constructor.
Definition: AlphaMz.h:29
AlphaEmMz::computeThValue
double computeThValue()
The em constant evaluated at the pole, .
Definition: AlphaMz.cpp:11
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25
AlphaEmMz
An observable class for the em constant evaluated at the pole.
Definition: AlphaMz.h:22