A model class for the Standard Model.
A class for a model prediction of an observable.
double max
the bin maximum.
void setBinMax(double max)
A set method to set the maximum value of the bin.
void setParametersForObservable(std::vector< std::string > parametersForObservable_i)
A set method to get the parameters for the specific observable.
const std::vector< std::string > getParametersForObservable()
A get method to get the parameters for the specific observable.
double min
The bin minimum.
virtual ~ThObservable()
The default destructor.
ThObservable(const StandardModel &SM_i)
Constructor.
void setBinMin(double min)
A set method to set the minimum value of the bin.
const StandardModel & getModel()
A get method to get the model.
virtual double computeThValue()=0
A member to be overloaded by the respective theory observable. class that calculates the value of the...
double getBinMin()
A get method to get the minimum value of the bin.
ThObservable(const ThObservable &orig)
The copy constructor.
std::vector< std::string > parametersForObservable
a vector of parameter namesfor the specific observable
double getBinMax()
A get method to get the maximum value of the bin.
const StandardModel & SM
A reference to an object of StandardMode class.