Go to the source code of this file.
◆ operator<<()
std::ostream & operator<< |
( |
std::ostream & |
output, |
|
|
const Observable & |
o |
|
) |
| |
- Parameters
-
[out] | output | the formatted output stream to print the model parameters |
[in] | o | a reference to an object of type Observable() |
Definition at line 102 of file Observable.cpp.
104 output <<
"Observable name, tMCMC, min, max, distribution, distribution parameters" << std::endl;
105 output << o.
name <<
" " << o.
tMCMC <<
" " << o.
min <<
" " << o.
max <<
" "
107 <<
" " << o.
errg <<
" " << o.
errf << std::endl;
bool tMCMC
The flag to include or exclude the observable from the MCMC run.
std::string distr
The name of the distribution of the the observable.
double errf
The flat error of the observable.
double max
The maximum valus of the observable.
double ave
The average value of the observable.
double min
The minimum value of the observable.
double errg
The gaussian error of the observable.
std::string histoname
The name of the histogram for the observable.
std::string filename
The name of the file containing the experimental likelihood for the observable.
std::string name
A name for the observable.