sin2thetaEff.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 SIN2THETAEFF_H
9 #define SIN2THETAEFF_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
28 class sin2thetaEff : public ThObservable {
29 public:
30 
36  : ThObservable(SM_i)
37  {
38  };
39 
45  double computeThValue();
46 
47 
48 private:
49 
50 
51 };
52 
53 #endif /* SIN2THETAEFF_H */
54 
double computeThValue()
The leptonic effective weak mixing angle at the the pole.
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 leptonic effective weak mixing angle at the pole.
Definition: sin2thetaEff.h:28
sin2thetaEff(const StandardModel &SM_i)
Constructor.
Definition: sin2thetaEff.h:35