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
+9 -1
View File
@@ -1,4 +1,4 @@
$Id: History 94224 2015-11-09 08:30:58Z gcosmo $
$Id: History 97276 2016-05-31 14:21:35Z gcosmo $
-------------------------------------------------------------------
=========================================================
@@ -17,6 +17,14 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
May 30th, 2016, M. Verderi
- check for unbounded while loop in G4ProcessPlacer.cc
- tag : : proc-biasmng-V10-02-01
January 19th, 2016, M. Verderi
- fix coveriy warnings in src/G4VBiasingOperator.cc
- tag : proc-biasmng-V10-02-00
November 6th, 2015, M. Verderi
- adaptation to using G4VAuxiliaryTrackInformation:
o Removal of classes:
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4ProcessPlacer.cc 77477 2013-11-25 09:42:24Z gcosmo $
// $Id: G4ProcessPlacer.cc 97276 2016-05-31 14:21:35Z gcosmo $
//
// ----------------------------------------------------------------------
// GEANT 4 class source file
@@ -165,7 +165,7 @@ G4ProcessManager *G4ProcessPlacer::GetProcessManager()
G4ProcessManager *processmanager = 0;
// find process manager ---------------------------
theParticleIterator->reset();
while( (*theParticleIterator)() )
while( (*theParticleIterator)() ) /* while checked for unending loop, 30.05.2016, Marc Verderi */
{
G4ParticleDefinition* particle = theParticleIterator->value();
if (particle->GetParticleName() == fParticleName)
@@ -34,7 +34,17 @@ G4Cache< G4BiasingOperatorStateNotifier* > G4VBiasingOperator::fS
G4VBiasingOperator::G4VBiasingOperator(G4String name)
: fName(name)
: fName (name),
fOccurenceBiasingOperation (nullptr),
fFinalStateBiasingOperation (nullptr),
fNonPhysicsBiasingOperation (nullptr),
fPreviousProposedOccurenceBiasingOperation (nullptr),
fPreviousProposedFinalStateBiasingOperation(nullptr),
fPreviousProposedNonPhysicsBiasingOperation(nullptr),
fPreviousAppliedOccurenceBiasingOperation (nullptr),
fPreviousAppliedFinalStateBiasingOperation (nullptr),
fPreviousAppliedNonPhysicsBiasingOperation (nullptr),
fPreviousBiasingAppliedCase (BAC_None)
{
fOperators.Push_back(this);