| 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | //
|
|---|
| 27 | // $Id: PhotInPhysicsList.hh,v 1.4 2006/06/29 16:24:51 gunter Exp $
|
|---|
| 28 | // GEANT4 tag $Name: $
|
|---|
| 29 | //
|
|---|
| 30 |
|
|---|
| 31 | #ifndef PhotInPhysicsList_h
|
|---|
| 32 | #define PhotInPhysicsList_h 1
|
|---|
| 33 |
|
|---|
| 34 | #include "G4VUserPhysicsList.hh"
|
|---|
| 35 | #include "globals.hh"
|
|---|
| 36 | #include "G4ios.hh"
|
|---|
| 37 | #include <iomanip>
|
|---|
| 38 |
|
|---|
| 39 | #include "PhotInConstants.hh"
|
|---|
| 40 |
|
|---|
| 41 | // Headers for particles and materials
|
|---|
| 42 | #include "G4ParticleDefinition.hh"
|
|---|
| 43 | #include "G4ParticleWithCuts.hh"
|
|---|
| 44 | #include "G4ProcessManager.hh"
|
|---|
| 45 | #include "G4ProcessVector.hh"
|
|---|
| 46 | #include "G4ParticleTypes.hh"
|
|---|
| 47 | #include "G4ParticleTable.hh"
|
|---|
| 48 | #include "G4BosonConstructor.hh"
|
|---|
| 49 | #include "G4LeptonConstructor.hh"
|
|---|
| 50 | #include "G4MesonConstructor.hh"
|
|---|
| 51 | #include "G4BaryonConstructor.hh"
|
|---|
| 52 | #include "G4IonConstructor.hh"
|
|---|
| 53 | #include "G4ShortLivedConstructor.hh"
|
|---|
| 54 | #include "G4Material.hh"
|
|---|
| 55 | #include "G4MaterialTable.hh"
|
|---|
| 56 |
|
|---|
| 57 | // Headers for EM Processes and Decays
|
|---|
| 58 | #include "G4ComptonScattering.hh"
|
|---|
| 59 | #include "G4GammaConversion.hh"
|
|---|
| 60 | #include "G4PhotoElectricEffect.hh"
|
|---|
| 61 | #include "G4MultipleScattering.hh"
|
|---|
| 62 | #include "G4eIonisation.hh"
|
|---|
| 63 | #include "G4eBremsstrahlung.hh"
|
|---|
| 64 | #include "G4eplusAnnihilation.hh"
|
|---|
| 65 | #include "G4MuIonisation.hh"
|
|---|
| 66 | #include "G4MuBremsstrahlung.hh"
|
|---|
| 67 | #include "G4MuPairProduction.hh"
|
|---|
| 68 | #include "G4hIonisation.hh"
|
|---|
| 69 |
|
|---|
| 70 | #include "G4Decay.hh"
|
|---|
| 71 |
|
|---|
| 72 | // Headers for cuts
|
|---|
| 73 | #include "G4Region.hh"
|
|---|
| 74 | #include "G4RegionStore.hh"
|
|---|
| 75 | #include "G4ProductionCuts.hh"
|
|---|
| 76 |
|
|---|
| 77 | // -------------------- Headers for hadronic physics
|
|---|
| 78 |
|
|---|
| 79 | // Gamma-Nuclear (GHAD)
|
|---|
| 80 |
|
|---|
| 81 | #include "G4GammaNuclearReaction.hh"
|
|---|
| 82 | #include "G4GammaParticipants.hh"
|
|---|
| 83 | #include "G4ElectroNuclearReaction.hh"
|
|---|
| 84 | #include "G4PhotoNuclearProcess.hh"
|
|---|
| 85 | #include "G4ElectronNuclearProcess.hh"
|
|---|
| 86 | #include "G4PositronNuclearProcess.hh"
|
|---|
| 87 |
|
|---|
| 88 | // Gamma-Nuclear (CHIPS)
|
|---|
| 89 |
|
|---|
| 90 | #include "G4QCollision.hh"
|
|---|
| 91 |
|
|---|
| 92 | // General Hadronic Processes
|
|---|
| 93 |
|
|---|
| 94 | #include "G4HadronElasticProcess.hh"
|
|---|
| 95 | #include "G4HadronFissionProcess.hh"
|
|---|
| 96 | #include "G4HadronCaptureProcess.hh"
|
|---|
| 97 |
|
|---|
| 98 | #include "G4PionPlusInelasticProcess.hh"
|
|---|
| 99 | #include "G4PionMinusInelasticProcess.hh"
|
|---|
| 100 | #include "G4KaonPlusInelasticProcess.hh"
|
|---|
| 101 | #include "G4KaonZeroSInelasticProcess.hh"
|
|---|
| 102 | #include "G4KaonZeroLInelasticProcess.hh"
|
|---|
| 103 | #include "G4KaonMinusInelasticProcess.hh"
|
|---|
| 104 | #include "G4ProtonInelasticProcess.hh"
|
|---|
| 105 | #include "G4AntiProtonInelasticProcess.hh"
|
|---|
| 106 | #include "G4NeutronInelasticProcess.hh"
|
|---|
| 107 | #include "G4AntiNeutronInelasticProcess.hh"
|
|---|
| 108 | #include "G4LambdaInelasticProcess.hh"
|
|---|
| 109 | #include "G4AntiLambdaInelasticProcess.hh"
|
|---|
| 110 | #include "G4SigmaPlusInelasticProcess.hh"
|
|---|
| 111 | #include "G4SigmaMinusInelasticProcess.hh"
|
|---|
| 112 | #include "G4AntiSigmaPlusInelasticProcess.hh"
|
|---|
| 113 | #include "G4AntiSigmaMinusInelasticProcess.hh"
|
|---|
| 114 | #include "G4XiZeroInelasticProcess.hh"
|
|---|
| 115 | #include "G4XiMinusInelasticProcess.hh"
|
|---|
| 116 | #include "G4AntiXiZeroInelasticProcess.hh"
|
|---|
| 117 | #include "G4AntiXiMinusInelasticProcess.hh"
|
|---|
| 118 | #include "G4DeuteronInelasticProcess.hh"
|
|---|
| 119 | #include "G4TritonInelasticProcess.hh"
|
|---|
| 120 | #include "G4AlphaInelasticProcess.hh"
|
|---|
| 121 | #include "G4OmegaMinusInelasticProcess.hh"
|
|---|
| 122 | #include "G4AntiOmegaMinusInelasticProcess.hh"
|
|---|
| 123 |
|
|---|
| 124 | // Low-energy Models
|
|---|
| 125 |
|
|---|
| 126 | #include "G4LElastic.hh"
|
|---|
| 127 | #include "G4LFission.hh"
|
|---|
| 128 | #include "G4LCapture.hh"
|
|---|
| 129 |
|
|---|
| 130 | #include "G4LEPionPlusInelastic.hh"
|
|---|
| 131 | #include "G4LEPionMinusInelastic.hh"
|
|---|
| 132 | #include "G4LEKaonPlusInelastic.hh"
|
|---|
| 133 | #include "G4LEKaonZeroSInelastic.hh"
|
|---|
| 134 | #include "G4LEKaonZeroLInelastic.hh"
|
|---|
| 135 | #include "G4LEKaonMinusInelastic.hh"
|
|---|
| 136 | #include "G4LEProtonInelastic.hh"
|
|---|
| 137 | #include "G4LEAntiProtonInelastic.hh"
|
|---|
| 138 | #include "G4LENeutronInelastic.hh"
|
|---|
| 139 | #include "G4LEAntiNeutronInelastic.hh"
|
|---|
| 140 | #include "G4LELambdaInelastic.hh"
|
|---|
| 141 | #include "G4LEAntiLambdaInelastic.hh"
|
|---|
| 142 | #include "G4LESigmaPlusInelastic.hh"
|
|---|
| 143 | #include "G4LESigmaMinusInelastic.hh"
|
|---|
| 144 | #include "G4LEAntiSigmaPlusInelastic.hh"
|
|---|
| 145 | #include "G4LEAntiSigmaMinusInelastic.hh"
|
|---|
| 146 | #include "G4LEXiZeroInelastic.hh"
|
|---|
| 147 | #include "G4LEXiMinusInelastic.hh"
|
|---|
| 148 | #include "G4LEAntiXiZeroInelastic.hh"
|
|---|
| 149 | #include "G4LEAntiXiMinusInelastic.hh"
|
|---|
| 150 | #include "G4LEDeuteronInelastic.hh"
|
|---|
| 151 | #include "G4LETritonInelastic.hh"
|
|---|
| 152 | #include "G4LEAlphaInelastic.hh"
|
|---|
| 153 | #include "G4LEOmegaMinusInelastic.hh"
|
|---|
| 154 | #include "G4LEAntiOmegaMinusInelastic.hh"
|
|---|
| 155 |
|
|---|
| 156 | // High-energy Models
|
|---|
| 157 |
|
|---|
| 158 | #include "G4HEPionPlusInelastic.hh"
|
|---|
| 159 | #include "G4HEPionMinusInelastic.hh"
|
|---|
| 160 | #include "G4HEKaonPlusInelastic.hh"
|
|---|
| 161 | #include "G4HEKaonZeroInelastic.hh"
|
|---|
| 162 | #include "G4HEKaonZeroInelastic.hh"
|
|---|
| 163 | #include "G4HEKaonMinusInelastic.hh"
|
|---|
| 164 | #include "G4HEProtonInelastic.hh"
|
|---|
| 165 | #include "G4HEAntiProtonInelastic.hh"
|
|---|
| 166 | #include "G4HENeutronInelastic.hh"
|
|---|
| 167 | #include "G4HEAntiNeutronInelastic.hh"
|
|---|
| 168 | #include "G4HELambdaInelastic.hh"
|
|---|
| 169 | #include "G4HEAntiLambdaInelastic.hh"
|
|---|
| 170 | #include "G4HESigmaPlusInelastic.hh"
|
|---|
| 171 | #include "G4HESigmaMinusInelastic.hh"
|
|---|
| 172 | #include "G4HEAntiSigmaPlusInelastic.hh"
|
|---|
| 173 | #include "G4HEAntiSigmaMinusInelastic.hh"
|
|---|
| 174 | #include "G4HEXiZeroInelastic.hh"
|
|---|
| 175 | #include "G4HEXiMinusInelastic.hh"
|
|---|
| 176 | #include "G4HEAntiXiZeroInelastic.hh"
|
|---|
| 177 | #include "G4HEAntiXiMinusInelastic.hh"
|
|---|
| 178 | #include "G4HEOmegaMinusInelastic.hh"
|
|---|
| 179 | #include "G4HEAntiOmegaMinusInelastic.hh"
|
|---|
| 180 |
|
|---|
| 181 | // Miscelenous Hadronic
|
|---|
| 182 |
|
|---|
| 183 | #include "G4TheoFSGenerator.hh"
|
|---|
| 184 | #include "G4ExcitationHandler.hh"
|
|---|
| 185 | #include "G4Evaporation.hh"
|
|---|
| 186 | #include "G4CompetitiveFission.hh"
|
|---|
| 187 | #include "G4FermiBreakUp.hh"
|
|---|
| 188 | #include "G4StatMF.hh"
|
|---|
| 189 | #include "G4Fancy3DNucleus.hh"
|
|---|
| 190 | #include "G4LEProtonInelastic.hh"
|
|---|
| 191 | #include "G4StringModel.hh"
|
|---|
| 192 | #include "G4PreCompoundModel.hh"
|
|---|
| 193 | #include "G4QGSModel.hh"
|
|---|
| 194 | #include "G4QGSMFragmentation.hh"
|
|---|
| 195 | #include "G4QGSParticipants.hh"
|
|---|
| 196 | #include "G4LundStringFragmentation.hh"
|
|---|
| 197 | #include "G4ExcitedStringDecay.hh"
|
|---|
| 198 | #include "G4StringChipsParticleLevelInterface.hh"
|
|---|
| 199 |
|
|---|
| 200 | // Stopping processes
|
|---|
| 201 |
|
|---|
| 202 | // GHAD nuclear capture processes
|
|---|
| 203 | //#include "G4AntiProtonAnnihilationAtRest.hh"
|
|---|
| 204 | //#include "G4AntiNeutronAnnihilationAtRest.hh"
|
|---|
| 205 | //#ifdef TRIUMF_STOP_PIMINUS
|
|---|
| 206 | //#include "G4PionMinusAbsorptionAtRest.hh"
|
|---|
| 207 | //#else
|
|---|
| 208 | //#include "G4PiMinusAbsorptionAtRest.hh"
|
|---|
| 209 | //#endif
|
|---|
| 210 | //#ifdef TRIUMF_STOP_KMINUS
|
|---|
| 211 | //#include "G4KaonMinusAbsorption.hh"
|
|---|
| 212 | //#else
|
|---|
| 213 | //#include "G4KaonMinusAbsorptionAtRest.hh"
|
|---|
| 214 | //#endif
|
|---|
| 215 |
|
|---|
| 216 | // CHIPS nuclear capture process manager - One for all negative hadrons
|
|---|
| 217 | #include "G4QCaptureAtRest.hh"
|
|---|
| 218 |
|
|---|
| 219 | class PhotInPhysicsList: public G4VUserPhysicsList
|
|---|
| 220 | {
|
|---|
| 221 | public:
|
|---|
| 222 | PhotInPhysicsList();
|
|---|
| 223 | ~PhotInPhysicsList();
|
|---|
| 224 |
|
|---|
| 225 | protected:
|
|---|
| 226 | // Construct particles, EM physics processes, and cuts
|
|---|
| 227 | void ConstructParticle();
|
|---|
| 228 | void ConstructProcess();
|
|---|
| 229 | void SetCuts();
|
|---|
| 230 |
|
|---|
| 231 | //There's no BODY values in this class: all BODY is in the basic G4VUserPhysicsList class
|
|---|
| 232 | };
|
|---|
| 233 |
|
|---|
| 234 | #endif
|
|---|
| 235 |
|
|---|
| 236 |
|
|---|
| 237 |
|
|---|