| 1 | //#--------------------------------------------------------------------------- | 
|---|
| 2 | //# python_SDMemTable.cc: python exposure of c++ SDMemTable class | 
|---|
| 3 | //#--------------------------------------------------------------------------- | 
|---|
| 4 | //# Copyright (C) 2004 | 
|---|
| 5 | //# ATNF | 
|---|
| 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> | 
|---|
| 34 | #include <boost/python/args.hpp> | 
|---|
| 35 |  | 
|---|
| 36 | #include "SDMemTableWrapper.h" | 
|---|
| 37 |  | 
|---|
| 38 | using namespace boost::python; | 
|---|
| 39 |  | 
|---|
| 40 | namespace asap { | 
|---|
| 41 | namespace python { | 
|---|
| 42 |  | 
|---|
| 43 | void python_SDMemTable() { | 
|---|
| 44 | class_<SDMemTableWrapper>("sdtable") | 
|---|
| 45 | //.def( init <> () ) | 
|---|
| 46 | .def( init < std::string > () ) | 
|---|
| 47 | .def( init < const SDMemTableWrapper& > () ) | 
|---|
| 48 | .def( init < const SDMemTableWrapper&, std::string > () ) | 
|---|
| 49 | .def("_copy", &SDMemTableWrapper::copy) | 
|---|
| 50 | .def("getif", &SDMemTableWrapper::getIF) | 
|---|
| 51 | .def("getbeam", &SDMemTableWrapper::getBeam) | 
|---|
| 52 | .def("getpol", &SDMemTableWrapper::getPol) | 
|---|
| 53 | .def("_lines", &SDMemTableWrapper::spectralLines) | 
|---|
| 54 | .def("nif", &SDMemTableWrapper::nIF) | 
|---|
| 55 | .def("nbeam", &SDMemTableWrapper::nBeam) | 
|---|
| 56 | .def("npol", &SDMemTableWrapper::nPol) | 
|---|
| 57 | .def("nchan", &SDMemTableWrapper::nChan) | 
|---|
| 58 | .def("nscan", &SDMemTableWrapper::nScan) | 
|---|
| 59 | .def("nrow", &SDMemTableWrapper::nRow) | 
|---|
| 60 | .def("setif", &SDMemTableWrapper::setIF, | 
|---|
| 61 | (boost::python::arg("whichIF")=0) ) | 
|---|
| 62 | .def("setbeam", &SDMemTableWrapper::setBeam) | 
|---|
| 63 | .def("setpol", &SDMemTableWrapper::setPol) | 
|---|
| 64 | .def("_setmask", &SDMemTableWrapper::setMask) | 
|---|
| 65 | .def("get_fluxunit", &SDMemTableWrapper::getFluxUnit) | 
|---|
| 66 | .def("set_fluxunit", &SDMemTableWrapper::setFluxUnit) | 
|---|
| 67 | .def("_setInstrument", &SDMemTableWrapper::setInstrument) | 
|---|
| 68 | .def("_getscan", &SDMemTableWrapper::getScan) | 
|---|
| 69 | .def("_getsource", &SDMemTableWrapper::getSource) | 
|---|
| 70 | .def("_getspectrum", &SDMemTableWrapper::getSpectrum, | 
|---|
| 71 | (boost::python::arg("whichRow")=0)) | 
|---|
| 72 | .def("nstokes", &SDMemTableWrapper::nStokes) | 
|---|
| 73 | .def("_getstokesspectrum", &SDMemTableWrapper::getStokesSpectrum, | 
|---|
| 74 | (boost::python::arg("whichRow")=0), | 
|---|
| 75 | (boost::python::arg("linpol")=false) ) | 
|---|
| 76 | .def("_stokestopolspectrum", &SDMemTableWrapper::stokesToPolSpectrum, | 
|---|
| 77 | (boost::python::arg("whichRow")=0), | 
|---|
| 78 | (boost::python::arg("linear")=false), | 
|---|
| 79 | (boost::python::arg("thepol")=-1) ) | 
|---|
| 80 | .def("_getpolarizationlabel", &SDMemTableWrapper::getPolarizationLabel, | 
|---|
| 81 | (boost::python::arg("linear")=false), | 
|---|
| 82 | (boost::python::arg("stokes")=false), | 
|---|
| 83 | (boost::python::arg("linpol")=false) ) | 
|---|
| 84 | //         (boost::python::arg("thepol")=0) )        // Boost fails with 4 arguments | 
|---|
| 85 | .def("_setspectrum",&SDMemTableWrapper::setSpectrum, | 
|---|
| 86 | (boost::python::arg("whichRow")=0) ) | 
|---|
| 87 | .def("_getabcissa", &SDMemTableWrapper::getAbcissa, | 
|---|
| 88 | (boost::python::arg("whichRow")=0) ) | 
|---|
| 89 | .def("_getabcissalabel", &SDMemTableWrapper::getAbcissaString, | 
|---|
| 90 | (boost::python::arg("whichRow")=0) ) | 
|---|
| 91 | .def("_getmask", &SDMemTableWrapper::getMask, | 
|---|
| 92 | (boost::python::arg("whichRow")=0) ) | 
|---|
| 93 | .def("_gettsys", &SDMemTableWrapper::getTsys) | 
|---|
| 94 | .def("_getsourcename", &SDMemTableWrapper::getSourceName, | 
|---|
| 95 | (boost::python::arg("whichRow")=0) ) | 
|---|
| 96 | .def("_gettime", &SDMemTableWrapper::getTime, | 
|---|
| 97 | (boost::python::arg("whichRow")=0) ) | 
|---|
| 98 | .def("_flag", &SDMemTableWrapper::flag, | 
|---|
| 99 | (boost::python::arg("whichRow")=-1) ) | 
|---|
| 100 | .def("_save",  &SDMemTableWrapper::makePersistent) | 
|---|
| 101 | .def("_summary",  &SDMemTableWrapper::summary, | 
|---|
| 102 | (boost::python::arg("verbose")=true) ) | 
|---|
| 103 | .def("_getrestfreqs",  &SDMemTableWrapper::getRestFreqs) | 
|---|
| 104 | .def("_setrestfreqs",  &SDMemTableWrapper::setRestFreqs) | 
|---|
| 105 | .def("_setcoordinfo", &SDMemTableWrapper::setCoordInfo) | 
|---|
| 106 | .def("_getcoordinfo", &SDMemTableWrapper::getCoordInfo) | 
|---|
| 107 | .def("_gethistory", &SDMemTableWrapper::getHistory) | 
|---|
| 108 | .def("_addhistory", &SDMemTableWrapper::addHistory) | 
|---|
| 109 | .def("_addfit", &SDMemTableWrapper::addFit) | 
|---|
| 110 | .def("_getfit", &SDMemTableWrapper::getSDFitTable) | 
|---|
| 111 | ; | 
|---|
| 112 | }; | 
|---|
| 113 |  | 
|---|
| 114 | } // python | 
|---|
| 115 | } // asap | 
|---|