- Timestamp:
- 02/14/05 17:35:04 (20 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/SDMemTableWrapper.h
r426 r431 83 83 std::vector<float> getStokesSpectrum(int whichRow=0, bool doPol=false, float paOff=0.0) const { 84 84 return table_->getStokesSpectrum(whichRow, doPol, paOff); 85 } 86 87 std::vector<float> getCircularSpectrum(int whichRow=0, bool doRR=true) const { 88 return table_->getCircularSpectrum(whichRow, doRR); 85 89 } 86 90 -
trunk/src/python_SDMemTable.cc
r426 r431 76 76 (boost::python::arg("pol")=false), 77 77 (boost::python::arg("pa")=0.0) ) 78 .def("_getcircularspectrum", &SDMemTableWrapper::getCircularSpectrum, 79 (boost::python::arg("whichRow")=0), 80 (boost::python::arg("rr")=true)) 78 81 .def("_setspectrum",&SDMemTableWrapper::setSpectrum, 79 82 (boost::python::arg("whichRow")=0) )
Note:
See TracChangeset
for help on using the changeset viewer.