Ignore:
Timestamp:
09/11/17 17:06:38 (7 years ago)
Author:
ymipsl
Message:

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

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/XIOS_DEV_CMIP6/src/transformation/scalar_algorithm_reduce_axis.cpp

    r1158 r1260  
    8484} 
    8585 
    86 void CScalarAlgorithmReduceAxis::apply(const std::vector<std::pair<int,double> >& localIndex, 
    87                                          const double* dataInput, 
    88                                          CArray<double,1>& dataOut, 
    89                                          std::vector<bool>& flagInitial, 
    90                                        bool ignoreMissingValue) 
     86void CScalarAlgorithmReduceAxis::apply(const std::vector<std::pair<int,double> >& localIndex, const double* dataInput, CArray<double,1>& dataOut, 
     87                                         std::vector<bool>& flagInitial, bool ignoreMissingValue, bool firstPass) 
    9188{ 
    92   reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue); 
     89  reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue, firstPass); 
    9390} 
    9491 
Note: See TracChangeset for help on using the changeset viewer.