a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
DmBs.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 DMBS_H
9 #define DMBS_H
10 
11 #include "ThObservable.h"
12 #include "AmpDB2.h"
13 
28 class DmBs : public ThObservable, AmpDB2 {
29 public:
30 
35  DmBs(const StandardModel& SM_i) : ThObservable(SM_i), AmpDB2(SM_i) {};
36 
42  double computeThValue();
43 };
44 
45 
60 class RmBs : public ThObservable, AmpDB2 {
61 public:
62 
67  RmBs(const StandardModel& SM_i) : ThObservable(SM_i), AmpDB2(SM_i) {};
68 
74  double computeThValue();
75 };
76 
77 #endif /* DMBS_H */
AmpDB2
Amplitude Class
Definition: AmpDB2.h:37
ThObservable.h
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:474
RmBs
A class for , the ratio of the total difference in mass of between the heavy and light mass eigenstat...
Definition: DmBs.h:60
RmBs::computeThValue
double computeThValue()
Definition: DmBs.cpp:16
AmpDB2.h
DmBs::DmBs
DmBs(const StandardModel &SM_i)
Constructor.
Definition: DmBs.h:35
DmBs::computeThValue
double computeThValue()
Definition: DmBs.cpp:11
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25
DmBs
Definition: DmBs.h:28
RmBs::RmBs
RmBs(const StandardModel &SM_i)
Constructor.
Definition: DmBs.h:67