| [2] | 1 | //#--------------------------------------------------------------------------- | 
|---|
| [872] | 2 | //# python_Scantable.cc: python exposure of c++ Scantable class | 
|---|
| [2] | 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 |  | 
|---|
| [872] | 36 | #include "ScantableWrapper.h" | 
|---|
| [2] | 37 |  | 
|---|
|  | 38 | using namespace boost::python; | 
|---|
|  | 39 |  | 
|---|
| [83] | 40 | namespace asap { | 
|---|
| [2] | 41 | namespace python { | 
|---|
|  | 42 |  | 
|---|
| [872] | 43 | void python_Scantable() { | 
|---|
|  | 44 | class_<ScantableWrapper>("Scantable") | 
|---|
| [96] | 45 | //.def( init <> () ) | 
|---|
| [872] | 46 | .def( init < const std::string&, const std::string& > () ) | 
|---|
|  | 47 | .def( init < const ScantableWrapper& > () ) | 
|---|
|  | 48 | .def("_copy", &ScantableWrapper::copy) | 
|---|
|  | 49 | .def("_assign", &ScantableWrapper::assign) | 
|---|
|  | 50 | .def("getif", &ScantableWrapper::getIF) | 
|---|
|  | 51 | .def("getbeam", &ScantableWrapper::getBeam) | 
|---|
|  | 52 | .def("getpol", &ScantableWrapper::getPol) | 
|---|
|  | 53 | .def("getscan", &ScantableWrapper::getScan) | 
|---|
|  | 54 | .def("getcycle", &ScantableWrapper::getCycle) | 
|---|
| [902] | 55 | .def("nif", &ScantableWrapper::nif, | 
|---|
|  | 56 | (boost::python::arg("scanno")=-1) ) | 
|---|
|  | 57 | .def("nbeam", &ScantableWrapper::nbeam, | 
|---|
|  | 58 | (boost::python::arg("scanno")=-1) ) | 
|---|
|  | 59 | .def("npol", &ScantableWrapper::npol, | 
|---|
|  | 60 | (boost::python::arg("scanno")=-1) ) | 
|---|
|  | 61 | .def("nchan", &ScantableWrapper::nchan, | 
|---|
|  | 62 | (boost::python::arg("ifno")=-1) ) | 
|---|
|  | 63 | .def("ncycle", &ScantableWrapper::ncycle, | 
|---|
|  | 64 | (boost::python::arg("scanno")=-1) ) | 
|---|
| [872] | 65 | .def("nscan", &ScantableWrapper::nscan) | 
|---|
|  | 66 | .def("nrow", &ScantableWrapper::nrow) | 
|---|
|  | 67 | .def("get_fluxunit", &ScantableWrapper::getFluxUnit) | 
|---|
|  | 68 | .def("set_fluxunit", &ScantableWrapper::setFluxUnit) | 
|---|
|  | 69 | .def("_setInstrument", &ScantableWrapper::setInstrument) | 
|---|
|  | 70 | .def("_getspectrum", &ScantableWrapper::getSpectrum, | 
|---|
| [896] | 71 | (arg("whichrow")=0, arg("poltype")=std::string("linear")) ) | 
|---|
|  | 72 | .def("poltype", &ScantableWrapper::getPolType ) | 
|---|
| [902] | 73 | .def("_getpollabel", &ScantableWrapper::getPolarizationLabel) | 
|---|
| [896] | 74 | .def("_setspectrum",&ScantableWrapper::setSpectrum, | 
|---|
| [884] | 75 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 76 | .def("_getabcissa", &ScantableWrapper::getAbcissa, | 
|---|
| [884] | 77 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 78 | .def("_getabcissalabel", &ScantableWrapper::getAbcissaLabel, | 
|---|
| [884] | 79 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 80 | .def("_getmask", &ScantableWrapper::getMask, | 
|---|
| [884] | 81 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 82 | .def("_gettsys", &ScantableWrapper::getTsys) | 
|---|
|  | 83 | .def("_getsourcename", &ScantableWrapper::getSourceName, | 
|---|
| [884] | 84 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 85 | .def("_getelevation", &ScantableWrapper::getElevation, | 
|---|
| [884] | 86 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 87 | .def("_getazimuth", &ScantableWrapper::getAzimuth, | 
|---|
| [884] | 88 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 89 | .def("_getparangle", &ScantableWrapper::getParAngle, | 
|---|
| [884] | 90 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 91 | .def("_gettime", &ScantableWrapper::getTime, | 
|---|
| [884] | 92 | (boost::python::arg("whichrow")=0) ) | 
|---|
| [872] | 93 | .def("_flag", &ScantableWrapper::flag) | 
|---|
|  | 94 | .def("_save",  &ScantableWrapper::makePersistent) | 
|---|
|  | 95 | .def("_summary",  &ScantableWrapper::summary, | 
|---|
| [745] | 96 | (boost::python::arg("verbose")=true) ) | 
|---|
| [872] | 97 | .def("_getrestfreqs",  &ScantableWrapper::getRestFrequencies) | 
|---|
|  | 98 | //.def("_setrestfreqs",  &ScantableWrapper::setRestFrequencies) | 
|---|
|  | 99 | .def("_setcoordinfo", &ScantableWrapper::setCoordInfo) | 
|---|
|  | 100 | .def("_getcoordinfo", &ScantableWrapper::getCoordInfo) | 
|---|
|  | 101 | .def("_gethistory", &ScantableWrapper::getHistory) | 
|---|
|  | 102 | .def("_addhistory", &ScantableWrapper::addHistory) | 
|---|
|  | 103 | .def("_getselection", &ScantableWrapper::getSelection) | 
|---|
|  | 104 | .def("_setselection", &ScantableWrapper::setSelection) | 
|---|
|  | 105 | /* | 
|---|
|  | 106 | .def("_addfit", &ScantableWrapper::addFit) | 
|---|
|  | 107 | .def("_getfit", &ScantableWrapper::getSDFitTable) | 
|---|
|  | 108 | */ | 
|---|
|  | 109 | .def("_recalcazel", &ScantableWrapper::calculateAZEL) | 
|---|
| [2] | 110 | ; | 
|---|
|  | 111 | }; | 
|---|
|  | 112 |  | 
|---|
|  | 113 | } // python | 
|---|
| [83] | 114 | } // asap | 
|---|