Ignore:
Timestamp:
11/05/09 21:47:49 (15 years ago)
Author:
WataruKawasaki
Message:

New Development: Yes

JIRA Issue: Yes (CAS-1433)

Ready to Release: Yes

Interface Changes: Yes

What Interface Changed: functionalities for row-based flagging added

Test Programs:

Put in Release Notes: No

Module(s): sdflag

Description: Added the following functionalities:

sd.scantable._flag_row()

  • to execute row-based flagging

sd.scantable._getflagrow()

  • to get row-based flagging info


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/src/ScantableWrapper.h

    r1446 r1656  
    108108    { table_->flag(msk, unflag); }
    109109
     110  void flagRow(const std::vector<casa::uInt>& rows=std::vector<casa::uInt>(), bool unflag=false)
     111    { table_->flagRow(rows, unflag); }
     112
     113  bool getFlagRow(int whichrow=0) const
     114    { return table_->getFlagRow(whichrow); }
     115
    110116  std::string getSourceName(int whichrow=0) const
    111117    { return table_->getSourceName(whichrow); }
Note: See TracChangeset for help on using the changeset viewer.