source: branches/Release12/src/python_SDMemTable.cc@ 1151

Last change on this file since 1151 was 800, checked in by mar637, 19 years ago

Request: added channel based flagging

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.3 KB
Line 
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
38using namespace boost::python;
39
40namespace asap {
41 namespace python {
42
43void 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("get_fluxunit", &SDMemTableWrapper::getFluxUnit)
65 .def("set_fluxunit", &SDMemTableWrapper::setFluxUnit)
66 .def("_setInstrument", &SDMemTableWrapper::setInstrument)
67 .def("_getscan", &SDMemTableWrapper::getScan)
68 .def("_getsource", &SDMemTableWrapper::getSource)
69 .def("_getspectrum", &SDMemTableWrapper::getSpectrum,
70 (boost::python::arg("whichRow")=0))
71 .def("nstokes", &SDMemTableWrapper::nStokes)
72 .def("_getstokesspectrum", &SDMemTableWrapper::getStokesSpectrum,
73 (boost::python::arg("whichRow")=0),
74 (boost::python::arg("linpol")=false) )
75 .def("_stokestopolspectrum", &SDMemTableWrapper::stokesToPolSpectrum,
76 (boost::python::arg("whichRow")=0),
77 (boost::python::arg("linear")=false),
78 (boost::python::arg("thepol")=-1) )
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
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) )
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) )
101 .def("_gettime", &SDMemTableWrapper::getTime,
102 (boost::python::arg("whichRow")=0) )
103 .def("_flagspectrum", &SDMemTableWrapper::flagSpectrum,
104 (boost::python::arg("whichRow")=-1) )
105 .def("_save", &SDMemTableWrapper::makePersistent)
106 .def("_summary", &SDMemTableWrapper::summary,
107 (boost::python::arg("verbose")=true) )
108 .def("_getrestfreqs", &SDMemTableWrapper::getRestFreqs)
109 .def("_setrestfreqs", &SDMemTableWrapper::setRestFreqs)
110 .def("_setcoordinfo", &SDMemTableWrapper::setCoordInfo)
111 .def("_getcoordinfo", &SDMemTableWrapper::getCoordInfo)
112 .def("_gethistory", &SDMemTableWrapper::getHistory)
113 .def("_addhistory", &SDMemTableWrapper::addHistory)
114 .def("_addfit", &SDMemTableWrapper::addFit)
115 .def("_getfit", &SDMemTableWrapper::getSDFitTable)
116 .def("_recalc_azel", &SDMemTableWrapper::calculateAZEL)
117 ;
118};
119
120 } // python
121} // asap
Note: See TracBrowser for help on using the repository browser.