Changeset 2556 for branches/hpc33/python
- Timestamp:
- 06/11/12 12:50:34 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/hpc33/python/asapmath.py
r2366 r2556 935 935 from asap._asap import stmath 936 936 stm = stmath() 937 ssub = scantab.get_scan( scannos ) 938 scal = scantable( stm.almacal( ssub, calmode ) ) 937 selection=selector() 938 selection.set_scans(scannos) 939 orig = scantab.get_selection() 940 scantab.set_selection(orig+selection) 941 ## ssub = scantab.get_scan( scannos ) 942 ## scal = scantable( stm.almacal( ssub, calmode ) ) 943 scal = scantable( stm.almacal( scantab, calmode ) ) 944 scantab.set_selection(orig) 939 945 return scal 940 946
Note:
See TracChangeset
for help on using the changeset viewer.