// // C++ Interface: PSAlmaCalibrator // // Description: // // // Author: Takeshi Nakazato , (C) 2012 // // Copyright: See COPYING file that comes with this distribution // // #ifndef ASAP_PS_ALMA_CALIBRATOR_H #define ASAP_PS_ALMA_CALIBRATOR_H #include #include #include #include #include #include "Calibrator.h" namespace asap { /** * Calibration operation for position switch (ALMA) * @author TakeshiNakazato */ class PSAlmaCalibrator : public Calibrator { public: PSAlmaCalibrator(); PSAlmaCalibrator(unsigned int nchan); virtual ~PSAlmaCalibrator() {;} void calibrate(); }; } #endif