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
22class AlphaEmMz : public ThObservable {
23public:
24
30 : ThObservable(SM_i)
31 {
32 };
33
38 double computeThValue();
39
40
41private:
42
43
44};
45
46
55class DAlpha5hadMz : public ThObservable {
56public:
57
63 : ThObservable(SM_i)
64 {
65 };
66
71 double computeThValue();
72
73
74private:
75
76
77};
78
79
80#endif /* ALPHAMZ_H */
81
An observable class for the em constant evaluated at the pole.
Definition: AlphaMz.h:22
AlphaEmMz(const StandardModel &SM_i)
Constructor.
Definition: AlphaMz.h:29
double computeThValue()
The em constant evaluated at the pole, .
Definition: AlphaMz.cpp:11
An observable class for the 5-quark contribution to the running of the em constant to the pole.
Definition: AlphaMz.h:55
DAlpha5hadMz(const StandardModel &SM_i)
Constructor.
Definition: AlphaMz.h:62
double computeThValue()
The 5-quark contribution to the running of the em constant to the pole, .
Definition: AlphaMz.cpp:17
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25