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
22class Mw : public ThObservable {
23public:
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
An observable class for the -boson mass.
Definition: Mw.h:22
Mw(const StandardModel &SM_i)
Constructor.
Definition: Mw.h:29
double computeThValue()
The -boson mass, , in units of GeV.
Definition: Mw.cpp:11
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25