// // C++ Implementation: STCalTsysTable // // Description: // // // Author: Takeshi Nakazato (C) 2012 // // Copyright: See COPYING file that comes with this distribution // // #include #include #include #include #include #include #include #include #include #include "Scantable.h" #include "STCalTsysTable.h" using namespace casa; namespace asap { const String STCalTsysTable::name_ = "APPLY_TSYS"; STCalTsysTable::STCalTsysTable(const Scantable& parent) : STApplyTable(parent, name_) { setup(); } STCalTsysTable::~STCalTsysTable() { } void STCalTsysTable::setup() { table_.addColumn(ArrayColumnDesc("TSYS")); table_.addColumn(ScalarColumnDesc("ELEVATION")); table_.rwKeywordSet().define("ApplyType", "TSYS"); attachOptionalColumns(); } void STCalTsysTable::attachOptionalColumns() { tsysCol_.attach(table_, "TSYS"); elCol_.attach(table_,"ELEVATION"); } void STCalTsysTable::setdata(uInt irow, uInt scanno, uInt cycleno, uInt beamno, uInt ifno, uInt polno, Double time, Float elevation, Vector tsys) { if (irow >= (uInt)nrow()) { throw AipsError("row index out of range"); } if (!sel_.empty()) { os_.origin(LogOrigin("STCalTsysTable","setdata",WHERE)); os_ << LogIO::WARN << "Data selection is effective. Specified row index may be wrong." << LogIO::POST; } setbasedata(irow, scanno, cycleno, beamno, ifno, polno, time); elCol_.put(irow, elevation); tsysCol_.put(irow, tsys); } void STCalTsysTable::appenddata(uInt scanno, uInt cycleno, uInt beamno, uInt ifno, uInt polno, Double time, Float elevation, Vector tsys) { uInt irow = nrow(); table_.addRow(1, True); setdata(irow, scanno, cycleno, beamno, ifno, polno, time, elevation, tsys); } }