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