Changes in trunk/src/python_Scantable.cpp [1819:1947]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/python_Scantable.cpp
r1819 r1947 99 99 .def("_getparangle", &ScantableWrapper::getParAngle, 100 100 (boost::python::arg("whichrow")=0) ) 101 //.def("_gettime", &ScantableWrapper::getTime, 102 // (boost::python::arg("whichrow")=0) ) 101 103 .def("_gettime", &ScantableWrapper::getTime, 102 (boost::python::arg("whichrow")=0) ) 104 (boost::python::arg("whichrow")=0, 105 boost::python::arg("prec")=0) ) 103 106 .def("_getinttime", &ScantableWrapper::getIntTime, 104 107 (boost::python::arg("whichrow")=0) ) … … 139 142 (boost::python::arg("nmin")=-1, 140 143 boost::python::arg("nmax")=-1) ) 144 .def("_poly_baseline", &ScantableWrapper::polyBaseline) 145 .def("_poly_baseline_batch", &ScantableWrapper::polyBaselineBatch) 146 .def("_getflagtrafast", &ScantableWrapper::getFlagtraFast, 147 (boost::python::arg("whichrow")=0) ) 141 148 ; 142 149 };
Note:
See TracChangeset
for help on using the changeset viewer.