a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
AFBlepton.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 AFBLEPTON_H
9#define AFBLEPTON_H
10
11#include <stdexcept>
12#include <ThObservable.h>
13
34class AFBlepton : public ThObservable {
35public:
36
42 : ThObservable(SM_i)
43 {
44 };
45
51 double computeThValue();
52
53
54private:
55
56
57};
58
76class AFBelectron : public ThObservable {
77public:
78
84 : ThObservable(SM_i)
85 {
86 };
87
93 double computeThValue();
94
95
96private:
97
98
99};
100
118class AFBmuon : public ThObservable {
119public:
120
125 AFBmuon(const StandardModel& SM_i)
126 : ThObservable(SM_i)
127 {
128 };
129
135 double computeThValue();
136
137
138private:
139
140
141};
142
160class AFBtau : public ThObservable {
161public:
162
167 AFBtau(const StandardModel& SM_i)
168 : ThObservable(SM_i)
169 {
170 };
171
177 double computeThValue();
178
179
180private:
181
182
183};
184
185#endif /* AFBLEPTON_H */
186
An observable class for the forward-backward asymmetry in at the pole.
Definition: AFBlepton.h:76
AFBelectron(const StandardModel &SM_i)
Constructor.
Definition: AFBlepton.h:83
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:20
An observable class for the forward-backward asymmetry in at the pole.
Definition: AFBlepton.h:34
AFBlepton(const StandardModel &SM_i)
Constructor.
Definition: AFBlepton.h:41
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:11
An observable class for the forward-backward asymmetry in at the pole.
Definition: AFBlepton.h:118
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:25
AFBmuon(const StandardModel &SM_i)
Constructor.
Definition: AFBlepton.h:125
An observable class for the forward-backward asymmetry in at the pole.
Definition: AFBlepton.h:160
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:30
AFBtau(const StandardModel &SM_i)
Constructor.
Definition: AFBlepton.h:167
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25