Ignore:
Timestamp:
04/05/11 15:36:14 (13 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Merged bug fixes in trunk (r2101).


Location:
branches/casa-prerelease/pre-asap
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/casa-prerelease/pre-asap

    • Property svn:mergeinfo changed
      /trunkmerged: 2102
  • branches/casa-prerelease/pre-asap/python

  • branches/casa-prerelease/pre-asap/python/asapmath.py

    r2034 r2103  
    863863        verify:        verify calibration
    864864    """
     865    import re
    865866    antname = scantab.get_antennaname()
    866867    if ( calmode == 'nod' ):
     
    874875        if ( antname.find( 'APEX' ) != -1 ):
    875876            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 ):
    877882            scal = almacal( scantab, scannos, calmode, verify )
    878883        else:
Note: See TracChangeset for help on using the changeset viewer.