source: XIOS/dev/dev_olga/src/timer.hpp @ 1132

Last change on this file since 1132 was 688, checked in by mhnguyen, 9 years ago

Integrating remap library into XIOS

+) Change name of some files of remap library to be compatible with XIOS
+) Implement function to fill in automatically boundary longitude and latitude

Test
+) On Curie
+) test_remap correct

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 534 bytes
Line 
1#ifndef __XIOS_TIMER_HPP__
2#define __XIOS_TIMER_HPP__
3
4#include <string>
5#include <map>
6
7namespace xios
8{
9  class CTimer
10  {
11    public:
12      double cumulatedTime;
13      double lastTime;
14      bool suspended;
15      std::string name;
16
17      CTimer(const std::string& name);
18      void suspend(void);
19      void resume(void);
20      void reset(void);
21      double getCumulatedTime(void);
22      static std::map<std::string,CTimer> allTimer;
23      static double getTime(void);
24      static CTimer& get(std::string name);
25  };
26}
27
28
29
30#endif
Note: See TracBrowser for help on using the repository browser.