// // C++ Interface: Scantable // // Description: // // // Author: Malte Marquarding , (C) 2006 // // Copyright: See COPYING file that comes with this distribution // // #ifndef ASAPSCANTABLEWRAPPER_H #define ASAPSCANTABLEWRAPPER_H #include #include #include #include "MathUtils.h" #include "SDFitTable.h" #include "Scantable.h" namespace asap { /** * This class contains and wraps a CountedPtr, as the CountedPtr * class does not provide the dor operator which is need for references * in boost::python * see Scantable for interfce description * * @brief The main ASAP data container wrapper * @author Malte Marquarding * @date 2006-02-23 * @version 2.0a */ class ScantableWrapper { public: ScantableWrapper( const std::string& name, const std::string& type="") { casa::Table::TableType tp = casa::Table::Memory; if ( type == "disk") tp = casa::Table::Plain; table_ = new Scantable(name, tp); } ScantableWrapper(const std::string& type="") { casa::Table::TableType tp = casa::Table::Memory; if ( type == "disk") tp = casa::Table::Plain; table_= new Scantable(tp); } ScantableWrapper(casa::CountedPtr cp) : table_(cp) {;} ScantableWrapper(const ScantableWrapper& mt) : table_(mt.getCP()) {;} ScantableWrapper copy() { return ScantableWrapper(new Scantable(*(this->getCP()), false)); } /* std::vector getSpectrum(int whichRow=0) const { return table_->getSpectrum(whichRow); } std::vector getStokesSpectrum(int whichRow=0, bool linPol=false) const { return table_->getStokesSpectrum(whichRow, linPol); } std::vector stokesToPolSpectrum(int whichRow=0, bool linear=false, int polIdx=-1) const { return table_->stokesToPolSpectrum(whichRow, linear, polIdx); } */ // std::string getPolarizationLabel(bool linear, bool stokes, bool linPol, int polIdx) const { // Boost fails with 4 arguments. std::string getPolarizationLabel(bool linear, bool stokes, bool linPol) const { int polIdx = -1; return table_->getPolarizationLabel(linear, stokes, linPol, polIdx); } std::vector getAbcissa(int whichRow=0) const { return table_->getAbcissa(whichRow); } std::string getAbcissaString(int whichRow=0) const { return table_->getAbcissaString(whichRow); } float getTsys(int whichRow=0) const { return table_->getTsys(whichRow); } std::string getTime(int whichRow=0) const { return table_->getTime(whichRow); } std::string getFluxUnit() const { return table_->getFluxUnit(); } void setFluxUnit(const std::string& unit) { table_->setFluxUnit(unit); } void setInstrument(const std::string& name) {table_->setInstrument(name);} std::vector getMask(int whichRow=0) const { return table_->getMask(whichRow); } void flag() { table_->flag(); } std::string getSourceName(int whichRow=0) const { return table_->getSourceName(whichRow); } float getElevation(int whichRow=0) const { return table_->getElevation(whichRow); } float getAzimuth(int whichRow=0) const { return table_->getAzimuth(whichRow); } float getParAngle(int whichRow=0) const { return table_->getParAngle(whichRow); } void setSpectrum(std::vector spectrum, int whichrow=0) { table_->setSpectrum(spectrum, whichrow); } int getIF(int whichrow) const {return table_->getIF(whichrow);} int getBeam(int whichrow) const {return table_->getBeam(whichrow);} int getPol(int whichrow) const {return table_->getPol(whichrow);} STSelector getSelection() const { return table_->getSelection(); } int nif(int scanno=-1) const {return table_->nif(scanno);} int nbeam(int scanno=-1) const {return table_->nbeam(scanno);} int npol(int scanno=-1) const {return table_->npol(scanno);} int nchan(int ifno=-1) const {return table_->nchan(ifno);} int nscan() const {return table_->nscan();} int nrow() const {return table_->nrow();} ///@todo int nstokes() {return table_->nStokes();} void makePersistent(const std::string& fname) { table_->makePersistent(fname); } void setRestFreqs(double rf, const std::string& unit) { table_->setRestFreqs(rf, unit); } void setRestFreqs(const std::string& name) { table_->setRestFreqs(name); } std::vector getRestFrequencies() const { return table_->getRestFrequencies(); } void setCoordInfo(std::vector theinfo) { table_->setCoordInfo(theinfo); } std::vector getCoordInfo() const { return table_->getCoordInfo(); } casa::CountedPtr getCP() const {return table_;} Scantable* getPtr() {return &(*table_);} std::string summary(bool verbose=false) const { return table_->summary(verbose); } std::vector getHistory()const { return table_->getHistory(); } void addHistory(const std::string& hist) { table_->addHistory(hist); } /* void addFit(int whichRow, const std::vector& p, const std::vector& m, const std::vector& f, const std::vector& c) { casa::Vector p2(p); casa::Vector m2(m); casa::Vector f2 = mathutil::toVectorString(f); casa::Vector c2(c); table_->addFit(casa::uInt(whichRow), p2,m2,f2,c2); } SDFitTable getSDFitTable(int whichRow) { return table_->getSDFitTable(casa::uInt(whichRow)); } */ void calculateAZEL() { table_->calculateAZEL(); }; private: casa::CountedPtr table_; }; } // namespace #endif