Ignore:
Timestamp:
07/09/12 16:54:10 (12 years ago)
Author:
Takeshi Nakazato
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/python_STGrid.cpp

    r2526 r2593  
    99
    1010#include "STGrid.h"
    11 //#include "STGridWrapper.h"
     11#include "ScantableWrapper.h"
    1212
    1313using namespace boost::python;
     
    1717
    1818void python_STGrid() {
    19   //class_<STGridWrapper>("stgrid")
    2019  class_<STGrid>("stgrid")
    2120    .def( init <> () )
     
    3534    .def("_save", &STGrid::saveData)
    3635    ;
     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   
    3755};
    3856
Note: See TracChangeset for help on using the changeset viewer.