a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Rinv.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 R_INV_H
9#define R_INV_H
10
11#include <stdexcept>
12#include <ThObservable.h>
13
33class Rinv : public ThObservable {
34public:
35
40 Rinv(const StandardModel& SM_i)
41 : ThObservable(SM_i)
42 {
43 };
44
50 double computeThValue();
51
52
53private:
54
55
56};
57
58#endif /* R_INV_H */
59
An observable class for the ratio of the invisible decay width and the leptonic (electron) decay widt...
Definition: Rinv.h:33
Rinv(const StandardModel &SM_i)
Constructor.
Definition: Rinv.h:40
double computeThValue()
The ratio of the invisible and leptonic (electron) decay widths of the boson, .
Definition: Rinv.cpp:11
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25