diff --git a/CEP/DP3/DPPP/src/StationAdder.cc b/CEP/DP3/DPPP/src/StationAdder.cc index f95506c63887dafaa12f8e7918dbd5e330f3eec5..aba0ae296726359f7b519a5259566497b90338fe 100644 --- a/CEP/DP3/DPPP/src/StationAdder.cc +++ b/CEP/DP3/DPPP/src/StationAdder.cc @@ -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