a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Rcharm.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 RCHARM_H
9 #define RCHARM_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
31 class Rcharm : public ThObservable {
32 public:
33 
38  Rcharm(const StandardModel& SM_i)
39  : ThObservable(SM_i)
40  {
41  };
42 
47  double computeThValue();
48 
49 
50 private:
51 
52 
53 };
54 
55 #endif /* RCHARM_H */
56 
Rcharm::Rcharm
Rcharm(const StandardModel &SM_i)
Constructor.
Definition: Rcharm.h:38
ThObservable.h
Rcharm::computeThValue
double computeThValue()
The ratio .
Definition: Rcharm.cpp:11
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:477
Rcharm
An observable class for .
Definition: Rcharm.h:31
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25