Changeset 1837


Ignore:
Timestamp:
08/03/10 15:52:36 (14 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes/No?

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: unit test for sdsave (will be available soon)

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Bug fix on STFiller for NRO data according to an upgrade
Scantable v2 to v3.

The unit test for sdsave task, which tests to read various
types of supported data format, will be ready soon.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/STFiller.cpp

    r1819 r1837  
    794794      RecordFieldPtr<Float> elCol(rec, "ELEVATION") ;
    795795      *elCol = elevation ;
    796       RecordFieldPtr<Float> parCol(rec, "PARANGLE") ;
    797       *parCol = parangle ;
     796      //RecordFieldPtr<Float> parCol(rec, "PARANGLE") ;
     797      //*parCol = parangle ;
    798798      RecordFieldPtr<Float> tauCol(rec, "OPACITY") ;
    799799      *tauCol = opacity ;
     
    802802      RecordFieldPtr<Int> fitCol(rec, "FIT_ID") ;
    803803      *fitCol = fitid ;
    804       RecordFieldPtr<uInt> mfocusidCol(rec, "FOCUS_ID") ;
    805       *mfocusidCol = focusid ;
     804      //RecordFieldPtr<uInt> mfocusidCol(rec, "FOCUS_ID") ;
     805      //*mfocusidCol = focusid ;
     806      RecordFieldPtr<uInt> mfocusidCol(rec, "FOCUS_ID");
     807      id = table_->focus().addEntry(parangle, 0.0, 0.0, 0.0 ) ;
     808      *mfocusidCol = id;
    806809      RecordFieldPtr<uInt> mweatheridCol(rec, "WEATHER_ID") ;
    807810      id = table_->weather().addEntry( temperature,
Note: See TracChangeset for help on using the changeset viewer.