source: trunk/src/python_SDMemTable.cc@ 107

Last change on this file since 107 was 106, checked in by mar637, 20 years ago

renaming of functions

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1//#---------------------------------------------------------------------------
2//# python_SDMemTable.cc: python exposure of c++ SDMemTable class
3//#---------------------------------------------------------------------------
4//# Copyright (C) 2004
5//# Malte Marquarding, 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#include "SDMemTableWrapper.h"
36
37using namespace boost::python;
38
39namespace asap {
40 namespace python {
41
42void python_SDMemTable() {
43 class_<SDMemTableWrapper>("sdtable")
44 //.def( init <> () )
45 .def( init < std::string > () )
46 .def( init < const SDMemTableWrapper& > () )
47 .def( init < const SDMemTableWrapper&, std::string > () )
48 .def("_copy", &SDMemTableWrapper::copy)
49 .def("_getscan", &SDMemTableWrapper::getScan)
50 .def("_getsource", &SDMemTableWrapper::getSource)
51 .def("getspectrum", &SDMemTableWrapper::getSpectrum,
52 (boost::python::arg("whichRow")=0) )
53 .def("getabscissa", &SDMemTableWrapper::getAbscissa,
54 (boost::python::arg("whichRow")=0) )
55 .def("getabscissalabel", &SDMemTableWrapper::getAbscissaString,
56 (boost::python::arg("whichRow")=0) )
57 .def("getmask", &SDMemTableWrapper::getMask,
58 (boost::python::arg("whichRow")=0) )
59 .def("_gettsys", &SDMemTableWrapper::getTsys,
60 (boost::python::arg("whichRow")=0),
61 "Return the TSys at the current location" )
62 .def("_getsourcename", &SDMemTableWrapper::getSourceName,
63 (boost::python::arg("whichRow")=0) )
64 .def("_gettime", &SDMemTableWrapper::getTime,
65 (boost::python::arg("whichRow")=0) )
66 .def("getif", &SDMemTableWrapper::getIF)
67 .def("getbeam", &SDMemTableWrapper::getBeam)
68 .def("getpol", &SDMemTableWrapper::getPol)
69 .def("nif", &SDMemTableWrapper::nIF)
70 .def("nbeam", &SDMemTableWrapper::nBeam)
71 .def("npol", &SDMemTableWrapper::nPol)
72 .def("nchan", &SDMemTableWrapper::nChan)
73 .def("nscan", &SDMemTableWrapper::nScan)
74 .def("nrow", &SDMemTableWrapper::nRow)
75 .def("setspectrum",&SDMemTableWrapper::setSpectrum,
76 (boost::python::arg("whichRow")=0) )
77 .def("setif", &SDMemTableWrapper::setIF,
78 (boost::python::arg("whichIF")=0) )
79 .def("setbeam", &SDMemTableWrapper::setBeam)
80 .def("setpol", &SDMemTableWrapper::setPol)
81 .def("setmask", &SDMemTableWrapper::setMask)
82 .def("_flag", &SDMemTableWrapper::flag,
83 (boost::python::arg("whichRow")=-1) )
84 .def("save", &SDMemTableWrapper::makePersistent)
85 .def("summary", &SDMemTableWrapper::summary)
86 .def("_setrestfreqs", &SDMemTableWrapper::setRestFreqs)
87 .def("_setcoordinfo", &SDMemTableWrapper::setCoordInfo)
88 .def("_getcoordinfo", &SDMemTableWrapper::getCoordInfo)
89 ;
90};
91
92 } // python
93} // asap
Note: See TracBrowser for help on using the repository browser.