Changeset 2015


Ignore:
Timestamp:
02/28/11 17:58:37 (13 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: Yes (CAS-1425)

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs: scantable.parse_maskexpr()

Put in Release Notes: No

Module(s): scantable

Description: select all channels in all IFs for .


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r2013 r2015  
    12831283                         are partitioned by a colon, ':'.
    12841284                     examples:
     1285                         ''          = all IFs (all channels)
    12851286                         '<2,4~6,9'  = IFs 0,1,4,5,6,9 (all channels)
    12861287                         '3:3~45;60' = channels 3 to 45 and 60 in IF 3
     
    12991300        frequnit = self.get_unit()
    13001301        seldict = {}
     1302        if maskstring == "":
     1303            maskstring = str(valid_ifs)[1:-1]
    13011304        ## split each selection
    13021305        sellist = maskstring.split(',')
Note: See TracChangeset for help on using the changeset viewer.