Import Geant4 8.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 14:36:02 +02:00
parent d93e1e39a9
commit 8a51e0bc40
5471 changed files with 99628 additions and 55248 deletions
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4ProcessManager.cc,v 1.25 2005/02/15 04:38:58 kurasige Exp $
// GEANT4 tag $Name: geant4-07-01 $
// $Id: G4ProcessManager.cc,v 1.27 2005/11/21 03:47:32 kurasige Exp $
// GEANT4 tag $Name: geant4-08-00 $
//
//
// --------------------------------------------------------------
@@ -45,9 +45,6 @@
#include "G4ProcessTable.hh"
#include "G4ios.hh"
#include <strstream>
// ---------------------------------
// function members implementation
@@ -935,13 +932,13 @@ void G4ProcessManager::CreateGPILvectors()
//////////////////////////////////////////
void G4ProcessManager::StartTracking()
void G4ProcessManager::StartTracking(G4Track* aTrack)
{
for (G4int idx = 0; idx<theProcessList->entries(); idx++){
if (GetAttribute(idx)->isActive)
((*theProcessList)[idx])->StartTracking();
((*theProcessList)[idx])->StartTracking(aTrack);
}
duringTracking = true;
if(aTrack) duringTracking = true;
}
/////////////////////////////////////////////