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