Abottom.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 ABOTTOM_H
9 #define ABOTTOM_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
34 class Abottom : public ThObservable {
35 public:
36 
41  Abottom(const StandardModel& SM_i)
42  : ThObservable(SM_i)
43  {
44  };
45 
51  double computeThValue();
52 
53 
54 private:
55 
56 
57 };
58 
63 #endif /* ABOTTOM_H */
64 
double computeThValue()
The left-right asymmetry for at the pole, .
Definition: Abottom.cpp:10
Abottom(const StandardModel &SM_i)
Constructor.
Definition: Abottom.h:41
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
An observable class for the left-right asymmetry in at the pole.
Definition: Abottom.h:34