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