Import Geant4 7.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 12:11:21 +02:00
parent 516dbf1a58
commit d93e1e39a9
5384 changed files with 125662 additions and 82444 deletions
@@ -48,23 +48,23 @@ template<class T> TQGSC_LEAD<T>::TQGSC_LEAD(): T()
G4DataQuestionaire it(photon);
G4cout << "You are using the simulation engine: QGSC_LEAD 1.7"<<G4endl;
G4cout <<G4endl<<G4endl;
defaultCutValue = 0.7*mm;
SetVerboseLevel(1);
this->defaultCutValue = 0.7*mm;
this->SetVerboseLevel(1);
// General Physics
RegisterPhysics( new GeneralPhysics("general") );
this->RegisterPhysics( new GeneralPhysics("general") );
// EM Physics
RegisterPhysics( new EMPhysics("standard EM"));
this->RegisterPhysics( new EMPhysics("standard EM"));
// Muon Physics
RegisterPhysics( new MuonPhysics("muon"));
this->RegisterPhysics( new MuonPhysics("muon"));
// Hadron Physics
RegisterPhysics( new HadronPhysicsQGSC_LEAD("hadron"));
this->RegisterPhysics( new HadronPhysicsQGSC_LEAD("hadron"));
// Ion Physics
RegisterPhysics( new IonPhysics("ion"));
this->RegisterPhysics( new IonPhysics("ion"));
}
@@ -75,13 +75,13 @@ template<class T> TQGSC_LEAD<T>::~TQGSC_LEAD()
template<class T> void TQGSC_LEAD<T>::SetCuts()
{
if (verboseLevel >1){
if (this->verboseLevel >1){
G4cout << "QGSC_LEAD::SetCuts:";
}
// " G4VUserPhysicsList::SetCutsWithDefault" method sets
// the default cut value for all particle types
SetCutsWithDefault();
this->SetCutsWithDefault();
G4VUserPhysicsList::DumpCutValuesTable();
}