[2703] | 1 | //
|
---|
| 2 | // C++ Interface: STCalTsysTable
|
---|
| 3 | //
|
---|
| 4 | // Description:
|
---|
| 5 | //
|
---|
| 6 | // ApplyTable for Tsys calibration.
|
---|
| 7 | //
|
---|
| 8 | // Author: Takeshi Nakazato <takeshi.nakazato@nao.ac.jp> (C) 2012
|
---|
| 9 | //
|
---|
| 10 | // Copyright: See COPYING file that comes with this distribution
|
---|
| 11 | //
|
---|
| 12 | //
|
---|
| 13 | #ifndef ASAP_CALTSYS_TABLE_H
|
---|
| 14 | #define ASAP_CALTSYS_TABLE_H
|
---|
| 15 |
|
---|
| 16 | #include <tables/Tables/ArrayColumn.h>
|
---|
| 17 | #include <tables/Tables/ScalarColumn.h>
|
---|
| 18 |
|
---|
| 19 | #include "Scantable.h"
|
---|
| 20 | #include "STApplyTable.h"
|
---|
| 21 |
|
---|
| 22 | namespace asap {
|
---|
| 23 |
|
---|
| 24 | /**
|
---|
| 25 | ApplyTable for Tsys calibration
|
---|
| 26 |
|
---|
| 27 | @author Takeshi Nakazato
|
---|
| 28 | @date $Date:$
|
---|
| 29 | @version $Revision:$
|
---|
| 30 | */
|
---|
| 31 | class STCalTsysTable : public STApplyTable {
|
---|
| 32 | public:
|
---|
| 33 | STCalTsysTable() {;}
|
---|
| 34 | STCalTsysTable(const Scantable& parent);
|
---|
[3106] | 35 | STCalTsysTable(const casacore::String &name);
|
---|
[2703] | 36 |
|
---|
| 37 | virtual ~STCalTsysTable();
|
---|
| 38 |
|
---|
| 39 | void setup();
|
---|
[3106] | 40 | const casacore::String& name() const {return name_;};
|
---|
[2703] | 41 |
|
---|
| 42 | void attachOptionalColumns();
|
---|
| 43 |
|
---|
[3106] | 44 | void setdata(casacore::uInt irow, casacore::uInt scanno, casacore::uInt cycleno,
|
---|
| 45 | casacore::uInt beamno, casacore::uInt ifno, casacore::uInt polno,
|
---|
| 46 | casacore::uInt freqid, casacore::Double time, casacore::Float elevation,
|
---|
| 47 | const casacore::Vector<casacore::Float> &tsys,
|
---|
| 48 | const casacore::Vector<casacore::uChar> &flagtra);
|
---|
| 49 | void appenddata(casacore::uInt scanno, casacore::uInt cycleno,
|
---|
| 50 | casacore::uInt beamno, casacore::uInt ifno, casacore::uInt polno,
|
---|
| 51 | casacore::uInt freqid, casacore::Double time, casacore::Float elevation,
|
---|
| 52 | const casacore::Vector<casacore::Float> &tsys,
|
---|
| 53 | const casacore::Vector<casacore::uChar> &flagtra);
|
---|
[2703] | 54 |
|
---|
[3106] | 55 | casacore::Vector<casacore::Float> getElevation() const {return elCol_.getColumn();}
|
---|
| 56 | casacore::Matrix<casacore::Float> getTsys() const {return tsysCol_.getColumn();}
|
---|
| 57 | casacore::Matrix<casacore::uChar> getFlagtra() const {return flagtraCol_.getColumn();}
|
---|
| 58 | casacore::uInt nchan(casacore::uInt ifno);
|
---|
[2703] | 59 |
|
---|
[3106] | 60 | casacore::Vector<casacore::Double> getBaseFrequency(casacore::uInt whichrow);
|
---|
[2720] | 61 |
|
---|
[2703] | 62 | private:
|
---|
[3106] | 63 | static const casacore::String name_ ;
|
---|
| 64 | casacore::ArrayColumn<casacore::Float> tsysCol_;
|
---|
| 65 | casacore::ArrayColumn<casacore::uChar> flagtraCol_;
|
---|
| 66 | casacore::ScalarColumn<casacore::Float> elCol_;
|
---|
[2703] | 67 | };
|
---|
| 68 |
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | #endif
|
---|