Simpatico  v1.10
DdTimer.h
1 #ifndef DDMD_TIMER_H
2 #define DDMD_TIMER_H
3 
4 /*
5 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 #include <util/containers/DArray.h>
12 #include <util/global.h>
13 
14 namespace DdMd
15 {
16 
17  using namespace Util;
18 
24  class DdTimer
25  {
26 
27  public:
28 
29  DdTimer(int size = 0);
30  ~DdTimer();
31 
35  void clear();
36 
40  void start();
41 
45  void stamp(int id);
46 
50  void stop();
51 
55  double time(int id) const;
56 
60  double time() const;
61 
62  #ifdef UTIL_MPI
63 
66  void reduce(MPI::Intracomm& communicator);
67  #endif
68 
69  private:
70 
71  DArray<double> times_;
72  double previous_;
73  double begin_;
74  double time_;
75  int size_;
76 
77  };
78 
79 }
80 #endif
File containing preprocessor macros for error handling.
Parallel domain decomposition (DD) MD simulation.
Utility classes for scientific computation.
Definition: accumulators.mod:1
Class for measuring time intervals.
Definition: DdTimer.h:24