Ignore:
Timestamp:
07/06/11 13:13:16 (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...

If getPt_ is True, path to POINTING subtable is not stored in header
keyword.

Bug fix on MSWriter:

write TARGET column in POINTING table
NUM_POLY must be dir.ncolumn()-1, not dir.ncolumn()


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/MSFiller.cpp

    r2206 r2207  
    979979
    980980  // save path to POINTING table
    981   // 2011/3/2 TN
    982   // So far, path to original POINTING table is always stored
    983   // since sd tasks and regressions don't support getpt control
    984   //if ( !getPt_ ) {
     981  // 2011/07/06 TN
     982  // Path to POINTING table in original MS will not be written
     983  // if getPt_ is True
    985984  Path datapath( tablename_ ) ;
    986   String pTabName = datapath.absoluteName() + "/POINTING" ;
    987   stab.rwKeywordSet().define( "POINTING", pTabName ) ;
    988   //}
     985  if ( !getPt_ ) {
     986    String pTabName = datapath.absoluteName() + "/POINTING" ;
     987    stab.rwKeywordSet().define( "POINTING", pTabName ) ;
     988  }
    989989
    990990  // for GBT
Note: See TracChangeset for help on using the changeset viewer.