source: XIOS/dev/XIOS_DEV_CMIP6/src/filter/file_writer_filter.cpp @ 1474

Last change on this file since 1474 was 1474, checked in by oabramkina, 6 years ago

DEV_CMIP6: porting changes in r1471.

Now DEV_CMIP6 compiles with PGI.

File size: 1.3 KB
RevLine 
[638]1#include "file_writer_filter.hpp"
2#include "exception.hpp"
3#include "field.hpp"
[1158]4#include "utils.hpp"
[638]5
6namespace xios
7{
[639]8  CFileWriterFilter::CFileWriterFilter(CGarbageCollector& gc, CField* field)
9    : CInputPin(gc, 1)
[638]10    , field(field)
11  {
12    if (!field)
13      ERROR("CFileWriterFilter::CFileWriterFilter(CField* field)",
14            "The field cannot be null.");
15  }
16
17  void CFileWriterFilter::onInputReady(std::vector<CDataPacketPtr> data)
18  {
[1201]19    const bool detectMissingValue = (!field->detect_missing_value.isEmpty()
20                                      && !field->default_value.isEmpty()
21                                      && field->detect_missing_value == true);
[1251]22
23    CArray<double, 1> dataArray = (detectMissingValue) ? data[0]->data.copy() : data[0]->data;
24
[1201]25    if (detectMissingValue)
[1158]26    {
[1201]27      const double missingValue = field->default_value;
[1251]28      const size_t nbData = dataArray.numElements();
[1158]29      for (size_t idx = 0; idx < nbData; ++idx)
30      {
[1474]31        if (NumTraits<double>::isNan(dataArray(idx)))
[1251]32          dataArray(idx) = missingValue;
[1158]33      }
[1201]34    }
[1158]35
[1251]36    field->sendUpdateData(dataArray);
[638]37  }
[1158]38
[1358]39  bool CFileWriterFilter::mustAutoTrigger() const
40  {
41    return true;
42  }
43
[1158]44  bool CFileWriterFilter::isDataExpected(const CDate& date) const
45  {
46    return true;
47  }
[638]48} // namespace xios
Note: See TracBrowser for help on using the repository browser.