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/MSWriter.cpp

    r2190 r2207  
    13621362  *antennaRF = 0 ;
    13631363  RecordFieldPtr<Int> numpolyRF( rec, "NUM_POLY" ) ;
    1364   *numpolyRF = dir.ncolumn() ;
     1364  *numpolyRF = dir.ncolumn() - 1 ;
    13651365  RecordFieldPtr<Double> timeRF( rec, "TIME" ) ;
    13661366  *timeRF = me ;
     
    13761376  *dirRF = dir ;
    13771377  RecordFieldPtr< Array<Double> > targetRF( rec, "TARGET" ) ;
    1378   *dirRF = dir ;
     1378  *targetRF = dir ;
    13791379  row.put( nrow ) ;
    13801380
Note: See TracChangeset for help on using the changeset viewer.