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

Task #6854: reverted change because it broke test, fixing test first

parent b3fd25d4
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
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