Import Geant4 10.3.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2016-06-30 14:12:05 +02:00
parent a654a7ab1f
commit 4ec577e5c4
2021 changed files with 100995 additions and 78277 deletions
+6 -2
View File
@@ -1,4 +1,4 @@
$Id: History 91587 2015-07-27 13:05:01Z gcosmo $
$Id: History 95193 2016-01-29 08:23:25Z gcosmo $
-------------------------------------------------------------------
=========================================================
@@ -17,10 +17,14 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
January 27, 2016, M. Asai (procscore-V10-02-00)
- G4ParallelWorldProcess: change processType from fParameterized
to fParallel and set the processSubType to 491.
July 13, 2015, A. Dotti (procscore-V10-01-01)
- Coverity fix #23298
February 12, 2014, J.Apostolakis (procscore-V10-01-00)
February 12, 2015, J.Apostolakis (procscore-V10-01-00)
- G4ParallelWorldProcess: verbosity to check Update of fieldtrack
(protected with custom flag. )
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4ParallelWorldProcess.hh 68733 2013-04-05 09:45:28Z gcosmo $
// $Id: G4ParallelWorldProcess.hh 95193 2016-01-29 08:23:25Z gcosmo $
// GEANT4 tag $Name: geant4-09-04-ref-00 $
//
//
@@ -79,7 +79,7 @@ public: // with description
//------------------------
G4ParallelWorldProcess(const G4String& processName = "ParaWorld",
G4ProcessType theType = fParameterisation);
G4ProcessType theType = fParallel);
virtual ~G4ParallelWorldProcess();
//--------------------------------------------------------------
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4ParallelWorldProcess.cc 88349 2015-02-16 08:47:16Z gcosmo $
// $Id: G4ParallelWorldProcess.cc 95193 2016-01-29 08:23:25Z gcosmo $
// GEANT4 tag $Name: geant4-09-04-ref-00 $
//
//
@@ -60,9 +60,11 @@ G4int G4ParallelWorldProcess::GetHypNavigatorID()
G4ParallelWorldProcess::
G4ParallelWorldProcess(const G4String& processName,G4ProcessType theType)
:G4VProcess(processName,theType), fGhostNavigator(0), fNavigatorID(-1),
fFieldTrack('0'),layeredMaterialFlag(false)
:G4VProcess(processName,theType),fGhostWorld(nullptr),fGhostNavigator(nullptr),
fNavigatorID(-1),fFieldTrack('0'),fGhostSafety(0.),fOnBoundary(false),
layeredMaterialFlag(false)
{
SetProcessSubType(491);
if(!fpHyperStep) fpHyperStep = new G4Step();
iParallelWorld = ++nParallelWorlds;
@@ -77,10 +79,6 @@ G4ParallelWorldProcess(const G4String& processName,G4ProcessType theType)
fPathFinder = G4PathFinder::GetInstance();
fGhostWorldName = "** NotDefined **";
fGhostWorld = 0;
fGhostSafety = 0.;
fOnBoundary = false;
G4ParallelWorldProcessStore::GetInstance()->SetParallelWorld(this,processName);
if (verboseLevel>0)