Changeset 1683 for branches/alma


Ignore:
Timestamp:
02/04/10 16:38:46 (14 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready to Release: Yes/No?

Interface Changes: Yes/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...

Fixed regression failure.


Location:
branches/alma/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/src/STFiller.cpp

    r1674 r1683  
    387387    *rbCol = rb;
    388388    RecordFieldPtr<uInt> ifCol(rec, "IFNO");
    389     //*ifCol = pksrec.IFno-ifOffset_- 1;
     389    *ifCol = pksrec.IFno-ifOffset_- 1;
    390390    uInt id;
    391391    /// @todo this has to change when nchan isn't global anymore
     
    402402    RecordFieldPtr<uInt> mfreqidCol(rec, "FREQ_ID");
    403403    *mfreqidCol = id;
    404     *ifCol = id;
     404    //*ifCol = id;
    405405
    406406    id = table_->molecules().addEntry(pksrec.restFreq);
  • branches/alma/src/STWriter.cpp

    r1672 r1683  
    189189      while (!cycit.pastEnd() ) {
    190190        Table ctable = cycit.table();
    191         TableIterator ifit(ctable, "IFNO");
     191        TableIterator ifit(ctable, "IFNO", TableIterator::Ascending, TableIterator::HeapSort);
    192192        MDirection::ScalarColumn dirCol(ctable, "DIRECTION");
    193193        pksrec.direction = dirCol(0).getAngle("rad").getValue();
Note: See TracChangeset for help on using the changeset viewer.