a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
GammaZ.cpp
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#include "GammaZ.h"
9#include "StandardModel.h"
10
12{
13 return SM.Gamma_Z();
14}
15
16
17
19{
21}
22
24{
25 return SM.GammaZ(SM.getLeptons(SM.MU));
26}
27
29{
30 return SM.GammaZ(SM.getLeptons(SM.TAU));
31}
32
34{
35 return SM.GammaZ(SM.getQuarks(SM.UP));
36}
37
39{
40 return SM.GammaZ(SM.getQuarks(SM.CHARM));
41}
42
44{
45 return SM.GammaZ(SM.getQuarks(SM.DOWN));
46}
47
49{
50 return SM.GammaZ(SM.getQuarks(SM.STRANGE));
51}
52
54{
55 return SM.GammaZ(SM.getQuarks(SM.BOTTOM));
56}
57
59{
60 return SM.Gamma_inv();
61}
62
double computeThValue()
The total decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:11
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:53
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:38
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:43
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:18
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:58
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:23
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:48
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:28
double computeThValue()
The partial decay width of the boson, , in units of GeV.
Definition: GammaZ.cpp:33
@ UP
Definition: QCD.h:324
@ BOTTOM
Definition: QCD.h:329
@ DOWN
Definition: QCD.h:325
@ STRANGE
Definition: QCD.h:327
@ CHARM
Definition: QCD.h:326
@ MU
Definition: QCD.h:314
@ ELECTRON
Definition: QCD.h:312
@ TAU
Definition: QCD.h:316
const Particle & getQuarks(const QCD::quark q) const
A get method to access a quark as an object of the type Particle.
Definition: QCD.h:536
virtual const double GammaZ(const Particle f) const
The partial decay width, .
const Particle & getLeptons(const QCD::lepton p) const
A get method to retrieve the member object of a lepton.
virtual const double Gamma_inv() const
The invisible partial decay width of the boson, .
virtual const double Gamma_Z() const
The total decay width of the boson, .
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121