Import Geant4 1.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:34:16 +02:00
parent ca1c8cb059
commit 103bda00c8
2654 changed files with 29719 additions and 20203 deletions
@@ -5,8 +5,8 @@
// based on the Program) you indicate your acceptance of this statement,
// and all its terms.
//
// $Id: G4DynamicParticle.cc,v 1.5.6.1 1999/12/07 20:49:56 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
// $Id: G4DynamicParticle.cc,v 1.5.6.1.2.1 1999/12/08 17:34:08 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
//
//
// --------------------------------------------------------------
@@ -329,21 +329,21 @@ void G4DynamicParticle::Set4Momentum(const G4LorentzVector &momentum )
void G4DynamicParticle::DumpInfo(G4int mode) const
{
if (theParticleDefinition == 0) {
G4cout << " G4DynamicParticle::DumpInfo():: !!!Particle type not defined !!!! " << endl;
G4cout << " G4DynamicParticle::DumpInfo():: !!!Particle type not defined !!!! " << G4endl;
} else {
G4cout << " Particle type - " << theParticleDefinition->GetParticleName() << endl
<< " mass: " << GetMass()/GeV << "[GeV]" <<endl
<< " charge: " << GetCharge()/eplus << "[e]" <<endl
G4cout << " Particle type - " << theParticleDefinition->GetParticleName() << G4endl
<< " mass: " << GetMass()/GeV << "[GeV]" <<G4endl
<< " charge: " << GetCharge()/eplus << "[e]" <<G4endl
<< " Direction x: " << GetMomentumDirection().x() << ", y: "
<< GetMomentumDirection().y() << ", z: "
<< GetMomentumDirection().z() << endl
<< " Total Momentum = " << GetTotalMomentum() /GeV << "[GeV]" << endl
<< GetMomentumDirection().z() << G4endl
<< " Total Momentum = " << GetTotalMomentum() /GeV << "[GeV]" << G4endl
<< " Momentum: " << GetMomentum().x() /GeV << "[GeV]" << ", y: "
<< GetMomentum().y() /GeV << "[GeV]" << ", z: "
<< GetMomentum().z() /GeV << "[GeV]" << endl
<< " Total Energy = " << GetTotalEnergy()/GeV << "[GeV]" << endl
<< " Kinetic Energy = " << GetKineticEnergy() /GeV << "[GeV]" << endl
<< " ProperTime = " << GetProperTime() /ns << "[ns]" << endl;
<< GetMomentum().z() /GeV << "[GeV]" << G4endl
<< " Total Energy = " << GetTotalEnergy()/GeV << "[GeV]" << G4endl
<< " Kinetic Energy = " << GetKineticEnergy() /GeV << "[GeV]" << G4endl
<< " ProperTime = " << GetProperTime() /ns << "[ns]" << G4endl;
if (mode>0) {
if( theElectronOccupancy != 0) {
theElectronOccupancy->DumpInfo();