a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
ModelParameter.cpp File Reference

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &output, const ModelParameter &m)
 

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream &  output,
const ModelParameter m 
)
Parameters
[out]outputthe formatted output stream to print the model parameters
[in]ma reference to an object of type ModelParameter()

Definition at line 32 of file ModelParameter.cpp.

33{
34 output << "ModelParameter name, average, gaussian error, flat error" << std::endl;
35 output << m.name << " " << m.ave << " " << m.errg << " " << m.errf << std::endl;
36 return output;
37}
double errg
The Gaussian error of the model parameter.
double ave
The average value of the model parameter.
std::string name
The name of the model parameter.
double errf
The flat error of the model parameter.