// // 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" namespace asap { /** * Calibration operations on Scantable objects * @author TakeshiNakazato */ class STCalSkyPSAlma : public STCalibration { public: STCalSkyPSAlma(casacore::CountedPtr &s); virtual ~STCalSkyPSAlma() {;} protected: virtual void setupSelector(const STSelector &sel); virtual void appenddata(casacore::uInt scanno, casacore::uInt cycleno, casacore::uInt beamno, casacore::uInt ifno, casacore::uInt polno, casacore::uInt freqid, casacore::Double time, casacore::Float elevation, const casacore::Vector &any_data, const casacore::Vector &channel_flag); }; } #endif