Changeset 505


Ignore:
Timestamp:
02/23/05 14:02:31 (19 years ago)
Author:
kil064
Message:

remove pa offset from getSTokesSpectrum

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDMemTableWrapper.h

    r494 r505  
    8686  }
    8787//
    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);
    9190  }
    9291
  • trunk/src/python_SDMemTable.cc

    r494 r505  
    7373    .def("_getstokesspectrum", &SDMemTableWrapper::getStokesSpectrum,
    7474         (boost::python::arg("whichRow")=0),
    75          (boost::python::arg("linpol")=false),
    76          (boost::python::arg("pa")=0.0) )
     75         (boost::python::arg("linpol")=false) )
    7776    .def("_stokestopolspectrum", &SDMemTableWrapper::stokesToPolSpectrum,
    7877         (boost::python::arg("whichRow")=0),
Note: See TracChangeset for help on using the changeset viewer.