ModelParameter.cpp File Reference
#include "ModelParameter.h"
Include dependency graph for ModelParameter.cpp:

Go to the source code of this file.

Functions

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

Function Documentation

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 }
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.