source: XIOS/dev/XIOS_DEV_CMIP6/src/transformation/Functions/max_reduction.cpp @ 1260

Last change on this file since 1260 was 1260, checked in by ymipsl, 7 years ago

Buf fix in reduction. Missing value update was not set correctly

YM

File size: 2.0 KB
RevLine 
[888]1/*!
2   \file max.cpp
3   \author Ha NGUYEN
4   \since 27 June 2016
5   \date 27 June 2016
6
7   \brief max reduction
8 */
[979]9#include "max_reduction.hpp"
[1158]10#include "utils.hpp"
[888]11
12namespace xios {
13
14CMaxReductionAlgorithm::CMaxReductionAlgorithm()
15  : CReductionAlgorithm()
16{
17}
18
19CReductionAlgorithm* CMaxReductionAlgorithm::create()
20{
21  return (new CMaxReductionAlgorithm());
22}
23
24bool CMaxReductionAlgorithm::registerTrans()
25{
26  return registerOperation(TRANS_REDUCE_MAX, CMaxReductionAlgorithm::create);
27}
28
29void CMaxReductionAlgorithm::apply(const std::vector<std::pair<int,double> >& localIndex,
30                                   const double* dataInput,
31                                   CArray<double,1>& dataOut,
[1158]32                                   std::vector<bool>& flagInitial,
[1260]33                                   bool ignoreMissingValue, bool firstPass)
[1158]34{ 
35  if (ignoreMissingValue)
[888]36  {
[1158]37    int nbLocalIndex = localIndex.size();
38    int currentlocalIndex = 0;
[1260]39    if (firstPass) dataOut=std::numeric_limits<double>::quiet_NaN();   
[1158]40    for (int idx = 0; idx < nbLocalIndex; ++idx)
[888]41    {
[1158]42      currentlocalIndex = localIndex[idx].first;     
43      if (!NumTraits<double>::isnan(*(dataInput + idx)))
44      {
45        if (flagInitial[currentlocalIndex])
46        {
47          dataOut(currentlocalIndex) = *(dataInput + idx);
48          flagInitial[currentlocalIndex] = false;
49        }
50        else
51        {
52          dataOut(currentlocalIndex) = std::max(*(dataInput + idx), dataOut(currentlocalIndex));
53        }
54      }
[888]55    }
[1158]56  }
57  else
58  {
59    int nbLocalIndex = localIndex.size();
60    int currentlocalIndex = 0;   
61    for (int idx = 0; idx < nbLocalIndex; ++idx)
[888]62    {
[1158]63      currentlocalIndex = localIndex[idx].first;     
64      if (flagInitial[currentlocalIndex])
65      {
66        dataOut(currentlocalIndex) = *(dataInput + idx);
67        flagInitial[currentlocalIndex] = false;
68      }
69      else
70      {
71        dataOut(currentlocalIndex) = std::max(*(dataInput + idx), dataOut(currentlocalIndex));
72      }
[888]73    }
74  }
75}
76
77}
Note: See TracBrowser for help on using the repository browser.