Import Geant4 10.5.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2018-06-29 10:58:11 +02:00
parent fe81a77428
commit 6aa23be517
1581 changed files with 124288 additions and 83758 deletions
+5 -3
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4Timer.icc 67970 2013-03-13 10:10:06Z gcosmo $
// $Id: G4Timer.icc 108434 2018-02-14 07:20:56Z gcosmo $
//
//
// ------------------------------------------------------------
@@ -35,13 +35,15 @@ inline
void G4Timer::Start()
{
fValidTimes=false;
fStartRealTime=times(&fStartTimes);
times(&fStartTimes);
fStartRealTime = clock_type::now();
}
inline
void G4Timer::Stop()
{
fEndRealTime=times(&fEndTimes);
times(&fEndTimes);
fEndRealTime = clock_type::now();
fValidTimes=true;
}