#include <LHEP.hh>
Public Member Functions | |
TLHEP (G4int ver=1) | |
virtual | ~TLHEP () |
virtual void | SetCuts () |
Definition at line 36 of file LHEP.hh.
Definition at line 70 of file LHEP.icc.
References G4cout, G4endl, photon, and G4WarnPLStatus::Unsupported().
00070 : T() 00071 { 00072 // default cut value (1.0mm) 00073 // defaultCutValue = 1.0*CLHEP::mm; 00074 G4DataQuestionaire it(photon); 00075 G4cout << "<<< Geant4 Physics List simulation engine: LHEP 4.4"<<G4endl; 00076 G4cout <<G4endl; 00077 this->defaultCutValue = 0.7*CLHEP::mm; 00078 this->SetVerboseLevel(ver); 00079 00080 G4WarnPLStatus obs; 00081 obs.Unsupported("LHEP", "FTFP_BERT"); 00082 00083 // EM Physics 00084 this->RegisterPhysics( new G4EmStandardPhysics(ver) ); 00085 00086 // Synchroton Radiation & GN Physics 00087 this->RegisterPhysics( new G4EmQExtraPhysics(ver) ); 00088 00089 // General Physics - i.e. decay 00090 this->RegisterPhysics( new G4DecayPhysics(ver) ); 00091 00092 // Hadron Elastic scattering 00093 this-> RegisterPhysics( new G4HadronElasticPhysicsLHEP(ver) ); 00094 00095 // Hadron Physics 00096 this->RegisterPhysics( new HadronPhysicsLHEP(ver)); 00097 00098 // Ion Physics 00099 this->RegisterPhysics( new G4IonLHEPPhysics(ver)); 00100 00101 }
void TLHEP< T >::SetCuts | ( | ) | [virtual] |
Definition at line 107 of file LHEP.icc.
References G4cout.
00108 { 00109 if (this->verboseLevel >1){ 00110 G4cout << "LHEP::SetCuts:"; 00111 } 00112 // " G4VUserPhysicsList::SetCutsWithDefault" method sets 00113 // the default cut value for all particle types 00114 00115 this->SetCutsWithDefault(); 00116 00117 // if (this->verboseLevel >0) 00118 // G4VUserPhysicsList::DumpCutValuesTable(); 00119 00120 }