source: vendor/nemo/current/NEMOGCM/EXTERNAL/XIOS/src/functor/once.cpp @ 44

Last change on this file since 44 was 44, checked in by cholod, 12 years ago

Load NEMO_TMP into vendor/nemo/current.

File size: 871 bytes
Line 
1#include "once.hpp"
2
3namespace xios
4{
5   namespace func
6   {
7      /// ////////////////////// Définitions ////////////////////// ///
8
9      COnce::COnce(DoubleArray doutput)
10         : SuperClass(StdString("once"), doutput)
11      { /* Ne rien faire de plus */ }
12
13      COnce::~COnce(void)
14      { /* Ne rien faire de plus */ }
15
16      //---------------------------------------------------------------
17
18      void COnce::apply(const DoubleArray _dinput,
19                              DoubleArray _doutput)
20      {
21         const double * it1  = _dinput->data(),
22                      * end1 = _dinput->data() + _dinput->num_elements();
23               double * it   = _doutput->data();
24        for (; it1 != end1; it1++, it++) *it  = *it1;
25      }
26
27      //---------------------------------------------------------------
28
29   } // namespace func
30} // namespace xmlioserver
31
Note: See TracBrowser for help on using the repository browser.