Changeset 2565 for branches/hpc33/python
- Timestamp:
- 06/12/12 19:23:39 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/hpc33/python/asapmath.py
r2556 r2565 918 918 stm = stmath() 919 919 antname = scantab.get_antennaname() 920 ssub = scantab.get_scan( scannos ) 921 scal = scantable( stm.cwcal( ssub, calmode, antname ) ) 920 selection=selector() 921 selection.set_scans(scannos) 922 orig = scantab.get_selection() 923 scantab.set_selection(orig+selection) 924 ## ssub = scantab.get_scan( scannos ) 925 ## scal = scantable( stm.cwcal( ssub, calmode, antname ) ) 926 scal = scantable( stm.cwcal( scantab, calmode, antname ) ) 927 scantab.set_selection(orig) 922 928 return scal 923 929
Note:
See TracChangeset
for help on using the changeset viewer.