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