- Timestamp:
- 02/23/05 14:02:31 (20 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/SDMemTableWrapper.h
r494 r505 86 86 } 87 87 // 88 std::vector<float> getStokesSpectrum(int whichRow=0, bool linPol=false, 89 float paOff=0.0) const { 90 return table_->getStokesSpectrum(whichRow, linPol, paOff); 88 std::vector<float> getStokesSpectrum(int whichRow=0, bool linPol=false) const { 89 return table_->getStokesSpectrum(whichRow, linPol); 91 90 } 92 91 -
trunk/src/python_SDMemTable.cc
r494 r505 73 73 .def("_getstokesspectrum", &SDMemTableWrapper::getStokesSpectrum, 74 74 (boost::python::arg("whichRow")=0), 75 (boost::python::arg("linpol")=false), 76 (boost::python::arg("pa")=0.0) ) 75 (boost::python::arg("linpol")=false) ) 77 76 .def("_stokestopolspectrum", &SDMemTableWrapper::stokesToPolSpectrum, 78 77 (boost::python::arg("whichRow")=0),
Note:
See TracChangeset
for help on using the changeset viewer.