Changeset 1210 for XIOS


Ignore:
Timestamp:
07/11/17 18:04:13 (7 years ago)
Author:
rlacroix
Message:

Fix: The freq_offset was not applied to the end-of-file notification when reading fields.

Location:
XIOS
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_olga/src/filter/source_filter.cpp

    r1201 r1210  
    9999  void CSourceFilter::signalEndOfStream(CDate date) 
    100100  { 
     101    date = date + offset; // this is a temporary solution, it should be part of a proper temporal filter 
     102 
    101103    CDataPacketPtr packet(new CDataPacket); 
    102104    packet->date = date; 
  • XIOS/trunk/src/filter/source_filter.cpp

    r1186 r1210  
    9999  void CSourceFilter::signalEndOfStream(CDate date) 
    100100  { 
     101    date = date + offset; // this is a temporary solution, it should be part of a proper temporal filter 
     102 
    101103    CDataPacketPtr packet(new CDataPacket); 
    102104    packet->date = date; 
Note: See TracChangeset for help on using the changeset viewer.