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
27class DmBs : public ThObservable {
28public:
29
34 DmBs(const StandardModel& SM_i);
35
41 double computeThValue();
42};
43
44
59class RmBs : public ThObservable {
60public:
61
66 RmBs(const StandardModel& SM_i) : ThObservable(SM_i){};
67
73 double computeThValue();
74};
75
82class CBs : public ThObservable {
83public:
84
85 CBs(const StandardModel& SM_i);
86
87 double computeThValue();
88};
89
96class PhiBs : public ThObservable {
97public:
98
99 PhiBs(const StandardModel& SM_i);
100
101 double computeThValue();
102};
103
104#endif /* DMBS_H */
Model parameter CBs from the NP model NPDF2 @detail The ratio of the absolute value of the $B_s$ mixi...
Definition: DmBs.h:82
CBs(const StandardModel &SM_i)
Definition: DmBs.cpp:26
double computeThValue()
Definition: DmBs.cpp:30
Definition: DmBs.h:27
double computeThValue()
Definition: DmBs.cpp:16
DmBs(const StandardModel &SM_i)
Constructor.
Definition: DmBs.cpp:12
Model parameter PhiBs from the NP model NPDF2 @detail Half the relative phase of the $B_s$ mixing amp...
Definition: DmBs.h:96
PhiBs(const StandardModel &SM_i)
Definition: DmBs.cpp:35
double computeThValue()
Definition: DmBs.cpp:39
A class for , the ratio of the total difference in mass of between the heavy and light mass eigenstat...
Definition: DmBs.h:59
RmBs(const StandardModel &SM_i)
Constructor.
Definition: DmBs.h:66
double computeThValue()
Definition: DmBs.cpp:21
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25