Changeset 2336
- Timestamp:
- 10/17/11 19:55:13 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapmath.py
r2320 r2336 1021 1021 mode: operation mode (ADD, SUB, MUL, DIV) 1022 1022 tsys: if True, operate tsys as well 1023 insitu: if False, a new scantable is returned. 1024 Otherwise, the array operation is done in-sitsu. 1023 1025 """ 1024 1026 nrow = scan.nrow() … … 1040 1042 stm._setinsitu( True ) 1041 1043 basesel = s.get_selection() 1042 sel = selector()+basesel 1044 # Make sure basesel comes first to create a new selector instance 1045 sel = basesel+selector() 1043 1046 for irow in range( nrow ): 1044 1047 sel.set_rows( irow )
Note:
See TracChangeset
for help on using the changeset viewer.