source: trunk/src/python_STGrid.cpp @ 2593

Last change on this file since 2593 was 2593, checked in by Takeshi Nakazato, 12 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

New class asapgrid2 is defined. Difference from asapgrid class is
that input and output is a scantable instance, not a table name.


File size: 1.8 KB
Line 
1//#---------------------------------------------------------------------------
2//# python_STGrid.cc: python exposure of c++ STGrid class
3//#---------------------------------------------------------------------------
4#include <boost/python.hpp>
5#include <boost/python/args.hpp>
6
7#include <string>
8#include <vector>
9
10#include "STGrid.h"
11#include "ScantableWrapper.h"
12
13using namespace boost::python;
14
15namespace asap {
16  namespace python {
17
18void python_STGrid() {
19  class_<STGrid>("stgrid")
20    .def( init <> () )
21    .def( init < const std::string > () )
22    .def( init < const std::vector<std::string> > () )
23    .def("_setif", &STGrid::setIF)
24    .def("_setpollist", &STGrid::setPolList)
25    .def("_setscanlist", &STGrid::setScanList)
26    .def("_defineimage", &STGrid::defineImage)
27    .def("_setfunc", &STGrid::setFunc)
28    .def("_grid", &STGrid::grid)
29    .def("_setin", &STGrid::setFileIn)
30    .def("_setfiles", &STGrid::setFileList)
31    .def("_setweight", &STGrid::setWeight)
32    .def("_enableclip", &STGrid::enableClip)
33    .def("_disableclip", &STGrid::disableClip)
34    .def("_save", &STGrid::saveData)
35    ;
36
37  class_<STGrid2>("stgrid2")
38    .def( init <> () )
39    .def( init < const ScantableWrapper & > () )
40    .def( init < const std::vector<ScantableWrapper> & > () )
41    .def("_setif", &STGrid2::setIF)
42    .def("_setpollist", &STGrid2::setPolList)
43    .def("_setscanlist", &STGrid2::setScanList)
44    .def("_defineimage", &STGrid2::defineImage)
45    .def("_setfunc", &STGrid2::setFunc)
46    .def("_grid", &STGrid2::grid)
47    .def("_setin", &STGrid2::setScantable)
48    .def("_setfiles", &STGrid2::setScantableList)
49    .def("_setweight", &STGrid2::setWeight)
50    .def("_enableclip", &STGrid2::enableClip)
51    .def("_disableclip", &STGrid2::disableClip)
52    .def("_get", &STGrid2::getResultAsScantable)
53    ;
54   
55};
56
57  } // python
58} // asap
Note: See TracBrowser for help on using the repository browser.