// // C++ Interface: STCalTsys // // Description: // // // Author: Takeshi Nakazato , (C) 2012 // // Copyright: See COPYING file that comes with this distribution // // #ifndef ASAP_CALTSYS_H #define ASAP_CALTSYS_H #include #include #include #include #include #include #include #include "RowAccumulator.h" #include "Scantable.h" #include "STDefs.h" #include "STApplyTable.h" #include "STCalibration.h" #include "STCalTsysTable.h" namespace asap { /** * Calibration operations on Scantable objects * @author TakeshiNakazato */ class STCalTsys : public STCalibration { public: STCalTsys(casa::CountedPtr &s, vector &iflist); ~STCalTsys() {;} private: void setupSelector(const STSelector &sel); void fillCalTable(); vector iflist_; }; } #endif