Import Geant4 5.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:28:22 +02:00
parent fbd4999cf7
commit 4aea781e80
5454 changed files with 223141 additions and 67347 deletions
+10 -10
View File
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4VParticleChange.cc,v 1.11 2002/11/20 16:52:49 gcosmo Exp $
// GEANT4 tag $Name: geant4-05-01 $
// $Id: G4VParticleChange.cc,v 1.12.2.1 2003/06/16 17:19:38 gunter Exp $
// GEANT4 tag $Name: geant4-05-02 $
//
//
// --------------------------------------------------------------
@@ -147,17 +147,17 @@ void G4VParticleChange::DumpInfo() const
G4cout.precision(3);
G4cout << " -----------------------------------------------"
<< G4endl;
G4cout << " G4ParticleChange Information " << G4std::setw(20) << G4endl;
G4cout << " G4ParticleChange Information " << std::setw(20) << G4endl;
G4cout << " -----------------------------------------------"
<< G4endl;
G4cout << " # of 2ndaries : "
<< G4std::setw(20) << theNumberOfSecondaries
<< std::setw(20) << theNumberOfSecondaries
<< G4endl;
if (theNumberOfSecondaries >0) {
G4cout << " Pointer to 2ndaries : "
<< G4std::setw(20) << GetSecondary(0)
<< std::setw(20) << GetSecondary(0)
<< G4endl;
G4cout << " (Showed only 1st one)"
<< G4endl;
@@ -166,11 +166,11 @@ void G4VParticleChange::DumpInfo() const
<< G4endl;
G4cout << " Energy Deposit (MeV): "
<< G4std::setw(20) << theLocalEnergyDeposit/MeV
<< std::setw(20) << theLocalEnergyDeposit/MeV
<< G4endl;
G4cout << " Track Status : "
<< G4std::setw(20);
<< std::setw(20);
if( theStatusChange == fAlive ){
G4cout << " Alive";
} else if( theStatusChange == fStopButAlive ){
@@ -186,15 +186,15 @@ void G4VParticleChange::DumpInfo() const
}
G4cout << G4endl;
G4cout << " True Path Length (mm) : "
<< G4std::setw(20) << theTrueStepLength/mm
<< std::setw(20) << theTrueStepLength/mm
<< G4endl;
G4cout << " Stepping Control : "
<< G4std::setw(20) << theSteppingControlFlag
<< std::setw(20) << theSteppingControlFlag
<< G4endl;
G4cout << G4endl;
}
G4bool G4VParticleChange::CheckIt(const G4Track& aTrack)
G4bool G4VParticleChange::CheckIt(const G4Track& )
{
G4bool exitWithError = false;