| 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: G4hIonisation.cc,v 1.82 2009/02/20 12:06:37 vnivanch Exp $
|
|---|
| 27 | // GEANT4 tag $Name: geant4-09-03-cand-01 $
|
|---|
| 28 | //
|
|---|
| 29 | // -------------------------------------------------------------------
|
|---|
| 30 | //
|
|---|
| 31 | // GEANT4 Class file
|
|---|
| 32 | //
|
|---|
| 33 | //
|
|---|
| 34 | // File name: G4hIonisation
|
|---|
| 35 | //
|
|---|
| 36 | // Author: Laszlo Urban
|
|---|
| 37 | //
|
|---|
| 38 | // Creation date: 30.05.1997
|
|---|
| 39 | //
|
|---|
| 40 | // Modifications:
|
|---|
| 41 | //
|
|---|
| 42 | // corrected by L.Urban on 24/09/97
|
|---|
| 43 | // several bugs corrected by L.Urban on 13/01/98
|
|---|
| 44 | // 07-04-98 remove 'tracking cut' of the ionizing particle, mma
|
|---|
| 45 | // 22-10-98 cleanup L.Urban
|
|---|
| 46 | // 02-02-99 bugs fixed , L.Urban
|
|---|
| 47 | // 29-07-99 correction in BuildLossTable for low energy, L.Urban
|
|---|
| 48 | // 10-02-00 modifications , new e.m. structure, L.Urban
|
|---|
| 49 | // 10-08-00 V.Ivanchenko change BuildLambdaTable, in order to
|
|---|
| 50 | // simulate energy losses of ions; correction to
|
|---|
| 51 | // cross section for particles with spin 1 is inserted as well
|
|---|
| 52 | // 28-05-01 V.Ivanchenko minor changes to provide ANSI -wall compilation
|
|---|
| 53 | // 10-08-01 new methods Store/Retrieve PhysicsTable (mma)
|
|---|
| 54 | // 14-08-01 new function ComputeRestrictedMeandEdx() + 'cleanup' (mma)
|
|---|
| 55 | // 29-08-01 PostStepDoIt: correction for spin 1/2 (instead of 1) (mma)
|
|---|
| 56 | // 17-09-01 migration of Materials to pure STL (mma)
|
|---|
| 57 | // 25-09-01 completion of RetrievePhysicsTable() (mma)
|
|---|
| 58 | // 29-10-01 all static functions no more inlined
|
|---|
| 59 | // 08-11-01 Charge renamed zparticle; added to the dedx
|
|---|
| 60 | // 27-03-02 Bug fix in scaling of lambda table (V.Ivanchenko)
|
|---|
| 61 | // 09-04-02 Update calculation of tables for GenericIons (V.Ivanchenko)
|
|---|
| 62 | // 30-04-02 V.Ivanchenko update to new design
|
|---|
| 63 | // 04-12-02 Add verbose level definition (VI)
|
|---|
| 64 | // 23-12-02 Change interface in order to move to cut per region (V.Ivanchenko)
|
|---|
| 65 | // 26-12-02 Secondary production moved to derived classes (V.Ivanchenko)
|
|---|
| 66 | // 13-02-03 SubCutoff regime is assigned to a region (V.Ivanchenko)
|
|---|
| 67 | // 23-05-03 Define default integral + BohrFluctuations (V.Ivanchenko)
|
|---|
| 68 | // 03-06-03 Fix initialisation problem for STD ionisation (V.Ivanchenko)
|
|---|
| 69 | // 04-08-03 Set integral=false to be default (V.Ivanchenko)
|
|---|
| 70 | // 08-08-03 STD substitute standard (V.Ivanchenko)
|
|---|
| 71 | // 12-11-03 G4EnergyLossSTD -> G4EnergyLossProcess (V.Ivanchenko)
|
|---|
| 72 | // 27-05-04 Set integral to be a default regime (V.Ivanchenko)
|
|---|
| 73 | // 08-11-04 Migration to new interface of Store/Retrieve tables (V.Ivantchenko)
|
|---|
| 74 | // 24-03-05 Optimize internal interfaces (V.Ivantchenko)
|
|---|
| 75 | // 12-08-05 SetStepLimits(0.2, 0.1*mm) (mma)
|
|---|
| 76 | // 10-01-06 SetStepLimits -> SetStepFunction (V.Ivanchenko)
|
|---|
| 77 | // 26-05-06 scale negative particles from pi- and pbar,
|
|---|
| 78 | // positive from pi+ and p (VI)
|
|---|
| 79 | // 14-01-07 use SetEmModel() and SetFluctModel() from G4VEnergyLossProcess (mma)
|
|---|
| 80 | // 12-09-08 Removed CorrectionsAlongStep (VI)
|
|---|
| 81 | //
|
|---|
| 82 | // -------------------------------------------------------------------
|
|---|
| 83 | //
|
|---|
| 84 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 85 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 86 |
|
|---|
| 87 | #include "G4hIonisation.hh"
|
|---|
| 88 | #include "G4Electron.hh"
|
|---|
| 89 | #include "G4Proton.hh"
|
|---|
| 90 | #include "G4AntiProton.hh"
|
|---|
| 91 | #include "G4BraggModel.hh"
|
|---|
| 92 | #include "G4BetheBlochModel.hh"
|
|---|
| 93 | #include "G4IonFluctuations.hh"
|
|---|
| 94 | #include "G4UniversalFluctuation.hh"
|
|---|
| 95 | #include "G4BohrFluctuations.hh"
|
|---|
| 96 | #include "G4UnitsTable.hh"
|
|---|
| 97 | #include "G4PionPlus.hh"
|
|---|
| 98 | #include "G4PionMinus.hh"
|
|---|
| 99 | #include "G4KaonPlus.hh"
|
|---|
| 100 | #include "G4KaonMinus.hh"
|
|---|
| 101 |
|
|---|
| 102 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 103 |
|
|---|
| 104 | using namespace std;
|
|---|
| 105 |
|
|---|
| 106 | G4hIonisation::G4hIonisation(const G4String& name)
|
|---|
| 107 | : G4VEnergyLossProcess(name),
|
|---|
| 108 | isInitialised(false),
|
|---|
| 109 | nuclearStopping(true)
|
|---|
| 110 | {
|
|---|
| 111 | // SetStepFunction(0.2, 1.0*mm);
|
|---|
| 112 | //SetIntegral(true);
|
|---|
| 113 | //SetVerboseLevel(1);
|
|---|
| 114 | SetProcessSubType(fIonisation);
|
|---|
| 115 | mass = 0.0;
|
|---|
| 116 | ratio = 0.0;
|
|---|
| 117 | }
|
|---|
| 118 |
|
|---|
| 119 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 120 |
|
|---|
| 121 | G4hIonisation::~G4hIonisation()
|
|---|
| 122 | {}
|
|---|
| 123 |
|
|---|
| 124 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 125 |
|
|---|
| 126 | G4bool G4hIonisation::IsApplicable(const G4ParticleDefinition& p)
|
|---|
| 127 | {
|
|---|
| 128 | return (p.GetPDGCharge() != 0.0 && p.GetPDGMass() > 10.0*MeV &&
|
|---|
| 129 | !p.IsShortLived());
|
|---|
| 130 | }
|
|---|
| 131 |
|
|---|
| 132 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 133 |
|
|---|
| 134 | G4double G4hIonisation::MinPrimaryEnergy(const G4ParticleDefinition*,
|
|---|
| 135 | const G4Material*,
|
|---|
| 136 | G4double cut)
|
|---|
| 137 | {
|
|---|
| 138 | G4double x = 0.5*cut/electron_mass_c2;
|
|---|
| 139 | G4double g = x*ratio + std::sqrt((1. + x)*(1. + x*ratio*ratio));
|
|---|
| 140 | return mass*(g - 1.0);
|
|---|
| 141 | }
|
|---|
| 142 |
|
|---|
| 143 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 144 |
|
|---|
| 145 | void G4hIonisation::InitialiseEnergyLossProcess(
|
|---|
| 146 | const G4ParticleDefinition* part,
|
|---|
| 147 | const G4ParticleDefinition* bpart)
|
|---|
| 148 | {
|
|---|
| 149 | if(!isInitialised) {
|
|---|
| 150 |
|
|---|
| 151 | const G4ParticleDefinition* theBaseParticle = 0;
|
|---|
| 152 | G4String pname = part->GetParticleName();
|
|---|
| 153 |
|
|---|
| 154 | // standard base particles
|
|---|
| 155 | if(part == bpart || pname == "proton" ||
|
|---|
| 156 | pname == "anti_proton" ||
|
|---|
| 157 | pname == "pi+" || pname == "pi-" ||
|
|---|
| 158 | pname == "kaon+" || pname == "kaon-")
|
|---|
| 159 | {
|
|---|
| 160 | theBaseParticle = 0;
|
|---|
| 161 | }
|
|---|
| 162 | // select base particle
|
|---|
| 163 | else if(bpart == 0) {
|
|---|
| 164 |
|
|---|
| 165 | if(part->GetPDGSpin() == 0.0)
|
|---|
| 166 | if(part->GetPDGCharge() > 0.0 ) {
|
|---|
| 167 | theBaseParticle = G4KaonPlus::KaonPlus();
|
|---|
| 168 | } else {
|
|---|
| 169 | theBaseParticle = G4KaonMinus::KaonMinus();
|
|---|
| 170 | }
|
|---|
| 171 | else if(part->GetPDGCharge() > 0.0) {
|
|---|
| 172 | theBaseParticle = G4Proton::Proton();
|
|---|
| 173 | } else {
|
|---|
| 174 | theBaseParticle = G4AntiProton::AntiProton();
|
|---|
| 175 | }
|
|---|
| 176 | // base particle defined by interface
|
|---|
| 177 | } else {
|
|---|
| 178 | theBaseParticle = bpart;
|
|---|
| 179 | }
|
|---|
| 180 | SetBaseParticle(theBaseParticle);
|
|---|
| 181 | SetSecondaryParticle(G4Electron::Electron());
|
|---|
| 182 |
|
|---|
| 183 | mass = part->GetPDGMass();
|
|---|
| 184 | ratio = electron_mass_c2/mass;
|
|---|
| 185 |
|
|---|
| 186 | if(mass < 900.*MeV) nuclearStopping = false;
|
|---|
| 187 |
|
|---|
| 188 | if (!EmModel(1)) SetEmModel(new G4BraggModel(),1);
|
|---|
| 189 | EmModel(1)->SetLowEnergyLimit(MinKinEnergy());
|
|---|
| 190 |
|
|---|
| 191 | // model limit defined for protons
|
|---|
| 192 | eth = (EmModel(1)->HighEnergyLimit())*mass/proton_mass_c2;
|
|---|
| 193 | EmModel(1)->SetHighEnergyLimit(eth);
|
|---|
| 194 | AddEmModel(1, EmModel(1), new G4IonFluctuations());
|
|---|
| 195 |
|
|---|
| 196 | if (!FluctModel()) SetFluctModel(new G4UniversalFluctuation());
|
|---|
| 197 |
|
|---|
| 198 | if (!EmModel(2)) SetEmModel(new G4BetheBlochModel(),2);
|
|---|
| 199 | EmModel(2)->SetLowEnergyLimit(eth);
|
|---|
| 200 | EmModel(2)->SetHighEnergyLimit(MaxKinEnergy());
|
|---|
| 201 | AddEmModel(2, EmModel(2), FluctModel());
|
|---|
| 202 |
|
|---|
| 203 | isInitialised = true;
|
|---|
| 204 | }
|
|---|
| 205 | EmModel(1)->ActivateNuclearStopping(nuclearStopping);
|
|---|
| 206 | EmModel(2)->ActivateNuclearStopping(nuclearStopping);
|
|---|
| 207 | }
|
|---|
| 208 |
|
|---|
| 209 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 210 |
|
|---|
| 211 | void G4hIonisation::PrintInfo()
|
|---|
| 212 | {
|
|---|
| 213 | if(EmModel(1) && EmModel(2)) {
|
|---|
| 214 | G4cout << " NuclearStopping= " << nuclearStopping
|
|---|
| 215 | << G4endl;
|
|---|
| 216 | }
|
|---|
| 217 | }
|
|---|
| 218 |
|
|---|
| 219 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|