a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Abottom.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 ABOTTOM_H
9 #define ABOTTOM_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
27 class Abottom : public ThObservable {
28 public:
29 
34  Abottom(const StandardModel& SM_i)
35  : ThObservable(SM_i)
36  {
37  };
38 
44  double computeThValue();
45 
46 
47 private:
48 
49 
50 };
51 
52 #endif /* ABOTTOM_H */
53 
ThObservable.h
Abottom::Abottom
Abottom(const StandardModel &SM_i)
Constructor.
Definition: Abottom.h:34
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:477
Abottom
An observable class for the left-right asymmetry in at the pole.
Definition: Abottom.h:27
Abottom::computeThValue
double computeThValue()
The left-right asymmetry for at the pole, .
Definition: Abottom.cpp:11
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25