ParamObs.h
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 #ifndef PARAMOBS_H
9 #define PARAMOBS_H
10 
11 #include "ThObservable.h"
12 
21 class ParamObs : public ThObservable {
22 public:
23 
29  ParamObs(const StandardModel& SM, const std::string name);
30 
35  double computeThValue();
36 
37 private:
38  const double& param;
39 };
40 
41 #endif /* PARAMOBS_H */
42 
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 class for setting a parameter as an observable.
Definition: ParamObs.h:21
A model class for the Standard Model.
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:99
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