Changeset 2973 for trunk


Ignore:
Timestamp:
07/09/14 16:22:57 (10 years ago)
Author:
WataruKawasaki
Message:

New Development: No

JIRA Issue: Yes CAS-6599

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs: test_sdstat

Put in Release Notes:

Module(s): sd

Description: modified scantable.stats() so that the output of sdstat have None value for flagged rows.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r2966 r2973  
    968968                    refstr = ('(@ %'+form) % (qx['value'])+' ['+qx['unit']+'])'
    969969
    970             if skip_flaggedrow and self._getflagrow(i): continue
     970            if skip_flaggedrow and self._getflagrow(i):
     971                statvals[i] = None
     972                continue
    971973
    972974            tm = self._gettime(i)
Note: See TracChangeset for help on using the changeset viewer.