Ignore:
Timestamp:
07/31/13 19:18:39 (11 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: Renamed function names which previously didn't properly express the nature of functions.

Test Programs:

Put in Release Notes: No

Module(s):

Description:

Renamed function names after the discussion with Wataru.
New names:

  • python_Scantable::_is_all_chan_flagged (was: _getflagtrafast)
  • ScantableWrapper::isAllChannelsFlagged (was: getFlagtraFast)
  • Scantable::isAllChannelsFlagged (was: getFlagtraFast)

Also, isAllChannelsFlagged checks FLAGROW value.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Scantable.cpp

    r2819 r2831  
    24852485}
    24862486
    2487 bool Scantable::getFlagtraFast(uInt whichrow)
    2488 {
     2487bool Scantable::isAllChannelsFlagged(uInt whichrow)
     2488{
     2489  uInt rflag;
     2490  flagrowCol_.get(whichrow, rflag);
     2491  if (rflag > 0)
     2492    return true;
    24892493  uChar flag;
    24902494  Vector<uChar> flags;
Note: See TracChangeset for help on using the changeset viewer.