// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4Timer.cc,v 1.15 2006/06/29 19:04:30 gunter Exp $ // GEANT4 tag $Name: geant4-09-03 $ // // // ---------------------------------------------------------------------- // class G4Timer // // Implementation // 29.04.97 G.Cosmo Added timings for Windows systems #include "G4Timer.hh" #include "G4ios.hh" #undef times // Global error function void G4Exception(const char* s=0); #if defined(IRIX6_2) # if defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE_EXTENDED==1) # define __vfork vfork # endif #endif #ifdef WIN32 # include # include // extract milliseconds time unit int sysconf(int a){ if( a == _SC_CLK_TCK ) return 1000; else return 0; } static clock_t filetime2msec( FILETIME* t ){ return (clock_t)((((float)t->dwHighDateTime)*429496.7296)+ (((float)t->dwLowDateTime)*.0001) ); } clock_t times(struct tms * t){ FILETIME ct = {0,0}, et = {0,0}, st = {0,0}, ut = {0,0}, rt = {0,0}; SYSTEMTIME realtime; GetSystemTime( &realtime ); SystemTimeToFileTime( &realtime, &rt ); // get real time in 10^-9 sec if( t != 0 ){ GetProcessTimes( GetCurrentProcess(), &ct, &et, &st, &ut);// get process time in 10^-9 sec t->tms_utime = t->tms_cutime = filetime2msec(&ut); t->tms_stime = t->tms_cstime = filetime2msec(&st); } return filetime2msec(&rt); } #endif /* WIN32 */ // Print timer status n std::ostream std::ostream& operator << (std::ostream& os, const G4Timer& t) { if (t.IsValid()) { os << "User=" << t.GetUserElapsed() << "s Real=" << t.GetRealElapsed() << "s Sys=" << t.GetSystemElapsed() << "s"; } else { os << "User=****s Real=****s Sys=****s"; } return os; } G4Timer::G4Timer() : fValidTimes(false) { } G4double G4Timer::GetRealElapsed() const { if (!fValidTimes) { G4Exception("G4Timer::GetRealElapsed - Timer not stopped or times not recorded"); } G4double diff=fEndRealTime-fStartRealTime; return diff/sysconf(_SC_CLK_TCK); } G4double G4Timer::GetSystemElapsed() const { if (!fValidTimes) { G4Exception("G4Timer::GetSystemElapsed - Timer not stopped or times not recorded"); } G4double diff=fEndTimes.tms_stime-fStartTimes.tms_stime; return diff/sysconf(_SC_CLK_TCK); } G4double G4Timer::GetUserElapsed() const { if (!fValidTimes) { G4Exception("G4Timer::GetUserElapsed - Timer not stopped or times not recorded"); } G4double diff=fEndTimes.tms_utime-fStartTimes.tms_utime; return diff/sysconf(_SC_CLK_TCK); }