Changeset 2167


Ignore:
Timestamp:
05/16/11 22:24:52 (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...

Support separator '#' for OBS_MODE string in MS (STATE table)
that is created by importasdm task.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/MSFiller.cpp

    r2164 r2167  
    10511051    sep = "." ;
    10521052  }
     1053  else if ( tmpStr.find( "#" ) != String::npos ) {
     1054    sep = "#" ;
     1055  }
    10531056  //else if ( obsMode.find( "_" ) != String::npos ) {
    10541057  else if ( tmpStr.find( "_" ) != String::npos ) {
     
    11061109    }
    11071110  }
    1108   else if ( sep == "." ) {
    1109     // sep == "."
     1111  else if ( sep == "." || sep == "#" ) {
     1112    // sep == "." or "#"
    11101113    //
    11111114    // ALMA & EVLA case (MS via ASDM) before3.1
Note: See TracChangeset for help on using the changeset viewer.