Rlepton.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 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 
57 #endif /* RLEPTON_H */
58 
double computeThValue()
The ratio .
Definition: Rlepton.cpp:10
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
An observable class for .
Definition: Rlepton.h:33
Rlepton(const StandardModel &SM_i)
Constructor.
Definition: Rlepton.h:40