a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Rlepton.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 RLEPTON_H
9 #define RLEPTON_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
33 class Rlepton : public ThObservable {
34 public:
35 
40  Rlepton(const StandardModel& SM_i)
41  : ThObservable(SM_i)
42  {
43  };
44 
49  double computeThValue();
50 
51 
52 private:
53 
54 
55 };
56 
73 class Relectron : public ThObservable {
74 public:
75 
80  Relectron(const StandardModel& SM_i)
81  : ThObservable(SM_i)
82  {
83  };
84 
89  double computeThValue();
90 
91 
92 private:
93 
94 
95 };
96 
113 class Rmuon : public ThObservable {
114 public:
115 
120  Rmuon(const StandardModel& SM_i)
121  : ThObservable(SM_i)
122  {
123  };
124 
129  double computeThValue();
130 
131 
132 private:
133 
134 
135 };
136 
153 class Rtau : public ThObservable {
154 public:
155 
160  Rtau(const StandardModel& SM_i)
161  : ThObservable(SM_i)
162  {
163  };
164 
169  double computeThValue();
170 
171 
172 private:
173 
174 
175 };
176 
177 #endif /* RLEPTON_H */
178 
ThObservable.h
Relectron
An observable class for .
Definition: Rlepton.h:73
Rtau
An observable class for .
Definition: Rlepton.h:153
Rmuon::computeThValue
double computeThValue()
The ratio .
Definition: Rlepton.cpp:25
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:477
Rlepton::computeThValue
double computeThValue()
The ratio .
Definition: Rlepton.cpp:11
Rtau::computeThValue
double computeThValue()
The ratio .
Definition: Rlepton.cpp:30
Rlepton::Rlepton
Rlepton(const StandardModel &SM_i)
Constructor.
Definition: Rlepton.h:40
Relectron::computeThValue
double computeThValue()
The ratio .
Definition: Rlepton.cpp:20
Rmuon
An observable class for .
Definition: Rlepton.h:113
Rmuon::Rmuon
Rmuon(const StandardModel &SM_i)
Constructor.
Definition: Rlepton.h:120
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25
Relectron::Relectron
Relectron(const StandardModel &SM_i)
Constructor.
Definition: Rlepton.h:80
Rlepton
An observable class for .
Definition: Rlepton.h:33
Rtau::Rtau
Rtau(const StandardModel &SM_i)
Constructor.
Definition: Rlepton.h:160