Mw.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 HEPfit Collaboration
3  * All rights reserved.
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 
double computeThValue()
The -boson mass, , in units of GeV.
Definition: Mw.cpp:10
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
Mw(const StandardModel &SM_i)
Constructor.
Definition: Mw.h:29
An observable class for the -boson mass.
Definition: Mw.h:22