Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4DNAIonisation.cc
Go to the documentation of this file.
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#include "G4DNAIonisation.hh"
29#include "G4SystemOfUnits.hh"
31
32//SEB
33#include "G4GenericIon.hh"
34#include "G4Positron.hh"
35
36//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
37
38using namespace std;
39
41 G4ProcessType type) :
42 G4VEmProcess(processName, type)
43{
45}
46
47//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
48
50= default;
51
52//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
53
55{
58
59 return (&p == G4Electron::Electron() || &p == G4Positron::Positron()
60 || &p == G4Proton::Proton() || &p == instance->GetIon("hydrogen")
61 || &p == instance->GetIon("alpha++")
62 || &p == instance->GetIon("alpha+")
63 || &p == instance->GetIon("helium")
64 //SEB
65 //|| &p == instance->GetIon("carbon")
66 //|| &p == instance->GetIon("nitrogen")
67 //|| &p == instance->GetIon("oxygen")
68 //|| &p == instance->GetIon("iron")
70}
71
72//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
73
75{
76 if(!isInitialised)
77 {
78 isInitialised = true;
79 SetBuildTableFlag(false);
80
81 G4String name = p->GetParticleName();
82
83 if(name == "e-")
84 {
85 if(EmModel() == nullptr)
86 {
87 auto born =
89 SetEmModel(born);
90 born->SetLowEnergyLimit(11. * eV);
91 born->SetHighEnergyLimit(1. * MeV);
92 }
93 AddEmModel(1, EmModel());
94 }
95 else if(name == "e+")
96 {
97 if(EmModel() == nullptr)
98 {
99 auto lepts =
101 SetEmModel(lepts);
102 lepts->SetLowEnergyLimit(1. * eV);
103 lepts->SetHighEnergyLimit(1. * MeV);
104 }
105 AddEmModel(1, EmModel());
106 }
107
108 if(name == "proton")
109 {
110 if(EmModel(0) == nullptr) // MK : Is this a reliable test ? VI: it is useful
111 {
112 auto rudd =
114 rudd->SetLowEnergyLimit(0 * eV);
115 rudd->SetHighEnergyLimit(500 * keV);
116 SetEmModel(rudd);
117
118 auto born =
120 born->SetLowEnergyLimit(500 * keV);
121 born->SetHighEnergyLimit(100 * MeV);
122 SetEmModel(born);
123 }
124
125 AddEmModel(1, EmModel());
126 if(EmModel(1) != nullptr) AddEmModel(2, EmModel(1));
127 }
128
129 if(name == "hydrogen")
130 {
131 if(EmModel() == nullptr)
132 {
133 auto rudd =
135 SetEmModel(rudd);
136 rudd->SetLowEnergyLimit(0 * eV);
137 rudd->SetHighEnergyLimit(100 * MeV);
138 }
139 AddEmModel(1, EmModel());
140 }
141
142 if(name == "alpha" || name == "alpha+" || name == "helium")
143 {
144 if(EmModel() == nullptr)
145 {
146 auto rudd =
148 SetEmModel(rudd);
149 rudd->SetLowEnergyLimit(0 * keV);
150 rudd->SetHighEnergyLimit(400 * MeV);
151 }
152 AddEmModel(1, EmModel());
153 }
154
155 // Extension to HZE proposed by Z. Francis
156
157 //SEB
158 if(/*name == "carbon" || name == "nitrogen" || name == "oxygen" || name == "iron" ||*/
159 name == "GenericIon")
160 //
161 {
162 if(EmModel() == nullptr)
163 {
164 auto ruddExt =
166 SetEmModel(ruddExt);
167 ruddExt->SetLowEnergyLimit(0 * keV);
168 //SEB: 1e6*MeV by default - updated in model class
169 //EmModel()->SetHighEnergyLimit(p->GetAtomicMass()*1e6*MeV);
170 ruddExt->SetHighEnergyLimit(1e6 * MeV);
171 }
172 AddEmModel(1, EmModel());
173 }
174 }
175}
176
177//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
178
180{
181 if(EmModel(1) != nullptr)
182 {
183 G4cout << " Total cross sections computed from " << EmModel(0)->GetName()
184 << " and " << EmModel(1)->GetName() << " models" << G4endl;
185 }
186 else
187 {
188 G4cout << " Total cross sections computed from "
189 << EmModel()->GetName()
190 << G4endl;
191 }
192}
193
194//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
#define G4DNABornIonisationModel
G4ProcessType
bool G4bool
Definition G4Types.hh:86
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
static G4DNAGenericIonsManager * Instance()
G4ParticleDefinition * GetIon(const G4String &name)
~G4DNAIonisation() override
virtual void PrintInfo()
G4DNAIonisation(const G4String &processName="DNAIonisation", G4ProcessType type=fElectromagnetic)
G4bool IsApplicable(const G4ParticleDefinition &) override
void InitialiseProcess(const G4ParticleDefinition *) override
static G4Electron * Electron()
Definition G4Electron.cc:91
static G4GenericIon * GenericIonDefinition()
const G4String & GetParticleName() const
static G4Positron * Positron()
Definition G4Positron.cc:90
static G4Proton * Proton()
Definition G4Proton.cc:90
const G4String & GetName() const
G4VEmModel * EmModel(size_t index=0) const
void SetBuildTableFlag(G4bool val)
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
void SetEmModel(G4VEmModel *, G4int index=0)
void SetProcessSubType(G4int)