Import Geant4 10.5.0 source tree

This commit is contained in:
Gabriele Cosmo
2018-12-07 15:15:39 +01:00
parent 6aa23be517
commit db49709b53
11370 changed files with 187480 additions and 160142 deletions
@@ -24,7 +24,6 @@
// ********************************************************************
//
//
// $Id: G4VProcess.cc 105271 2017-07-18 07:35:12Z gcosmo $
//
//
// --------------------------------------------------------------
@@ -51,8 +50,8 @@
#include "G4Log.hh"
G4VProcess::G4VProcess(const G4String& aName, G4ProcessType aType )
: aProcessManager(0),
pParticleChange(0),
: aProcessManager(nullptr),
pParticleChange(nullptr),
theNumberOfInteractionLengthLeft(-1.0),
currentInteractionLength(-1.0),
theInitialNumberOfInteractionLength(-1.0),
@@ -64,7 +63,7 @@ G4VProcess::G4VProcess(const G4String& aName, G4ProcessType aType )
enableAlongStepDoIt(true),
enablePostStepDoIt(true),
verboseLevel(0),
masterProcessShadow(0)
masterProcessShadow(nullptr)
{
pParticleChange = &aParticleChange;
@@ -75,8 +74,8 @@ G4VProcess::~G4VProcess()
}
G4VProcess::G4VProcess(const G4VProcess& right)
: aProcessManager(0),
pParticleChange(0),
: aProcessManager(nullptr),
pParticleChange(nullptr),
theNumberOfInteractionLengthLeft(-1.0),
currentInteractionLength(-1.0),
theInitialNumberOfInteractionLength(-1.0),