// // C++ Implementation: STCalibration // // Description: // // // Author: Takeshi Nakazato (C) 2012 // // Copyright: See COPYING file that comes with this distribution // // #include "STCalibration.h" #include "STCalSkyTable.h" using namespace casa; namespace asap { STCalibration::STCalibration(CountedPtr &s) : scantable_(s) { } void STCalibration::calibrate() { STSelector selOrg = scantable_->getSelection(); setupSelector(selOrg); scantable_->setSelection(sel_); fillCalTable(); scantable_->setSelection(selOrg); } }