- Timestamp:
- 10/17/12 11:08:53 (12 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Scantable.h
r2666 r2667 320 320 int getScan(int whichrow) const { return scanCol_(whichrow); } 321 321 322 std::vector<uint> getCycleNos() const { return getNumbers(cycleCol_); } 323 int getCycle(int whichrow) const { return cycleCol_(whichrow); } 324 322 325 //TT addition 323 326 std::vector<uint> getMolNos() {return getNumbers(mmolidCol_); } … … 334 337 335 338 int ncycle(int scanno=-1) const; 336 int getCycle(int whichrow) const { return cycleCol_(whichrow); } 339 337 340 338 341 double getInterval(int whichrow) const -
trunk/src/ScantableWrapper.h
r2645 r2667 159 159 std::vector<uint> getPolNos() { return table_->getPolNos(); } 160 160 int getPol(int whichrow) const {return table_->getPol(whichrow);} 161 std::vector<uint> getCycleNos() { return table_->getCycleNos(); } 161 162 int getCycle(int whichrow) const {return table_->getCycle(whichrow);} 162 163 std::vector<uint> getScanNos() { return table_->getScanNos(); } -
trunk/src/python_Scantable.cpp
r2665 r2667 58 58 .def("getscannos", &ScantableWrapper::getScanNos) 59 59 .def("getcycle", &ScantableWrapper::getCycle) 60 .def("getcyclenos", &ScantableWrapper::getCycleNos) 60 61 .def("getmolnos", &ScantableWrapper::getMolNos) 61 62 .def("nif", &ScantableWrapper::nif,
Note:
See TracChangeset
for help on using the changeset viewer.