Changes in trunk/src/ScantableWrapper.h [1819:1947]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ScantableWrapper.h
r1819 r1947 19 19 #include "MathUtils.h" 20 20 #include "STFit.h" 21 #include "STFitEntry.h" 21 22 #include "Scantable.h" 22 23 #include "STCoordinate.h" … … 83 84 { return table_->getTsys(whichrow); } 84 85 85 std::string getTime(int whichrow=0) const 86 { return table_->getTime(whichrow); } 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)); } 87 90 88 91 double getIntTime(int whichrow=0) const … … 250 253 { table_->reshapeSpectrum( nmin, nmax ); } 251 254 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) const 262 { return table_->getFlagtraFast(whichrow); } 263 264 252 265 private: 253 266 casa::CountedPtr<Scantable> table_;
Note:
See TracChangeset
for help on using the changeset viewer.