source: XIOS/dev/dev_olga/src/transformation/Functions/min_reduction.hpp @ 1158

Last change on this file since 1158 was 1158, checked in by oabramkina, 7 years ago

Two server levels: merging with trunk r1137.
There are bugs.

File size: 905 bytes
RevLine 
[888]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,
[1158]28                     std::vector<bool>& flagInitial,                     
29                     bool ignoreMissingValue);
[888]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.