Import Geant4 8.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 15:07:44 +02:00
parent fe73f43734
commit 75c7fd177d
764 changed files with 45230 additions and 95238 deletions
+4 -1
View File
@@ -1,4 +1,4 @@
$Id: History,v 1.10 2006/11/28 17:36:21 ahoward Exp $
$Id: History,v 1.11 2007/04/14 19:08:04 asaim Exp $
-------------------------------------------------------------------
=========================================================
@@ -17,6 +17,9 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
April 14th M.Asai (procscore-V08-02-00)
- Set step status for ghost pre-step point.
November 28th A.Howard (procscore-V08-01-04)
- updated history file
@@ -24,8 +24,8 @@
// ********************************************************************
//
//
// $Id: G4ParallelWorldScoringProcess.cc,v 1.5 2006/11/13 20:16:53 asaim Exp $
// GEANT4 tag $Name: geant4-08-02 $
// $Id: G4ParallelWorldScoringProcess.cc,v 1.6 2007/04/14 19:04:41 asaim Exp $
// GEANT4 tag $Name: geant4-08-03 $
//
//
@@ -143,6 +143,8 @@ void G4ParallelWorldScoringProcess::StartTracking(G4Track* trk)
// Initialize
fGhostSafety = -1.;
fOnBoundary = false;
fGhostPreStepPoint->SetStepStatus(fUndefined);
fGhostPostStepPoint->SetStepStatus(fUndefined);
}
//----------------------------------------------------------
@@ -368,6 +370,8 @@ G4VParticleChange* G4ParallelWorldScoringProcess::AlongStepDoIt(
void G4ParallelWorldScoringProcess::CopyStep(const G4Step & step)
{
G4StepStatus prevStat = fGhostPostStepPoint->GetStepStatus();
fGhostStep->SetTrack(step.GetTrack());
fGhostStep->SetStepLength(step.GetStepLength());
fGhostStep->SetTotalEnergyDeposit(step.GetTotalEnergyDeposit());
@@ -379,6 +383,7 @@ void G4ParallelWorldScoringProcess::CopyStep(const G4Step & step)
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Set StepStatus for ghost world
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
fGhostPreStepPoint->SetStepStatus(prevStat);
if(fOnBoundary)
{ fGhostPostStepPoint->SetStepStatus(fGeomBoundary); }
else if(fGhostPostStepPoint->GetStepStatus()==fGeomBoundary)