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