Changeset 2815


Ignore:
Timestamp:
06/26/13 23:05:31 (11 years ago)
Author:
Kana Sugimoto
Message:

New Development: No

JIRA Issue: Yes (CAS-5308, CSV-2867)

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: sd.splitant('single dish measurement set',freq_tolsr=False)

# open the generated scantables and make sure the keyword, FRAME, in FREQUENCIES subtable is equal to the value of BASEFRAME.

Put in Release Notes: No

Module(s): MSFiller, scantable, import of MS

Description: Modified MSFiller so that the value of FRAME keyword in FREQUENCIES table is set equal to the value of BASEFRAME, when importing MS to scantable.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/MSFiller.cpp

    r2775 r2815  
    17561756  // SUBTABLES: FREQUENCIES
    17571757  //string freqFrame = getFrame() ;
    1758   string freqFrame = "LSRK" ;
    1759   table_->frequencies().setFrame( freqFrame ) ;
    17601758  if ( freqToLsr_ ) {
     1759    string freqFrame = "LSRK" ;
     1760    table_->frequencies().setFrame( freqFrame ) ;
    17611761    table_->frequencies().setFrame( freqFrame, True ) ;
    17621762  }
    17631763  else {
    17641764    string baseFrame = frameFromSpwTable() ;
     1765    table_->frequencies().setFrame( baseFrame ) ;
    17651766    table_->frequencies().setFrame( baseFrame, True ) ;
    17661767  }
Note: See TracChangeset for help on using the changeset viewer.