a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
DmBd.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 DMBD_H
9#define DMBD_H
10
11#include "ThObservable.h"
12
27class DmBd : public ThObservable {
28public:
29
34 DmBd(const StandardModel& SM_i);
35
41 double computeThValue();
42};
43
44
59class RmBd : public ThObservable {
60public:
61
66 RmBd(const StandardModel& SM_i) : ThObservable(SM_i){};
67
73 double computeThValue();
74};
75
82class CBd : public ThObservable {
83public:
84
85 CBd(const StandardModel& SM_i);
86
87 double computeThValue();
88};
89
96class PhiBd : public ThObservable {
97public:
98
99 PhiBd(const StandardModel& SM_i);
100
101 double computeThValue();
102};
103
104#endif /* DMBD_H */
Model parameter CBd from the NP model NPDF2 @detail The ratio of the absolute value of the $B_d$ mixi...
Definition: DmBd.h:82
CBd(const StandardModel &SM_i)
Definition: DmBd.cpp:26
double computeThValue()
Definition: DmBd.cpp:30
A class for , the difference in mass of between the heavy and light mass eigenstates of the neutral ...
Definition: DmBd.h:27
DmBd(const StandardModel &SM_i)
Constructor.
Definition: DmBd.cpp:12
double computeThValue()
Definition: DmBd.cpp:16
Model parameter PhiBd from the NP model NPDF2 @detail Half the relative phase of the $B_d$ mixing amp...
Definition: DmBd.h:96
double computeThValue()
Definition: DmBd.cpp:39
PhiBd(const StandardModel &SM_i)
Definition: DmBd.cpp:35
A class for , the ratio of the total difference in mass of between the heavy and light mass eigenstat...
Definition: DmBd.h:59
double computeThValue()
Definition: DmBd.cpp:21
RmBd(const StandardModel &SM_i)
Constructor.
Definition: DmBd.h:66
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25