![]() |
|
|||
File indexing completed on 2025-04-04 08:05:14
0001 // 0002 // ******************************************************************** 0003 // * License and Disclaimer * 0004 // * * 0005 // * The Geant4 software is copyright of the Copyright Holders of * 0006 // * the Geant4 Collaboration. It is provided under the terms and * 0007 // * conditions of the Geant4 Software License, included in the file * 0008 // * LICENSE and available at http://cern.ch/geant4/license . These * 0009 // * include a list of copyright holders. * 0010 // * * 0011 // * Neither the authors of this software system, nor their employing * 0012 // * institutes,nor the agencies providing financial support for this * 0013 // * work make any representation or warranty, express or implied, * 0014 // * regarding this software system or assume any liability for its * 0015 // * use. Please see the license in the file LICENSE and URL above * 0016 // * for the full disclaimer and the limitation of liability. * 0017 // * * 0018 // * This code implementation is the result of the scientific and * 0019 // * technical work of the GEANT4 collaboration. * 0020 // * By using, copying, modifying or distributing the software (or * 0021 // * any work based on the software) you agree to acknowledge its * 0022 // * use in resulting scientific publications, and indicate your * 0023 // * acceptance of all terms of the Geant4 Software license. * 0024 // ******************************************************************** 0025 // 0026 /// \file PhysicsList.cc 0027 /// \brief Implementation of the PhysicsList class 0028 // 0029 0030 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0031 0032 #include "PhysicsList.hh" 0033 0034 #include "GammaNuclearPhysics.hh" 0035 #include "GammaNuclearPhysicsLEND.hh" 0036 0037 #include "G4HadronElasticPhysicsHP.hh" 0038 #include "G4HadronElasticPhysicsXS.hh" 0039 #include "G4HadronInelasticQBBC.hh" 0040 #include "G4HadronPhysicsFTFP_BERT_HP.hh" 0041 #include "G4HadronPhysicsINCLXX.hh" 0042 #include "G4HadronPhysicsQGSP_BIC.hh" 0043 #include "G4HadronPhysicsQGSP_BIC_AllHP.hh" 0044 #include "G4HadronPhysicsQGSP_BIC_HP.hh" 0045 #include "G4HadronPhysicsShielding.hh" 0046 #include "G4IonElasticPhysics.hh" 0047 #include "G4IonINCLXXPhysics.hh" 0048 #include "G4IonPhysicsPHP.hh" 0049 #include "G4IonPhysicsXS.hh" 0050 #include "G4IonQMDPhysics.hh" 0051 #include "G4NuclideTable.hh" 0052 #include "G4SystemOfUnits.hh" 0053 #include "G4UnitsTable.hh" 0054 0055 // particles 0056 0057 #include "G4BaryonConstructor.hh" 0058 #include "G4BosonConstructor.hh" 0059 #include "G4IonConstructor.hh" 0060 #include "G4LeptonConstructor.hh" 0061 #include "G4MesonConstructor.hh" 0062 #include "G4ShortLivedConstructor.hh" 0063 0064 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0065 0066 PhysicsList::PhysicsList() 0067 { 0068 G4int verb = 1; 0069 SetVerboseLevel(verb); 0070 0071 // add new units for cross sections 0072 // 0073 new G4UnitDefinition("mm2/g", "mm2/g", "Surface/Mass", mm2 / g); 0074 new G4UnitDefinition("um2/mg", "um2/mg", "Surface/Mass", um * um / mg); 0075 0076 // mandatory for G4NuclideTable 0077 // 0078 const G4double meanLife = 1 * nanosecond; 0079 G4NuclideTable::GetInstance()->SetMeanLifeThreshold(meanLife); 0080 0081 // Hadron Elastic scattering 0082 // 0083 // RegisterPhysics( new G4HadronElasticPhysicsHP(verb)); 0084 RegisterPhysics(new G4HadronElasticPhysicsXS(verb)); 0085 0086 // Hadron Inelastic physics 0087 // 0088 ////RegisterPhysics( new G4HadronPhysicsFTFP_BERT_HP(verb)); 0089 RegisterPhysics(new G4HadronPhysicsQGSP_BIC_HP(verb)); 0090 ////RegisterPhysics( new G4HadronPhysicsQGSP_BIC_AllHP(verb)); 0091 ////RegisterPhysics( new G4HadronPhysicsFTFP_BERT(verb)); 0092 ////RegisterPhysics( new G4HadronPhysicsQGSP_BIC(verb)); 0093 ////RegisterPhysics( new G4HadronInelasticQBBC(verb)); 0094 ////RegisterPhysics( new G4HadronPhysicsINCLXX(verb)); 0095 ////RegisterPhysics( new G4HadronPhysicsShielding(verb)); 0096 0097 // Ion Elastic scattering 0098 // 0099 RegisterPhysics(new G4IonElasticPhysics(verb)); 0100 0101 // Ion Inelastic physics 0102 // 0103 RegisterPhysics(new G4IonPhysicsXS(verb)); 0104 ////RegisterPhysics( new G4IonPhysicsPHP(verb)); 0105 ////RegisterPhysics( new G4IonQMDPhysics(verb)); 0106 ////RegisterPhysics( new G4IonINCLXXPhysics(verb)); 0107 0108 // Gamma physics 0109 // 0110 RegisterPhysics(new GammaNuclearPhysics("gamma")); 0111 ////RegisterPhysics( new GammaNuclearPhysicsLEND("gamma")); 0112 } 0113 0114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0115 0116 void PhysicsList::ConstructParticle() 0117 { 0118 G4BosonConstructor pBosonConstructor; 0119 pBosonConstructor.ConstructParticle(); 0120 0121 G4LeptonConstructor pLeptonConstructor; 0122 pLeptonConstructor.ConstructParticle(); 0123 0124 G4MesonConstructor pMesonConstructor; 0125 pMesonConstructor.ConstructParticle(); 0126 0127 G4BaryonConstructor pBaryonConstructor; 0128 pBaryonConstructor.ConstructParticle(); 0129 0130 G4IonConstructor pIonConstructor; 0131 pIonConstructor.ConstructParticle(); 0132 0133 G4ShortLivedConstructor pShortLivedConstructor; 0134 pShortLivedConstructor.ConstructParticle(); 0135 } 0136 0137 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0138 0139 void PhysicsList::SetCuts() 0140 { 0141 SetCutValue(0. * mm, "proton"); 0142 } 0143 0144 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |