Go to the source code of this file.
| std::ostream& operator<< |
( |
std::ostream & |
output, |
|
|
const ModelParameter & |
m |
|
) |
| |
- Parameters
-
| [out] | output | the formatted output stream to print the model parameters |
| [in] | m | a reference to an object of type ModelParameter() |
Definition at line 32 of file ModelParameter.cpp.
34 output <<
"ModelParameter name, average, gaussian error, flat error" << std::endl;
35 output << m.
name <<
" " << m.
ave <<
" " << m.
errg <<
" " << m.
errf << std::endl;
std::string name
The name of the model parameter.
double errg
The Gaussian error of the model parameter.
double ave
The average value of the model parameter.
double errf
The flat error of the model parameter.