Import Geant4 10.5.0 source tree
This commit is contained in:
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
/// \file GB03ActionInitialization.cc
|
||||
/// \brief Implementation of the GB03ActionInitialization class
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
/// \file GB03BOptnSplitOrKillOnBoundary.cc
|
||||
/// \brief Implementation of the GB03BOptnSplitOrKillOnBoundary class
|
||||
@@ -139,9 +138,9 @@ GB03BOptnSplitOrKillOnBoundary::GenerateBiasingFinalState( const G4Track* track,
|
||||
// Shoot a random number (in ]0,1[ segment):
|
||||
G4double random = G4UniformRand();
|
||||
|
||||
// Decide to kill with 1/fSplittingFactor probability:
|
||||
G4double killingProbability = 1.0/fSplittingFactor;
|
||||
if ( random < killingProbability )
|
||||
// Decide to kill, keeping 1/fSplittingFactor of tracks:
|
||||
G4double survivingProbability = 1.0/fSplittingFactor;
|
||||
if ( random > survivingProbability )
|
||||
{
|
||||
// We ask for the the track to be killed:
|
||||
fParticleChange.ProposeTrackStatus(fStopAndKill);
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
/// \file GB03BOptrGeometryBasedBiasing.cc
|
||||
/// \brief Implementation of the GB03BOptrGeometryBasedBiasing class
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
/// \file GB03DetectorConstruction.cc
|
||||
/// \brief Implementation of the GB03DetectorConstruction class
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
/// \file GB03/src/GB03DetectorMessenger.cc
|
||||
/// \brief Implementation of the GB03DetectorMessenger class
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id$
|
||||
//
|
||||
/// \file GB03PrimaryGeneratorAction.cc
|
||||
/// \brief Implementation of the GB03PrimaryGeneratorAction class
|
||||
|
||||
Reference in New Issue
Block a user