[2] | 1 | //#---------------------------------------------------------------------------
|
---|
| 2 | //# python_SDMemTable.cc: python exposure of c++ SDMemTable class
|
---|
| 3 | //#---------------------------------------------------------------------------
|
---|
| 4 | //# Copyright (C) 2004
|
---|
[125] | 5 | //# ATNF
|
---|
[2] | 6 | //#
|
---|
| 7 | //# This program is free software; you can redistribute it and/or modify it
|
---|
| 8 | //# under the terms of the GNU General Public License as published by the Free
|
---|
| 9 | //# Software Foundation; either version 2 of the License, or (at your option)
|
---|
| 10 | //# any later version.
|
---|
| 11 | //#
|
---|
| 12 | //# This program is distributed in the hope that it will be useful, but
|
---|
| 13 | //# WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
---|
| 15 | //# Public License for more details.
|
---|
| 16 | //#
|
---|
| 17 | //# You should have received a copy of the GNU General Public License along
|
---|
| 18 | //# with this program; if not, write to the Free Software Foundation, Inc.,
|
---|
| 19 | //# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
|
---|
| 20 | //#
|
---|
| 21 | //# Correspondence concerning this software should be addressed as follows:
|
---|
| 22 | //# Internet email: Malte.Marquarding@csiro.au
|
---|
| 23 | //# Postal address: Malte Marquarding,
|
---|
| 24 | //# Australia Telescope National Facility,
|
---|
| 25 | //# P.O. Box 76,
|
---|
| 26 | //# Epping, NSW, 2121,
|
---|
| 27 | //# AUSTRALIA
|
---|
| 28 | //#
|
---|
| 29 | //# $Id:
|
---|
| 30 | //#---------------------------------------------------------------------------
|
---|
| 31 | #include <vector>
|
---|
| 32 |
|
---|
| 33 | #include <boost/python.hpp>
|
---|
[16] | 34 | #include <boost/python/args.hpp>
|
---|
[125] | 35 |
|
---|
[2] | 36 | #include "SDMemTableWrapper.h"
|
---|
| 37 |
|
---|
| 38 | using namespace boost::python;
|
---|
| 39 |
|
---|
[83] | 40 | namespace asap {
|
---|
[2] | 41 | namespace python {
|
---|
| 42 |
|
---|
| 43 | void python_SDMemTable() {
|
---|
| 44 | class_<SDMemTableWrapper>("sdtable")
|
---|
[96] | 45 | //.def( init <> () )
|
---|
[2] | 46 | .def( init < std::string > () )
|
---|
[96] | 47 | .def( init < const SDMemTableWrapper& > () )
|
---|
| 48 | .def( init < const SDMemTableWrapper&, std::string > () )
|
---|
| 49 | .def("_copy", &SDMemTableWrapper::copy)
|
---|
[2] | 50 | .def("getif", &SDMemTableWrapper::getIF)
|
---|
| 51 | .def("getbeam", &SDMemTableWrapper::getBeam)
|
---|
| 52 | .def("getpol", &SDMemTableWrapper::getPol)
|
---|
[401] | 53 | .def("_lines", &SDMemTableWrapper::spectralLines)
|
---|
[18] | 54 | .def("nif", &SDMemTableWrapper::nIF)
|
---|
| 55 | .def("nbeam", &SDMemTableWrapper::nBeam)
|
---|
| 56 | .def("npol", &SDMemTableWrapper::nPol)
|
---|
| 57 | .def("nchan", &SDMemTableWrapper::nChan)
|
---|
[96] | 58 | .def("nscan", &SDMemTableWrapper::nScan)
|
---|
| 59 | .def("nrow", &SDMemTableWrapper::nRow)
|
---|
[16] | 60 | .def("setif", &SDMemTableWrapper::setIF,
|
---|
[96] | 61 | (boost::python::arg("whichIF")=0) )
|
---|
[2] | 62 | .def("setbeam", &SDMemTableWrapper::setBeam)
|
---|
| 63 | .def("setpol", &SDMemTableWrapper::setPol)
|
---|
[207] | 64 | .def("get_fluxunit", &SDMemTableWrapper::getFluxUnit)
|
---|
[219] | 65 | .def("set_fluxunit", &SDMemTableWrapper::setFluxUnit)
|
---|
[357] | 66 | .def("_setInstrument", &SDMemTableWrapper::setInstrument)
|
---|
[252] | 67 | .def("_getscan", &SDMemTableWrapper::getScan)
|
---|
| 68 | .def("_getsource", &SDMemTableWrapper::getSource)
|
---|
| 69 | .def("_getspectrum", &SDMemTableWrapper::getSpectrum,
|
---|
[423] | 70 | (boost::python::arg("whichRow")=0))
|
---|
[494] | 71 | .def("nstokes", &SDMemTableWrapper::nStokes)
|
---|
[423] | 72 | .def("_getstokesspectrum", &SDMemTableWrapper::getStokesSpectrum,
|
---|
| 73 | (boost::python::arg("whichRow")=0),
|
---|
[505] | 74 | (boost::python::arg("linpol")=false) )
|
---|
[494] | 75 | .def("_stokestopolspectrum", &SDMemTableWrapper::stokesToPolSpectrum,
|
---|
[431] | 76 | (boost::python::arg("whichRow")=0),
|
---|
[494] | 77 | (boost::python::arg("linear")=false),
|
---|
[539] | 78 | (boost::python::arg("thepol")=-1) )
|
---|
[494] | 79 | .def("_getpolarizationlabel", &SDMemTableWrapper::getPolarizationLabel,
|
---|
| 80 | (boost::python::arg("linear")=false),
|
---|
| 81 | (boost::python::arg("stokes")=false),
|
---|
| 82 | (boost::python::arg("linpol")=false) )
|
---|
| 83 | // (boost::python::arg("thepol")=0) ) // Boost fails with 4 arguments
|
---|
[252] | 84 | .def("_setspectrum",&SDMemTableWrapper::setSpectrum,
|
---|
| 85 | (boost::python::arg("whichRow")=0) )
|
---|
| 86 | .def("_getabcissa", &SDMemTableWrapper::getAbcissa,
|
---|
| 87 | (boost::python::arg("whichRow")=0) )
|
---|
| 88 | .def("_getabcissalabel", &SDMemTableWrapper::getAbcissaString,
|
---|
| 89 | (boost::python::arg("whichRow")=0) )
|
---|
| 90 | .def("_getmask", &SDMemTableWrapper::getMask,
|
---|
| 91 | (boost::python::arg("whichRow")=0) )
|
---|
| 92 | .def("_gettsys", &SDMemTableWrapper::getTsys)
|
---|
| 93 | .def("_getsourcename", &SDMemTableWrapper::getSourceName,
|
---|
| 94 | (boost::python::arg("whichRow")=0) )
|
---|
[787] | 95 | .def("_getelevation", &SDMemTableWrapper::getElevation,
|
---|
| 96 | (boost::python::arg("whichRow")=0) )
|
---|
| 97 | .def("_getazimuth", &SDMemTableWrapper::getAzimuth,
|
---|
| 98 | (boost::python::arg("whichRow")=0) )
|
---|
| 99 | .def("_getparangle", &SDMemTableWrapper::getParAngle,
|
---|
| 100 | (boost::python::arg("whichRow")=0) )
|
---|
[252] | 101 | .def("_gettime", &SDMemTableWrapper::getTime,
|
---|
| 102 | (boost::python::arg("whichRow")=0) )
|
---|
[800] | 103 | .def("_flagspectrum", &SDMemTableWrapper::flagSpectrum,
|
---|
[96] | 104 | (boost::python::arg("whichRow")=-1) )
|
---|
[122] | 105 | .def("_save", &SDMemTableWrapper::makePersistent)
|
---|
[412] | 106 | .def("_summary", &SDMemTableWrapper::summary,
|
---|
[745] | 107 | (boost::python::arg("verbose")=true) )
|
---|
[392] | 108 | .def("_getrestfreqs", &SDMemTableWrapper::getRestFreqs)
|
---|
[106] | 109 | .def("_setrestfreqs", &SDMemTableWrapper::setRestFreqs)
|
---|
| 110 | .def("_setcoordinfo", &SDMemTableWrapper::setCoordInfo)
|
---|
| 111 | .def("_getcoordinfo", &SDMemTableWrapper::getCoordInfo)
|
---|
[483] | 112 | .def("_gethistory", &SDMemTableWrapper::getHistory)
|
---|
| 113 | .def("_addhistory", &SDMemTableWrapper::addHistory)
|
---|
[456] | 114 | .def("_addfit", &SDMemTableWrapper::addFit)
|
---|
[465] | 115 | .def("_getfit", &SDMemTableWrapper::getSDFitTable)
|
---|
[773] | 116 | .def("_recalc_azel", &SDMemTableWrapper::calculateAZEL)
|
---|
[2] | 117 | ;
|
---|
| 118 | };
|
---|
| 119 |
|
---|
| 120 | } // python
|
---|
[83] | 121 | } // asap
|
---|