Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4SliceTimer.hh File Reference
#include <unistd.h>
#include <sys/times.h>
#include "G4Types.hh"
#include "G4ios.hh"
#include "G4SliceTimer.icc"

Go to the source code of this file.

Classes

class  G4SliceTimer
 

Macros

#define times   ostimes
 

Functions

std::ostream & operator<< (std::ostream &os, const G4SliceTimer &t)
 

Macro Definition Documentation

◆ times

#define times   ostimes

Definition at line 137 of file G4SliceTimer.hh.

Function Documentation

◆ operator<<()

std::ostream & operator<< ( std::ostream &  os,
const G4SliceTimer t 
)

Definition at line 48 of file G4SliceTimer.cc.

49{
50 if (t.IsValid())
51 {
52 os << "User=" << t.GetUserElapsed()
53 << "s Real=" << t.GetRealElapsed()
54 << "s Sys=" << t.GetSystemElapsed() << "s";
55 }
56 else
57 {
58 os << "User=****s Real=****s Sys=****s";
59 }
60 return os;
61}
G4double GetUserElapsed() const
Definition: G4SliceTimer.cc:79
G4double GetSystemElapsed() const
Definition: G4SliceTimer.cc:74
G4bool IsValid() const
G4double GetRealElapsed() const
Definition: G4SliceTimer.cc:69