Geant4-11
G4EmDNAPhysics_option5.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// S. Incerti (incerti@cenbg.in2p3.fr)
27//
28
30
31#include "G4SystemOfUnits.hh"
32
34
35// *** Processes and models for Geant4-DNA
36
38#include "G4DNAElastic.hh"
42
43#include "G4DNAIonisation.hh"
45
46#include "G4DNAExcitation.hh"
48
49#include "G4DNAAttachment.hh"
50#include "G4DNAVibExcitation.hh"
51
54
55// particles
56
57#include "G4Electron.hh"
58#include "G4Proton.hh"
59#include "G4GenericIon.hh"
60
61// Warning : the following is needed in order to use EM Physics builders
62// e+
63#include "G4Positron.hh"
65#include "G4eIonisation.hh"
66#include "G4eBremsstrahlung.hh"
68// gamma
69#include "G4Gamma.hh"
74#include "G4GammaConversion.hh"
78
79#include "G4EmParameters.hh"
80// end of warning
81
82#include "G4LossTableManager.hh"
85#include "G4BuilderType.hh"
86
87// factory
89//
91
92//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
93
95 G4VPhysicsConstructor("G4EmDNAPhysics_option5"), verbose(ver)
96{
98 param->SetDefaults();
99 param->SetFluo(true);
100 param->SetAuger(true);
101 param->SetDeexcitationIgnoreCut(true);
102 param->ActivateDNA();
103
105}
106
107//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
108
110{
111}
112
113//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
114
116{
117// bosons
119
120// leptons
123
124// baryons
126
128
129 G4DNAGenericIonsManager * genericIonsManager;
130 genericIonsManager = G4DNAGenericIonsManager::Instance();
131 genericIonsManager->GetIon("alpha++");
132 genericIonsManager->GetIon("alpha+");
133 genericIonsManager->GetIon("helium");
134 genericIonsManager->GetIon("hydrogen");
135
136}
137
138//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
139
141{
142 if(verbose > 1)
143 {
144 G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
145 }
147
148 auto myParticleIterator=GetParticleIterator();
149 myParticleIterator->reset();
150 while( (*myParticleIterator)() )
151 {
152 G4ParticleDefinition* particle = myParticleIterator->value();
153 G4String particleName = particle->GetParticleName();
154
155 if (particleName == "e-")
156 {
157 // *** Solvation ***
158
159 G4DNAElectronSolvation* solvation =
160 new G4DNAElectronSolvation("e-_G4DNAElectronSolvation");
162 therm->SetHighEnergyLimit(10.*eV); // limit of the Uehara's model
163 solvation->SetEmModel(therm);
164 ph->RegisterProcess(solvation, particle);
165
166 // *** Elastic scattering ***
167 G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
169 mod->SelectFasterComputation(true);
170 theDNAElasticProcess->SetEmModel(mod);
171 ph->RegisterProcess(theDNAElasticProcess, particle);
172
173 // *** Excitation ***
174 G4DNAExcitation* theDNAExcitationProcess = new G4DNAExcitation("e-_G4DNAExcitation");
175 theDNAExcitationProcess->SetEmModel(new G4DNAEmfietzoglouExcitationModel());
176 ph->RegisterProcess(theDNAExcitationProcess, particle);
177
178 // *** Ionisation ***
179 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("e-_G4DNAIonisation");
181 theDNAIonisationProcess->SetEmModel(modE);
182 modE->SelectFasterComputation(true);
183 ph->RegisterProcess(theDNAIonisationProcess, particle);
184
185 // *** Vibrational excitation ***
186 //ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
187
188 // *** Attachment ***
189 //ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
190
191 } else if ( particleName == "proton" ) {
192
193 ph->RegisterProcess(new G4DNAElastic("proton_G4DNAElastic"), particle);
194
195 ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
196
197 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("proton_G4DNAIonisation");
198
200 mod1->SetLowEnergyLimit(0*eV);
201 mod1->SetHighEnergyLimit(500*keV);
202
204 mod2->SetLowEnergyLimit(500*keV);
205 mod2->SetHighEnergyLimit(100*MeV);
206 mod2->SelectFasterComputation(true);
207
208 theDNAIonisationProcess->SetEmModel(mod1);
209 theDNAIonisationProcess->SetEmModel(mod2);
210
211 ph->RegisterProcess(theDNAIonisationProcess, particle);
212
213 ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
214
215 } else if ( particleName == "hydrogen" ) {
216
217 ph->RegisterProcess(new G4DNAElastic("hydrogen_G4DNAElastic"), particle);
218
219 ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
220
221 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("hydrogen_G4DNAIonisation");
222 theDNAIonisationProcess->SetEmModel(new G4DNARuddIonisationExtendedModel());
223 ph->RegisterProcess(theDNAIonisationProcess, particle);
224
225 ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
226
227 } else if ( particleName == "alpha" ) {
228
229 ph->RegisterProcess(new G4DNAElastic("alpha_G4DNAElastic"), particle);
230
231 ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
232
233 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("alpha_G4DNAIonisation");
234 theDNAIonisationProcess->SetEmModel(new G4DNARuddIonisationExtendedModel());
235 ph->RegisterProcess(theDNAIonisationProcess, particle);
236
237 ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
238
239 } else if ( particleName == "alpha+" ) {
240
241 ph->RegisterProcess(new G4DNAElastic("alpha+_G4DNAElastic"), particle);
242
243 ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
244
245 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("alpha+_G4DNAIonisation");
246 theDNAIonisationProcess->SetEmModel(new G4DNARuddIonisationExtendedModel());
247 ph->RegisterProcess(theDNAIonisationProcess, particle);
248
249 ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
250 ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
251
252 } else if ( particleName == "helium" ) {
253
254 ph->RegisterProcess(new G4DNAElastic("helium_G4DNAElastic"), particle);
255
256 ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
257
258 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("helium_G4DNAIonisation");
259 theDNAIonisationProcess->SetEmModel(new G4DNARuddIonisationExtendedModel());
260 ph->RegisterProcess(theDNAIonisationProcess, particle);
261
262 ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
263
264 // Extension to HZE proposed by Z. Francis
265
266 } else if ( particleName == "GenericIon" ) {
267 ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
268 }
269
270 // Warning : the following particles and processes are needed by EM Physics builders
271 // They are taken from the default Livermore Physics list
272 // These particles are currently not handled by Geant4-DNA
273
274 // e+
275
276 else if (particleName == "e+") {
277
280 G4eIonisation* eIoni = new G4eIonisation();
281 eIoni->SetStepFunction(0.2, 100*um);
282
283 ph->RegisterProcess(msc, particle);
284 ph->RegisterProcess(eIoni, particle);
285 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
286 ph->RegisterProcess(new G4eplusAnnihilation(), particle);
287
288 } else if (particleName == "gamma") {
289
290 // photoelectric effect - Livermore model only
291 G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
292 thePhotoElectricEffect->SetEmModel(new G4LivermorePhotoElectricModel());
293 ph->RegisterProcess(thePhotoElectricEffect, particle);
294
295 // Compton scattering - Livermore model only
296 G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
297 theComptonScattering->SetEmModel(new G4LivermoreComptonModel());
298 ph->RegisterProcess(theComptonScattering, particle);
299
300 // gamma conversion - Livermore model below 80 GeV
301 G4GammaConversion* theGammaConversion = new G4GammaConversion();
302 theGammaConversion->SetEmModel(new G4LivermoreGammaConversionModel());
303 ph->RegisterProcess(theGammaConversion, particle);
304
305 // default Rayleigh scattering is Livermore
306 G4RayleighScattering* theRayleigh = new G4RayleighScattering();
307 ph->RegisterProcess(theRayleigh, particle);
308 }
309
310 // Warning : end of particles and processes are needed by EM Physics builders
311
312 }
313
314 // Deexcitation
315 //
318}
319
320//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@ bElectromagnetic
#define G4DNABornIonisationModel
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmDNAPhysics_option5)
@ fUseDistanceToBoundary
static constexpr double keV
Definition: G4SIunits.hh:202
static constexpr double eV
Definition: G4SIunits.hh:201
static constexpr double um
Definition: G4SIunits.hh:93
static constexpr double MeV
Definition: G4SIunits.hh:200
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
static G4DNAGenericIonsManager * Instance(void)
G4ParticleDefinition * GetIon(const G4String &name)
static G4VEmModel * GetMacroDefinedModel()
One step thermalization model can be chosen via macro using /process/dna/e-SolvationSubType Ritchie19...
static G4Electron * Electron()
Definition: G4Electron.cc:93
G4EmDNAPhysics_option5(G4int ver=1, const G4String &name="")
static G4EmParameters * Instance()
void SetDeexcitationIgnoreCut(G4bool val)
void SetFluo(G4bool val)
void SetAuger(G4bool val)
static G4Gamma * Gamma()
Definition: G4Gamma.cc:85
static G4GenericIon * GenericIonDefinition()
Definition: G4GenericIon.cc:87
void SetAtomDeexcitation(G4VAtomDeexcitation *)
static G4LossTableManager * Instance()
const G4String & GetParticleName() const
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
static G4PhysicsListHelper * GetPhysicsListHelper()
static G4Positron * Positron()
Definition: G4Positron.cc:93
static G4Proton * Proton()
Definition: G4Proton.cc:92
void SetHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:767
void SetLowEnergyLimit(G4double)
Definition: G4VEmModel.hh:774
void SetEmModel(G4VEmModel *, G4int index=0)
void SetStepFunction(G4double v1, G4double v2)
void SetStepLimitType(G4MscStepLimitType val)
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
const G4String & GetPhysicsName() const