// // 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 "GILHandler.h" #include "MathUtils.h" #include "Scantable.h" #include "STCoordinate.h" #include "STFit.h" #include "STFitEntry.h" #include #include #include #include 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: explicit ScantableWrapper( const std::string& name, int type=0) { GILHandler scopedRelease; casacore::Table::TableType tp = casacore::Table::Memory; if ( type == 1 ) tp = casacore::Table::Plain; table_ = new Scantable(name, tp); } explicit ScantableWrapper(int type=0) { GILHandler scopedRelease; casacore::Table::TableType tp = casacore::Table::Memory; if ( type == 1) tp = casacore::Table::Plain; table_= new Scantable(tp); } explicit ScantableWrapper(casacore::CountedPtr cp) : table_(cp) {;} ScantableWrapper(const ScantableWrapper& mt) : table_(mt.getCP()) {;} ~ScantableWrapper() { GILHandler scopedRelease; table_.reset(); } void assign(const ScantableWrapper& mt) { table_= mt.getCP(); } ScantableWrapper copy() { GILHandler scopedRelease; return ScantableWrapper(new Scantable(*(this->getCP()), false)); } std::vector getSpectrum( int whichrow=0, const std::string& poltype="" ) const { return table_->getSpectrum(whichrow, poltype); } // std::string getPolarizationLabel(bool linear, bool stokes, bool linPol, int polIdx) const { // Boost fails with 4 arguments. std::string getPolarizationLabel(int index, const std::string& ptype) const { return table_->getPolarizationLabel(index, ptype); } std::vector getAbcissa(int whichrow=0) const { return table_->getAbcissa(whichrow); } std::string getAbcissaLabel(int whichrow=0) const { return table_->getAbcissaLabel(whichrow); } float getTsys(int whichrow=0) const { return table_->getTsys(whichrow); } std::vector getTsysSpectrum(int whichrow=0) const { return table_->getTsysSpectrum(whichrow); } void setTsys(const std::vector& newvals, int whichrow=-1) { return table_->setTsys(newvals, whichrow); } //std::string getTime(int whichrow=0) const // { return table_->getTime(whichrow); } std::string getTime(int whichrow=0, int prec = 0) const { return table_->getTime(whichrow, true, casacore::uInt(prec)); } double getIntTime(int whichrow=0) const { return table_->getIntTime(whichrow); } std::string getDirectionString(int whichrow=0) const { return table_->getDirectionString(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);} void setFeedType(const std::string& ftype) {table_->setFeedType(ftype);} std::vector getMask(int whichrow=0) const { return table_->getMask(whichrow); } /** void flag(const std::vector& msk=std::vector()) { table_->flag(msk); } **/ /** void flag(const std::vector& msk=std::vector(), bool unflag=false) { table_->flag(msk, unflag); } **/ void flag(int whichrow=-1, const std::vector& msk=std::vector(), bool unflag=false) { table_->flag(whichrow, msk, unflag); } void flagRow(const std::vector& rows=std::vector(), bool unflag=false) { table_->flagRow(rows, unflag); } bool getFlagRow(int whichrow=0) const { return table_->getFlagRow(whichrow); } void clip(const casacore::Float uthres, const casacore::Float dthres, bool clipoutside=true, bool unflag=false) { table_->clip(uthres, dthres, clipoutside, unflag); } std::vector getClipMask(int whichrow, const casacore::Float uthres, const casacore::Float dthres, bool clipoutside, bool unflag) const { return table_->getClipMask(whichrow, uthres, dthres, clipoutside, unflag); } 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); } std::vector getIFNos() { return table_->getIFNos(); } int getIF(int whichrow) const {return table_->getIF(whichrow);} std::vector getBeamNos() { return table_->getBeamNos(); } int getBeam(int whichrow) const {return table_->getBeam(whichrow);} std::vector getPolNos() { return table_->getPolNos(); } int getPol(int whichrow) const {return table_->getPol(whichrow);} std::vector getCycleNos() { return table_->getCycleNos(); } int getCycle(int whichrow) const {return table_->getCycle(whichrow);} std::vector getScanNos() { return table_->getScanNos(); } int getScan(int whichrow) const {return table_->getScan(whichrow);} std::vector getMolNos() { return table_->getMolNos();} STSelector getSelection() const { return table_->getSelection(); } void setSelection(const STSelector& sts) { return table_->setSelection(sts);} std::string getPolType() const { return table_->getPolType(); } 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();} int ncycle(int scanno) const {return table_->ncycle(scanno);} void makePersistent(const std::string& fname) { GILHandler scopedRelease; table_->makePersistent(fname); } void setSourceType(int stype) { table_->setSourceType(stype); } void setSourceName(const std::string& name) { table_->setSourceName(name); } void shift(int npix) { table_->shift(npix); } /** commented out by TT void setRestFrequencies(double rf, const std::string& name, const std::string& unit) { table_->setRestFrequencies(rf, name, unit); } **/ void setRestFrequencies(vector rf, const vector& name, const std::string& unit) { table_->setRestFrequencies(rf, name, unit); } /* void setRestFrequencies(const std::string& name) { table_->setRestFrequencies(name); } */ /* std::vector getRestFrequencies() const { return table_->getRestFrequencies(); } */ std::vector getRestFrequency(int id) const { return table_->getRestFrequency(id); } void setCoordInfo(std::vector theinfo) { table_->setCoordInfo(theinfo); } std::vector getCoordInfo() const { return table_->getCoordInfo(); } void setDirection(const std::string& refstr="") { table_->setDirectionRefString(refstr); } casacore::CountedPtr getCP() const {return table_;} Scantable* getPtr() {return &(*table_);} // std::string summary() const { // return table_->summary(); // } void summary(const std::string& filename="") { //std::string summary(const std::string& filename="") const { table_->summary(filename); } std::string listHeader() const { return table_->headerSummary(); } std::vector getHistory(int nrow=-1, int start=0) const { return table_->getHistory(nrow, start); } uint historyLength() { return table_->historyLength(); } void dropHistory() { table_->dropHistory(); } void addHistory(const std::string& hist) { table_->addHistory(hist); } void addFit(const STFitEntry& fit, int row) { table_->addFit(fit, row); } STFitEntry getFit(int whichrow) const { return table_->getFit(whichrow); } void calculateAZEL() { table_->calculateAZEL(); } std::vector columnNames() const { return table_->columnNames(); } std::string getAntennaName() const { return table_->getAntennaName(); } int checkScanInfo(const vector& scanlist) const { return table_->checkScanInfo(scanlist); } std::vector getDirectionVector(int whichrow) const { return table_->getDirectionVector(whichrow); } void parallactify(bool flag) { table_->parallactify(flag); } STCoordinate getCoordinate(int row) { return STCoordinate(table_->getSpectralCoordinate(row)); } std::vector getWeather(int whichrow) const { return table_->getWeather(whichrow); } void reshapeSpectrum( int nmin, int nmax ) { table_->reshapeSpectrum( nmin, nmax ); } void regridSpecChannel( double dnu, int nchan ) { table_->regridSpecChannel( dnu, nchan ); } std::vector applyBaselineTable(const std::string& bltable, const bool returnfitresult, const std::string& outbltable, const bool outbltableexists, const bool overwrite) { GILHandler scopedRelease; return table_->applyBaselineTable(bltable, returnfitresult, outbltable, outbltableexists, overwrite); } std::vector subBaseline(const std::vector& blinfo, const bool returnfitresult, const std::string& outbltable, const bool outbltableexists, const bool overwrite) { GILHandler scopedRelease; return table_->subBaseline(blinfo, returnfitresult, outbltable, outbltableexists, overwrite); } void polyBaseline(const std::vector& mask, int order, float clipthresh, int clipniter, bool getresidual=true, const std::string& showprogress="true,1000", const bool outlog=false, const std::string& blfile="", const std::string& bltable="") { table_->polyBaseline(mask, order, clipthresh, clipniter, getresidual, showprogress, outlog, blfile, bltable); } void autoPolyBaseline(const std::vector& mask, int order, float clipthresh, int clipniter, const std::vector& edge, float threshold=5.0, int chan_avg_limit=1, bool getresidual=true, const std::string& showprogress="true,1000", const bool outlog=false, const std::string& blfile="", const std::string& bltable="") { table_->autoPolyBaseline(mask, order, clipthresh, clipniter, edge, threshold, chan_avg_limit, getresidual, showprogress, outlog, blfile, bltable); } void chebyshevBaseline(const std::vector& mask, int order, float clipthresh, int clipniter, bool getresidual=true, const std::string& showprogress="true,1000", const bool outlog=false, const std::string& blfile="", const std::string& bltable="") { table_->chebyshevBaseline(mask, order, clipthresh, clipniter, getresidual, showprogress, outlog, blfile, bltable); } void autoChebyshevBaseline(const std::vector& mask, int order, float clipthresh, int clipniter, const std::vector& edge, float threshold=5.0, int chan_avg_limit=1, bool getresidual=true, const std::string& showprogress="true,1000", const bool outlog=false, const std::string& blfile="", const std::string& bltable="") { table_->autoChebyshevBaseline(mask, order, clipthresh, clipniter, edge, threshold, chan_avg_limit, getresidual, showprogress, outlog, blfile, bltable); } void cubicSplineBaseline(const std::vector& mask, int npiece, float clipthresh, int clipniter, bool getresidual=true, const std::string& showprogress="true,1000", const bool outlog=false, const std::string& blfile="", const std::string& bltable="") { table_->cubicSplineBaseline(mask, npiece, clipthresh, clipniter, getresidual, showprogress, outlog, blfile, bltable); } void autoCubicSplineBaseline(const std::vector& mask, int npiece, float clipthresh, int clipniter, const std::vector& edge, float threshold=5.0, int chan_avg_limit=1, bool getresidual=true, const std::string& showprogress="true,1000", const bool outlog=false, const std::string& blfile="", const std::string& bltable="") { table_->autoCubicSplineBaseline(mask, npiece, clipthresh, clipniter, edge, threshold, chan_avg_limit, getresidual, showprogress, outlog, blfile, bltable); } void sinusoidBaseline(const std::vector& mask, const std::string& fftinfo, const std::vector& addwn, const std::vector& rejwn, float clipthresh, int clipniter, bool getresidual=true, const std::string& showprogress="true,1000", const bool outlog=false, const std::string& blfile="", const std::string& bltable="") { table_->sinusoidBaseline(mask, fftinfo, addwn, rejwn, clipthresh, clipniter, getresidual, showprogress, outlog, blfile, bltable); } void autoSinusoidBaseline(const std::vector& mask, const std::string& fftinfo, const std::vector& addwn, const std::vector& rejwn, float clipthresh, int clipniter, const std::vector& edge, float threshold=5.0, int chan_avg_limit=1, bool getresidual=true, const std::string& showprogress="true,1000", const bool outlog=false, const std::string& blfile="", const std::string& bltable="") { table_->autoSinusoidBaseline(mask, fftinfo, addwn, rejwn, clipthresh, clipniter, edge, threshold, chan_avg_limit, getresidual, showprogress, outlog, blfile, bltable); } float getRms(const std::vector& mask, int whichrow) { return table_->getRms(mask, whichrow); } std::string formatBaselineParams(const std::vector& params, const std::vector& fixed, float rms, const std::string& masklist, int whichrow, bool verbose=false, bool csvformat=false) { return table_->formatBaselineParams(params, fixed, rms, -1, masklist, whichrow, verbose, csvformat); } std::string formatPiecewiseBaselineParams(const std::vector& ranges, const std::vector& params, const std::vector& fixed, float rms, const std::string& masklist, int whichrow, bool verbose=false, bool csvformat=false) { return table_->formatPiecewiseBaselineParams(ranges, params, fixed, rms, -1, masklist, whichrow, verbose, csvformat); } bool isAllChannelsFlagged(int whichrow=0) const { return table_->isAllChannelsFlagged(casacore::uInt(whichrow)); } std::vector execFFT(int whichrow, const std::vector& mask, bool getRealImag=false, bool getAmplitudeOnly=false) { return table_->execFFT(whichrow, mask, getRealImag, getAmplitudeOnly); } std::vector getMoleculeIdColumnData() const { return table_->getMoleculeIdColumnData(); } void setMoleculeIdColumnData(const std::vector& molids) { table_->setMoleculeIdColumnData(molids); } std::vector getRootTableRowNumbers() const { return table_->getRootTableRowNumbers(); } double calculateModelSelectionCriteria(const std::string& valname, const std::string& blfunc, int order, const std::vector& inMask, int whichrow, bool useLineFinder, const std::vector& edge, float threshold, int chanAvgLimit) { return table_->calculateModelSelectionCriteria(valname, blfunc, order, inMask, whichrow, useLineFinder, edge, threshold, chanAvgLimit); } void dropXPol() { table_->dropXPol(); } private: casacore::CountedPtr table_; }; } // namespace #endif