Changes in trunk/src/ScantableWrapper.h [1947:1819]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ScantableWrapper.h
r1947 r1819 19 19 #include "MathUtils.h" 20 20 #include "STFit.h" 21 #include "STFitEntry.h"22 21 #include "Scantable.h" 23 22 #include "STCoordinate.h" … … 84 83 { return table_->getTsys(whichrow); } 85 84 86 //std::string getTime(int whichrow=0) const 87 // { return table_->getTime(whichrow); } 88 std::string getTime(int whichrow=0, int prec = 0) const 89 { return table_->getTime(whichrow, true, casa::uInt(prec)); } 85 std::string getTime(int whichrow=0) const 86 { return table_->getTime(whichrow); } 90 87 91 88 double getIntTime(int whichrow=0) const … … 253 250 { table_->reshapeSpectrum( nmin, nmax ); } 254 251 255 STFitEntry polyBaseline(const std::vector<bool>& mask, int order, int rowno)256 { return table_->polyBaseline(mask, order, rowno); }257 258 void polyBaselineBatch(const std::vector<bool>& mask, int order)259 { table_->polyBaselineBatch(mask, order); }260 261 bool getFlagtraFast(int whichrow=0) const262 { return table_->getFlagtraFast(whichrow); }263 264 265 252 private: 266 253 casa::CountedPtr<Scantable> table_;
Note:
See TracChangeset
for help on using the changeset viewer.