// // C++ Interface: STCalSkyOtfAlma // // Description: // // // Author: Takeshi Nakazato , (C) 2012 // // Copyright: See COPYING file that comes with this distribution // // #ifndef ASAP_CALSKY_OTF_ALMA_H #define ASAP_CALSKY_OTF_ALMA_H #include #include #include #include #include #include #include "RowAccumulator.h" #include "Scantable.h" #include "STDefs.h" #include "STApplyTable.h" #include "STCalSkyPSAlma.h" namespace asap { /** * Calibration operations on Scantable objects * @author TakeshiNakazato */ class STCalSkyOtfAlma : public STCalSkyPSAlma { public: STCalSkyOtfAlma(casa::CountedPtr &s, bool israster=false); virtual ~STCalSkyOtfAlma() {;} protected: virtual void setupSelector(const STSelector &sel); //virtual void fillCalTable(); private: bool israster_; casa::Vector rowNumbers_; }; } #endif