Changeset 2688


Ignore:
Timestamp:
11/22/12 01:19:42 (11 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:

Put in Release Notes: No

Module(s): Module Names change impacts.

Description: Describe your changes here...

Bug fix on STGrid: BEAMNO for output scantable is properly set.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STGrid.cpp

    r2686 r2688  
    20412041  Int nrow = tab.nrow() ;
    20422042  ScalarColumn<uInt> ifnoCol( tab, "IFNO" ) ;
     2043  ScalarColumn<uInt> beamnoCol(tab, "BEAMNO");
    20432044  ScalarColumn<uInt> freqIdCol( tab, "FREQ_ID" ) ;
    20442045  ScalarColumn<uInt> molIdCol( tab, "MOLECULE_ID" ) ;
     
    20622063  for ( Int i = 0 ; i < nrow ; i++ ) {
    20632064    ifnoCol.put( i, (uInt)ifno_ ) ;
     2065    beamnoCol.put(i, 0);
    20642066    freqIdCol.put( i, freqId ) ;
    20652067    molIdCol.put( i, molId ) ;
Note: See TracChangeset for help on using the changeset viewer.