00001 // 00002 // ******************************************************************** 00003 // * License and Disclaimer * 00004 // * * 00005 // * The Geant4 software is copyright of the Copyright Holders of * 00006 // * the Geant4 Collaboration. It is provided under the terms and * 00007 // * conditions of the Geant4 Software License, included in the file * 00008 // * LICENSE and available at http://cern.ch/geant4/license . These * 00009 // * include a list of copyright holders. * 00010 // * * 00011 // * Neither the authors of this software system, nor their employing * 00012 // * institutes,nor the agencies providing financial support for this * 00013 // * work make any representation or warranty, express or implied, * 00014 // * regarding this software system or assume any liability for its * 00015 // * use. Please see the license in the file LICENSE and URL above * 00016 // * for the full disclaimer and the limitation of liability. * 00017 // * * 00018 // * This code implementation is the result of the scientific and * 00019 // * technical work of the GEANT4 collaboration. * 00020 // * By using, copying, modifying or distributing the software (or * 00021 // * any work based on the software) you agree to acknowledge its * 00022 // * use in resulting scientific publications, and indicate your * 00023 // * acceptance of all terms of the Geant4 Software license. * 00024 // ******************************************************************** 00025 // 00026 // $Id$ 00027 // 00028 //--------------------------------------------------------------------------- 00029 // 00030 // ClassName: LHEP_EMV 00031 // 00032 // Author: 2002 J.P. Wellisch 00033 // 00034 // Modified: 00035 // 16.12.2005 G.Folger: create from LHEP_GN 00036 // 08.06.2006 V.Ivanchenko: migration to CHIPS stopping 00037 // 14.06.2006 G.Folger: Migrate to HadronElasticPhysics using G4LElastic 00038 // 16.05.2007 V.Ivanchenko: rename EM builders 00039 // 04.06.2010 G.Folger: Use new ctor for builders 00040 // 16.08.2010 H.Kurashige: Remove inclusion of G4ParticleWithCuts 00041 // 16.10.2012 A.Ribon: Renamed used classed; deprecated for removal in G4 10 00042 // 00043 //---------------------------------------------------------------------------- 00044 // 00045 #include <iomanip> 00046 00047 #include "globals.hh" 00048 #include "G4ios.hh" 00049 #include "G4ProcessManager.hh" 00050 #include "G4ProcessVector.hh" 00051 #include "G4ParticleTypes.hh" 00052 #include "G4ParticleTable.hh" 00053 00054 #include "G4Material.hh" 00055 #include "G4MaterialTable.hh" 00056 00057 #include "G4DecayPhysics.hh" 00058 #include "G4EmStandardPhysics_option1.hh" 00059 #include "G4EmQExtraPhysics.hh" 00060 #include "G4IonLHEPPhysics.hh" 00061 #include "G4QStoppingPhysics.hh" 00062 #include "G4HadronElasticPhysicsLHEP.hh" 00063 00064 #include "G4DataQuestionaire.hh" 00065 #include "HadronPhysicsLHEP_EMV.hh" 00066 00067 #include "G4WarnPLStatus.hh" 00068 00069 00070 template<class T> TLHEP_EMV<T>::TLHEP_EMV(G4int ver): 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_EMV 3.4"<<G4endl; 00076 G4cout <<G4endl; 00077 this->defaultCutValue = 0.7*CLHEP::mm; 00078 this->SetVerboseLevel(ver); 00079 00080 G4WarnPLStatus obs; 00081 obs.Unsupported("LHEP_EMV", "FTFP_BERT"); 00082 00083 // EM Physics - without multiple scattering limiting the step 00084 this->RegisterPhysics( new G4EmStandardPhysics_option1(ver) ); 00085 00086 // Synchroton Radiation & GN Physics 00087 this->RegisterPhysics( new G4EmQExtraPhysics(ver) ); 00088 00089 // Decays 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_EMV(ver)); 00097 00098 // Stopping Physics 00099 this->RegisterPhysics( new G4QStoppingPhysics(ver) ); 00100 00101 // Ion Physics 00102 this->RegisterPhysics( new G4IonLHEPPhysics(ver)); 00103 } 00104 00105 template<class T> TLHEP_EMV<T>::~TLHEP_EMV() 00106 { 00107 } 00108 00109 template<class T> void TLHEP_EMV<T>::SetCuts() 00110 { 00111 if (this->verboseLevel >1){ 00112 G4cout << "LHEP_EMV::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 00122 00123 } 00124