a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Epsilonb.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 EPSILONB_H
9#define EPSILONB_H
10
11#include <stdexcept>
12#include <ThObservable.h>
13
22class Epsilonb : public ThObservable {
23public:
24
29 Epsilonb(const StandardModel& SM_i)
30 : ThObservable(SM_i)
31 {
32 };
33
39 {
40 return SM.epsilonb();
41 }
42
43
44private:
45
46
47};
48
49#endif /* EPSILONB_H */
An observable class for the parameter.
Definition: Epsilonb.h:22
Epsilonb(const StandardModel &SM_i)
Constructor.
Definition: Epsilonb.h:29
double computeThValue()
To be added.
Definition: Epsilonb.h:38
A model class for the Standard Model.
virtual const double epsilonb() const
The SM contribution to the epsilon parameter .
A class for a model prediction of an observable.
Definition: ThObservable.h:25
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121