Skip to content
Snippets Groups Projects
Commit 6715230a authored by Tammo Jan Dijkema's avatar Tammo Jan Dijkema
Browse files

Task #2699: boolalpha in show()

parent 29a96183
No related branches found
No related tags found
No related merge requests found
......@@ -275,10 +275,10 @@ namespace LOFAR {
os << ']' << endl;
}
os << " minpoints: " << itsMinNPoint << std::endl;
os << " autocorr: " << itsMakeAutoCorr << std::endl;
os << " sumauto: " << itsSumAutoCorr << std::endl;
os << " average: " << itsDoAverage << std::endl;
os << " useweights: " << itsUseWeight << std::endl;
os << " autocorr: " << boolalpha << itsMakeAutoCorr << std::endl;
os << " sumauto: " << boolalpha << itsSumAutoCorr << std::endl;
os << " average: " << boolalpha << itsDoAverage << std::endl;
os << " useweights: " << boolalpha << itsUseWeight << std::endl;
}
void StationAdder::showTimings (std::ostream& os, double duration) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment