AFBlepton.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 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 
59 #endif /* AFBLEPTON_H */
60 
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:10
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
AFBlepton(const StandardModel &SM_i)
Constructor.
Definition: AFBlepton.h:41
An observable class for the forward-backward asymmetry in at the pole.
Definition: AFBlepton.h:34