#include <FTFP_BERT.hh>
Public Member Functions | |
TFTFP_BERT (G4int ver=1) | |
virtual | ~TFTFP_BERT () |
virtual void | SetCuts () |
Definition at line 49 of file FTFP_BERT.hh.
TFTFP_BERT< T >::TFTFP_BERT | ( | G4int | ver = 1 |
) |
Definition at line 70 of file FTFP_BERT.icc.
References G4cout, G4endl, and photon.
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: FTFP_BERT 2.0"<<G4endl; 00076 G4cout <<G4endl; 00077 this->defaultCutValue = 0.7*CLHEP::mm; 00078 this->SetVerboseLevel(ver); 00079 00080 // EM Physics 00081 this->RegisterPhysics( new G4EmStandardPhysics(ver)); 00082 00083 // Synchroton Radiation & GN Physics 00084 this->RegisterPhysics( new G4EmExtraPhysics(ver) ); 00085 00086 // Decays 00087 this->RegisterPhysics( new G4DecayPhysics(ver) ); 00088 00089 // Hadron Elastic scattering 00090 this->RegisterPhysics( new G4HadronElasticPhysics(ver) ); 00091 00092 // Hadron Physics 00093 this->RegisterPhysics( new HadronPhysicsFTFP_BERT(ver)); 00094 00095 // Stopping Physics 00096 this->RegisterPhysics( new G4StoppingPhysics(ver) ); 00097 00098 // Ion Physics 00099 this->RegisterPhysics( new G4IonPhysics(ver)); 00100 00101 // Neutron tracking cut 00102 this->RegisterPhysics( new G4NeutronTrackingCut(ver)); 00103 }
TFTFP_BERT< T >::~TFTFP_BERT | ( | ) | [virtual] |
void TFTFP_BERT< T >::SetCuts | ( | ) | [virtual] |
Definition at line 109 of file FTFP_BERT.icc.
References G4cout.
00110 { 00111 if (this->verboseLevel >1){ 00112 G4cout << "FTFP_BERT::SetCuts:"; 00113 } 00114 // " G4VUserPhysicsList::SetCutsWithDefault" method sets 00115 // the default cut value for all particle types 00116 00117 this->SetCutsWithDefault(); 00118 00119 // if (this->verboseLevel > 0) 00120 // G4VUserPhysicsList::DumpCutValuesTable(); 00121 }