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