a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Mw_dRho.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 HEPfit Collaboration
3  *
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #ifndef MW_DRHO_H
9 #define MW_DRHO_H
10 
11 #include <ThObservable.h>
12 
13 
14 #include "SUSY.h"
15 
24 class Mw_dRho : public ThObservable {
25 public:
26 
27  Mw_dRho(const StandardModel& SM_i)
28  : ThObservable(SM_i)
29  {
30  };
31 
32  double computeThValue()
33  {
34  return (static_cast<const SUSY*> (&SM))->Mw_dRho();
35  };
36 
37 private:
38 
39 };
40 
41 #endif /* MW_DRHO_H */
42 
Mw_dRho::computeThValue
double computeThValue()
Definition: Mw_dRho.h:32
Mw_dRho
A class for the W-boson mass in the delta rho approximation.
Definition: Mw_dRho.h:24
ThObservable.h
Mw_dRho::Mw_dRho
Mw_dRho(const StandardModel &SM_i)
Definition: Mw_dRho.h:27
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:474
ThObservable::SM
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25
SUSY.h