Merge branch 'master' of ssh://opencfd@repo.or.cz/srv/git/OpenFOAM-1.5.x
[freefoam.git] / src / OSspecific / Unix / clockTime / clockTime.H
blob62d6b8d8f80da0075eeb92be167d19edd1e6ef77
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::clockTime
28 Description
29     Starts timing (using rtc) and returns elapsed time from start.
30     Better resolution (2uSec instead of ~20mSec) than cpuTime.
32 SourceFiles
33     clockTime.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef clockTime_H
38 #define clockTime_H
40 #include <sys/types.h>
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 /*---------------------------------------------------------------------------*\
48                            Class clockTime Declaration
49 \*---------------------------------------------------------------------------*/
51 class clockTime
53     // Private data
55         struct timeval startTime_;
56         mutable struct timeval lastTime_;
57         mutable struct timeval newTime_;
59         static void getTime(struct timeval& t);
61         static double timeDifference
62         (
63             const struct timeval& start,
64             const struct timeval& end
65         );
68 public:
70     // Constructors
72         //- Construct from components
73         clockTime();
76     // Member Functions
78         // Access
80             //- Returns CPU time from start of run
81             double elapsedTime() const;
83             //- Returns CPU time from last call of clockTimeIncrement()
84             double timeIncrement() const;
88 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
90 } // End namespace Foam
92 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
94 #endif
96 // ************************************************************************* //