| 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 | // $Id: A01HadronPhysics.hh,v 1.6 2006/06/29 16:31:14 gunter Exp $
|
|---|
| 27 | // --------------------------------------------------------------
|
|---|
| 28 | //
|
|---|
| 29 | // 10-Oct-2003 Full Hadron Processes with Parameterization Model T. Koi
|
|---|
| 30 |
|
|---|
| 31 | #ifndef A01HadronPhysics_h
|
|---|
| 32 | #define A01HadronPhysics_h 1
|
|---|
| 33 |
|
|---|
| 34 | #include "globals.hh"
|
|---|
| 35 | #include "G4ios.hh"
|
|---|
| 36 |
|
|---|
| 37 | #include "G4VPhysicsConstructor.hh"
|
|---|
| 38 | #include "G4MultipleScattering.hh"
|
|---|
| 39 | #include "G4hIonisation.hh"
|
|---|
| 40 |
|
|---|
| 41 | // Hadronic Processes
|
|---|
| 42 |
|
|---|
| 43 | #include "G4HadronElasticProcess.hh"
|
|---|
| 44 | #include "G4HadronFissionProcess.hh"
|
|---|
| 45 | #include "G4HadronCaptureProcess.hh"
|
|---|
| 46 |
|
|---|
| 47 | #include "G4PionPlusInelasticProcess.hh"
|
|---|
| 48 | #include "G4PionMinusInelasticProcess.hh"
|
|---|
| 49 | #include "G4KaonPlusInelasticProcess.hh"
|
|---|
| 50 | #include "G4KaonZeroSInelasticProcess.hh"
|
|---|
| 51 | #include "G4KaonZeroLInelasticProcess.hh"
|
|---|
| 52 | #include "G4KaonMinusInelasticProcess.hh"
|
|---|
| 53 | #include "G4ProtonInelasticProcess.hh"
|
|---|
| 54 | #include "G4AntiProtonInelasticProcess.hh"
|
|---|
| 55 | #include "G4NeutronInelasticProcess.hh"
|
|---|
| 56 | #include "G4AntiNeutronInelasticProcess.hh"
|
|---|
| 57 | #include "G4LambdaInelasticProcess.hh"
|
|---|
| 58 | #include "G4AntiLambdaInelasticProcess.hh"
|
|---|
| 59 | #include "G4SigmaPlusInelasticProcess.hh"
|
|---|
| 60 | #include "G4SigmaMinusInelasticProcess.hh"
|
|---|
| 61 | #include "G4AntiSigmaPlusInelasticProcess.hh"
|
|---|
| 62 | #include "G4AntiSigmaMinusInelasticProcess.hh"
|
|---|
| 63 | #include "G4XiZeroInelasticProcess.hh"
|
|---|
| 64 | #include "G4XiMinusInelasticProcess.hh"
|
|---|
| 65 | #include "G4AntiXiZeroInelasticProcess.hh"
|
|---|
| 66 | #include "G4AntiXiMinusInelasticProcess.hh"
|
|---|
| 67 | #include "G4DeuteronInelasticProcess.hh"
|
|---|
| 68 | #include "G4TritonInelasticProcess.hh"
|
|---|
| 69 | #include "G4AlphaInelasticProcess.hh"
|
|---|
| 70 | #include "G4OmegaMinusInelasticProcess.hh"
|
|---|
| 71 | #include "G4AntiOmegaMinusInelasticProcess.hh"
|
|---|
| 72 |
|
|---|
| 73 | // Low energy models
|
|---|
| 74 | #include "G4LElastic.hh"
|
|---|
| 75 | #include "G4LFission.hh"
|
|---|
| 76 | #include "G4LCapture.hh"
|
|---|
| 77 |
|
|---|
| 78 | #include "G4LEPionPlusInelastic.hh"
|
|---|
| 79 | #include "G4LEPionMinusInelastic.hh"
|
|---|
| 80 | #include "G4LEKaonPlusInelastic.hh"
|
|---|
| 81 | #include "G4LEKaonZeroSInelastic.hh"
|
|---|
| 82 | #include "G4LEKaonZeroLInelastic.hh"
|
|---|
| 83 | #include "G4LEKaonMinusInelastic.hh"
|
|---|
| 84 | #include "G4LEProtonInelastic.hh"
|
|---|
| 85 | #include "G4LEAntiProtonInelastic.hh"
|
|---|
| 86 | #include "G4LENeutronInelastic.hh"
|
|---|
| 87 | #include "G4LEAntiNeutronInelastic.hh"
|
|---|
| 88 | #include "G4LELambdaInelastic.hh"
|
|---|
| 89 | #include "G4LEAntiLambdaInelastic.hh"
|
|---|
| 90 | #include "G4LESigmaPlusInelastic.hh"
|
|---|
| 91 | #include "G4LESigmaMinusInelastic.hh"
|
|---|
| 92 | #include "G4LEAntiSigmaPlusInelastic.hh"
|
|---|
| 93 | #include "G4LEAntiSigmaMinusInelastic.hh"
|
|---|
| 94 | #include "G4LEXiZeroInelastic.hh"
|
|---|
| 95 | #include "G4LEXiMinusInelastic.hh"
|
|---|
| 96 | #include "G4LEAntiXiZeroInelastic.hh"
|
|---|
| 97 | #include "G4LEAntiXiMinusInelastic.hh"
|
|---|
| 98 | #include "G4LEDeuteronInelastic.hh"
|
|---|
| 99 | #include "G4LETritonInelastic.hh"
|
|---|
| 100 | #include "G4LEAlphaInelastic.hh"
|
|---|
| 101 | #include "G4LEOmegaMinusInelastic.hh"
|
|---|
| 102 | #include "G4LEAntiOmegaMinusInelastic.hh"
|
|---|
| 103 |
|
|---|
| 104 | // High-energy Models
|
|---|
| 105 |
|
|---|
| 106 | #include "G4HEPionPlusInelastic.hh"
|
|---|
| 107 | #include "G4HEPionMinusInelastic.hh"
|
|---|
| 108 | #include "G4HEKaonPlusInelastic.hh"
|
|---|
| 109 | #include "G4HEKaonZeroInelastic.hh"
|
|---|
| 110 | #include "G4HEKaonZeroInelastic.hh"
|
|---|
| 111 | #include "G4HEKaonMinusInelastic.hh"
|
|---|
| 112 | #include "G4HEProtonInelastic.hh"
|
|---|
| 113 | #include "G4HEAntiProtonInelastic.hh"
|
|---|
| 114 | #include "G4HENeutronInelastic.hh"
|
|---|
| 115 | #include "G4HEAntiNeutronInelastic.hh"
|
|---|
| 116 | #include "G4HELambdaInelastic.hh"
|
|---|
| 117 | #include "G4HEAntiLambdaInelastic.hh"
|
|---|
| 118 | #include "G4HESigmaPlusInelastic.hh"
|
|---|
| 119 | #include "G4HESigmaMinusInelastic.hh"
|
|---|
| 120 | #include "G4HEAntiSigmaPlusInelastic.hh"
|
|---|
| 121 | #include "G4HEAntiSigmaMinusInelastic.hh"
|
|---|
| 122 | #include "G4HEXiZeroInelastic.hh"
|
|---|
| 123 | #include "G4HEXiMinusInelastic.hh"
|
|---|
| 124 | #include "G4HEAntiXiZeroInelastic.hh"
|
|---|
| 125 | #include "G4HEAntiXiMinusInelastic.hh"
|
|---|
| 126 | #include "G4HEOmegaMinusInelastic.hh"
|
|---|
| 127 | #include "G4HEAntiOmegaMinusInelastic.hh"
|
|---|
| 128 |
|
|---|
| 129 | // Stopping processes
|
|---|
| 130 | #include "G4AntiProtonAnnihilationAtRest.hh"
|
|---|
| 131 | #include "G4AntiNeutronAnnihilationAtRest.hh"
|
|---|
| 132 |
|
|---|
| 133 | class A01HadronPhysics : public G4VPhysicsConstructor
|
|---|
| 134 | {
|
|---|
| 135 | public:
|
|---|
| 136 | A01HadronPhysics(const G4String& name="hadron");
|
|---|
| 137 | virtual ~A01HadronPhysics();
|
|---|
| 138 |
|
|---|
| 139 | public:
|
|---|
| 140 | // This method will be invoked in the Construct() method.
|
|---|
| 141 | // each particle type will be instantiated
|
|---|
| 142 | virtual void ConstructParticle(){;};
|
|---|
| 143 |
|
|---|
| 144 | // This method will be invoked in the Construct() method.
|
|---|
| 145 | // each physics process will be instantiated and
|
|---|
| 146 | // registered to the process manager of each particle type
|
|---|
| 147 | virtual void ConstructProcess();
|
|---|
| 148 |
|
|---|
| 149 | protected:
|
|---|
| 150 |
|
|---|
| 151 | };
|
|---|
| 152 |
|
|---|
| 153 |
|
|---|
| 154 | #endif
|
|---|
| 155 |
|
|---|