source: XIOS/dev/dev_olga/src/interface/c/icextract_to_scalar.cpp @ 1567

Last change on this file since 1567 was 1542, checked in by oabramkina, 6 years ago

Replacing Boost's unordered_map and shared_pointer by its STL counterparts.

Two notes for Curie:

  • one can see the content of unordered_map with ddt only if XIOS has been compiled with gnu
  • XIOS will not compile any more with pgi (all available versions use old STL which are not up to the c++11 norms)
File size: 1.5 KB
Line 
1/* ************************************************************************** *
2 *      Copyright © IPSL/LSCE, xios, Avril 2010 - Octobre 2011         *
3 * ************************************************************************** */
4
5#include <boost/multi_array.hpp>
6#include <memory>
7
8#include "xios.hpp"
9
10#include "object_template.hpp"
11#include "group_template.hpp"
12#include "attribute_template.hpp"
13
14#include "icutil.hpp"
15#include "timer.hpp"
16#include "extract_axis_to_scalar.hpp"
17
18extern "C"
19{
20// /////////////////////////////// Définitions ////////////////////////////// //
21
22   // ----------------------- Redéfinition de types ----------------------------
23
24   typedef xios::CExtractAxisToScalar      * XExtractAxisToScalarPtr;
25   
26   // ------------------------ Création des handle -----------------------------
27   void cxios_extract_axis_to_scalar_handle_create(XExtractAxisToScalarPtr * _ret, const char * _id, int _id_len)
28   {
29      std::string id;
30      if (!cstr2string(_id, _id_len, id)) return;
31      CTimer::get("XIOS").resume() ;
32      *_ret = xios::CExtractAxisToScalar::get(id);
33      CTimer::get("XIOS").suspend() ;
34   }
35
36   // -------------------- Vérification des identifiants -----------------------
37   void cxios_extract_axis_to_scalar_valid_id(bool * _ret, const char * _id, int _id_len)
38   {
39      std::string id;
40      if (!cstr2string(_id, _id_len, id)) return;
41
42      CTimer::get("XIOS").resume() ;
43      *_ret = xios::CExtractAxisToScalar::has(id);
44      CTimer::get("XIOS").suspend() ;
45   }
46
47} // extern "C"
Note: See TracBrowser for help on using the repository browser.