xc
Timer.h
1 //----------------------------------------------------------------------------
2 // XC program; finite element analysis code
3 // for structural analysis and design.
4 //
5 // Copyright (C) Luis Claudio Pérez Tato
6 //
7 // This program derives from OpenSees <http://opensees.berkeley.edu>
8 // developed by the «Pacific earthquake engineering research center».
9 //
10 // Except for the restrictions that may arise from the copyright
11 // of the original program (see copyright_opensees.txt)
12 // XC is free software: you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation, either version 3 of the License, or
15 // (at your option) any later version.
16 //
17 // This software is distributed in the hope that it will be useful, but
18 // WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU General Public License for more details.
21 //
22 //
23 // You should have received a copy of the GNU General Public License
24 // along with this program.
25 // If not, see <http://www.gnu.org/licenses/>.
26 //----------------------------------------------------------------------------
27 /* ****************************************************************** **
28 ** OpenSees - Open System for Earthquake Engineering Simulation **
29 ** Pacific Earthquake Engineering Research Center **
30 ** **
31 ** **
32 ** (C) Copyright 1999, The Regents of the University of California **
33 ** All Rights Reserved. **
34 ** **
35 ** Commercial use of this program without express permission of the **
36 ** University of California, Berkeley, is strictly prohibited. See **
37 ** file 'COPYRIGHT' in main directory for information on usage and **
38 ** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. **
39 ** **
40 ** Developed by: **
41 ** Frank McKenna (fmckenna@ce.berkeley.edu) **
42 ** Gregory L. Fenves (fenves@ce.berkeley.edu) **
43 ** Filip C. Filippou (filippou@ce.berkeley.edu) **
44 ** **
45 ** ****************************************************************** */
46 
47 // $Revision: 1.4 $
48 // $Date: 2003/02/14 23:02:12 $
49 // $Source: /usr/local/cvs/OpenSees/SRC/utility/Timer.h,v $
50 
51 
52 // File: ~/utility/Timer.h
53 //
54 // Written: fmk
55 // Created: Mar 1997
56 // Revision: A
57 //
58 // Description: This file contains the class definition for Timer.
59 // Timer is a stopwatch.
60 //
61 // What: "@(#) Timer.h, revA"
62 
63 #ifndef Timer_h
64 #define Timer_h
65 
66 #ifdef _WIN32
67 
68 #else
69 #ifdef _MAC
70 #include <sys/time.h>
71 #else
72 
73 #include <time.h>
74 #include <unistd.h>
75 
76 #endif
77 #include <sys/times.h>
78 #include <sys/resource.h>
79 #endif
80 
81 #include <iostream>
82 
83 namespace XC {
85 
91 class Timer
92  {
93  private:
94  clock_t t1, t2;
95  struct tms tmsstart, tmsend;
96  struct rusage r1usage, r2usage;
97  struct rusage *r1us, *r2us;
98  public:
99  Timer(void);
100 
101  void start(void);
102  void pause(void);
103  double getReal(void) const;
104  double getCPU(void) const;
105  int getNumPageFaults(void) const;
106 
107  virtual void Print(std::ostream &s) const;
108  friend std::ostream &operator<<(std::ostream &, const Timer &);
109  };
110 std::ostream &operator<<(std::ostream &, const Timer &);
111 } // end of XC namespace
112 
113 
114 #endif
115 
void pause(void)
Sets the accounting variables to mark the end of accounting period using the unix functions times() a...
Definition: Timer.cpp:92
double getCPU(void) const
Uses the difference between the starting and ending accounting variables to determine the CPU time al...
Definition: Timer.cpp:113
int getNumPageFaults(void) const
Uses the difference between the starting and ending accounting variables to determine the number of p...
Definition: Timer.cpp:124
Timer(void)
Default constructor.
Definition: Timer.cpp:76
double getReal(void) const
Uses the difference between the starting and ending accounting variables to determine the elapsed rea...
Definition: Timer.cpp:102
Measure of system resources.
Definition: Timer.h:91
virtual void Print(std::ostream &s) const
Uses the difference between the starting and ending accounting variables to determine the real time...
Definition: Timer.cpp:137
Open source finite element program for structural analysis.
Definition: ContinuaReprComponent.h:34
void start(void)
Sets the accounting variables to mark the start of accounting period using the unix functions times()...
Definition: Timer.cpp:84