Changeset 2103 for branches


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:
13 edited

Legend:

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

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

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/SConstruct

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/apps

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/external-alma

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/external-alma/atnf/pks/pks_maths.cc

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/getsvnrev.sh

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • 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:
  • branches/casa-prerelease/pre-asap/src

  • branches/casa-prerelease/pre-asap/src/MSFiller.cpp

    r2085 r2103  
    444444//           os_ << "npol = " << npol << LogIO::POST ;
    445445//           os_ << "corrtype = " << corrtype << LogIO::POST ;
    446           sdh.npol = max( sdh.npol, npol ) ;
    447           if ( sdh.poltype == "" ) sdh.poltype = getPolType( corrtype[0] ) ;
    448446          // source information
    449447//           os_ << "srcId = " << srcId << ", spwId = " << spwId << LogIO::POST ;
     
    561559          tcolr = tpoolr->construct( spwtab, "NUM_CHAN" ) ;
    562560          Int nchan = tcolr->asInt( spwId ) ;
     561          Bool iswvr = False ;
     562          if ( nchan == 4 ) iswvr = True ;
    563563          tpoolr->destroy( tcolr ) ;
    564564          Bool even = False ;
     
    645645            scTsysCol.attach( caltabsel, colTsys_ ) ;
    646646          }
     647
     648          sdh.npol = max( sdh.npol, npol ) ;
     649          if ( !iswvr && sdh.poltype == "" ) sdh.poltype = getPolType( corrtype[0] ) ;
     650
    647651//           time1 = gettimeofday_sec() ;
    648652//           os_ << "end 3rd iteration init: " << time1 << " (" << time1-time0 << "sec)" << LogIO::POST ;
  • branches/casa-prerelease/pre-asap/src/SConscript

    • Property svn:mergeinfo changed (with no actual effect on merging)
  • branches/casa-prerelease/pre-asap/src/STMath.cpp

    r2004 r2103  
    25302530  vec = 0;
    25312531  pols->table_.rwKeywordSet().define("nPol", Int(1));
    2532   //pols->table_.rwKeywordSet().define("POLTYPE", String("stokes"));
    2533   pols->table_.rwKeywordSet().define("POLTYPE", in->getPolType());
     2532  pols->table_.rwKeywordSet().define("POLTYPE", String("stokes"));
     2533  //pols->table_.rwKeywordSet().define("POLTYPE", in->getPolType());
    25342534  std::vector<CountedPtr<Scantable> > vpols;
    25352535  vpols.push_back(pols);
Note: See TracChangeset for help on using the changeset viewer.