a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Rinv.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 R_INV_H
9 #define R_INV_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
33 class Rinv : public ThObservable {
34 public:
35 
40  Rinv(const StandardModel& SM_i)
41  : ThObservable(SM_i)
42  {
43  };
44 
50  double computeThValue();
51 
52 
53 private:
54 
55 
56 };
57 
58 #endif /* R_INV_H */
59 
Rinv
An observable class for the ratio of the invisible decay width and the leptonic (electron) decay widt...
Definition: Rinv.h:33
ThObservable.h
Rinv::Rinv
Rinv(const StandardModel &SM_i)
Constructor.
Definition: Rinv.h:40
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:477
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25
Rinv::computeThValue
double computeThValue()
The ratio of the invisible and leptonic (electron) decay widths of the boson, .
Definition: Rinv.cpp:11