Changeset 2102 for trunk/python
- Timestamp:
- 04/05/11 15:19:41 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/asapmath.py
r2034 r2102 863 863 verify: verify calibration 864 864 """ 865 import re 865 866 antname = scantab.get_antennaname() 866 867 if ( calmode == 'nod' ): … … 874 875 if ( antname.find( 'APEX' ) != -1 ): 875 876 scal = apexcal( scantab, scannos, calmode, verify ) 876 elif ( antname.find( 'ALMA' ) != -1 or antname.find( 'OSF' ) != -1 ): 877 elif ( antname.find( 'ALMA' ) != -1 or antname.find( 'OSF' ) != -1 878 or re.match('DV[0-9][0-9]$',antname) is not None 879 or re.match('PM[0-9][0-9]$',antname) is not None 880 or re.match('CM[0-9][0-9]$',antname) is not None 881 or re.match('DA[0-9][0-9]$',antname) is not None ): 877 882 scal = almacal( scantab, scannos, calmode, verify ) 878 883 else:
Note:
See TracChangeset
for help on using the changeset viewer.