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