ParamObs.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 HEPfit Collaboration
3  * All rights reserved.
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #include "ParamObs.h"
9 
10 ParamObs::ParamObs(const StandardModel& SM_i, std::string name)
11 : ThObservable(SM_i), param(SM_i.getModelParam(name))
12 {
13 }
14 
16 {
17  return param;
18 }
ParamObs(const StandardModel &SM, const std::string name)
Constructor.
Definition: ParamObs.cpp:10
A class for a model prediction of an observable.
Definition: ThObservable.h:22
A model class for the Standard Model.
const double & param
The parameter.
Definition: ParamObs.h:38
double computeThValue()
the method to compute the theory value of the parameter
Definition: ParamObs.cpp:15