source: XIOS/trunk/src/transformation/Functions/min_reduction.hpp @ 1261

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

backport of rev1260 in trunk.

YM

File size: 921 bytes
Line 
1/*!
2   \file min.hpp
3   \author Ha NGUYEN
4   \since 27 June 2016
5   \date 27 June 2016
6
7   \brief Min reduction
8 */
9#ifndef __XIOS_REDUCTION_MIN_ALGORITHM_HPP__
10#define __XIOS_REDUCTION_MIN_ALGORITHM_HPP__
11
12#include "reduction.hpp"
13
14namespace xios {
15
16/*!
17  \class CMinReductionAlgorithm
18  Interface for all reduction alogrithms.
19*/
20class CMinReductionAlgorithm : public CReductionAlgorithm
21{
22public:
23  CMinReductionAlgorithm();
24
25  virtual void apply(const std::vector<std::pair<int,double> >& localIndex,
26                     const double* dataInput,
27                     CArray<double,1>& dataOut,
28                     std::vector<bool>& flagInitial,                     
29                     bool ignoreMissingValue, bool firstPass);
30
31  virtual ~CMinReductionAlgorithm() {}
32
33public:
34  static bool registerTrans();
35
36protected:
37  static CReductionAlgorithm* create();
38};
39
40}
41#endif // __XIOS_REDUCTION_MIN_ALGORITHM_HPP__
Note: See TracBrowser for help on using the repository browser.