a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
GammaW.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 GAMMAW_H
9 #define GAMMAW_H
10 
11 #include <stdexcept>
12 #include <ThObservable.h>
13 
23 class GammaW : public ThObservable {
24 public:
25 
30  GammaW(const StandardModel& SM_i)
31  : ThObservable(SM_i)
32  {
33  };
34 
40  double computeThValue();
41 
42 };
43 
44 #endif /* GAMMAW_H */
45 
ThObservable.h
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:474
GammaW
An observable class for the total decay width of the boson.
Definition: GammaW.h:23
GammaW::computeThValue
double computeThValue()
The total decay width of the boson, , in units of GeV.
Definition: GammaW.cpp:11
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25
GammaW::GammaW
GammaW(const StandardModel &SM_i)
Constructor.
Definition: GammaW.h:30