Changeset 3060


Ignore:
Timestamp:
11/17/15 14:31:42 (8 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: Yes CAS-8097

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...


Map new intents (CALIBRATE_ATMOSPHERE#HOT, CALIBRATE_ATMOSPHERE#AMBIENT) into the same source type as previous intent (CALIBRATE_ATMOSPHERE#ON_SOURCE).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/MSFiller.cpp

    r3033 r3060  
    10761076    String m2 = first.substr( epos+1, nextpos-epos-1 ) ;
    10771077    if ( m1.find( "CALIBRATE_" ) == 0 ) {
    1078       if ( m2.find( "ON_SOURCE" ) == 0 )
     1078      if (m2.find( "ON_SOURCE" ) == 0 || m2.find("HOT") == 0 || m2.find("AMBIENT") == 0)
    10791079        st = SrcType::PONCAL ;
    10801080      else if ( m2.find( "OFF_SOURCE" ) == 0 )
Note: See TracChangeset for help on using the changeset viewer.