From 251a1d79cf1b584d2e42bd61d132221bad02dce3 Mon Sep 17 00:00:00 2001 From: Tammo Jan Dijkema <dijkema@astron.nl> Date: Thu, 6 Nov 2014 09:25:46 +0000 Subject: [PATCH] Task #6854: reverted change because it broke test, fixing test first --- CEP/ParmDB/src/PatchInfo.cc | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/CEP/ParmDB/src/PatchInfo.cc b/CEP/ParmDB/src/PatchInfo.cc index ea22d52cbf6..c3e9afc69a5 100644 --- a/CEP/ParmDB/src/PatchInfo.cc +++ b/CEP/ParmDB/src/PatchInfo.cc @@ -31,9 +31,6 @@ #include <Blob/BlobOStream.h> #include <Common/LofarLogger.h> -#include <casa/Quanta/MVAngle.h> - -using namespace casa; namespace LOFAR { namespace BBS { @@ -51,12 +48,9 @@ namespace BBS { std::ostream& operator<< (std::ostream& os, const PatchInfo& info) { - os << "patch=" << info.getName() << " cat=" << info.getCategory(); - os << " ra="; - MVAngle(info.getRa()).print(os, MVAngle::Format(MVAngle::TIME, 9)); - os << " dec="; - MVAngle(info.getDec()).print (os, MVAngle::Format(MVAngle::ANGLE, 9)); - os << " flux=" << info.apparentBrightness(); + os << "patch=" << info.getName() << " cat=" << info.getCategory() + << " ra=" << info.getRa() << " dec=" << info.getDec() + << " flux=" << info.apparentBrightness(); return os; } -- GitLab