Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ScantableWrapper.h

    r1819 r1947  
    1919#include "MathUtils.h"
    2020#include "STFit.h"
     21#include "STFitEntry.h"
    2122#include "Scantable.h"
    2223#include "STCoordinate.h"
     
    8384    { return table_->getTsys(whichrow); }
    8485
    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)); }
    8790
    8891  double getIntTime(int whichrow=0) const
     
    250253  { table_->reshapeSpectrum( nmin, nmax ); }
    251254
     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
    252265private:
    253266  casa::CountedPtr<Scantable> table_;
Note: See TracChangeset for help on using the changeset viewer.