Geant4-11
G4EmDNAPhysics_option2.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// SI: This constructor uses speedup options of DNA models
28
30
31#include "G4SystemOfUnits.hh"
32
34
35// *** Processes and models for Geant4-DNA
36
38#include "G4DNAElastic.hh"
42
43#include "G4DNAExcitation.hh"
44#include "G4DNAAttachment.hh"
45#include "G4DNAVibExcitation.hh"
46#include "G4DNAIonisation.hh"
49
50// particles
51
52#include "G4Electron.hh"
53#include "G4Proton.hh"
54#include "G4GenericIon.hh"
55
56// Warning : the following is needed in order to use EM Physics builders
57// e+
58#include "G4Positron.hh"
60#include "G4eIonisation.hh"
61#include "G4eBremsstrahlung.hh"
63// gamma
64#include "G4Gamma.hh"
69#include "G4GammaConversion.hh"
73
74#include "G4EmParameters.hh"
75// end of warning
76
77#include "G4LossTableManager.hh"
80#include "G4BuilderType.hh"
81
82// factory
84//
86
87//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
88
90 : G4VPhysicsConstructor("G4EmDNAPhysics_option2"), verbose(ver)
91{
93
94 param->SetDefaults();
95 param->SetFluo(true);
96 param->SetAuger(true);
97 param->SetDeexcitationIgnoreCut(true);
98 param->ActivateDNA();
99
101}
102
103//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
104
106{}
107
108//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
109
111{
112// bosons
114
115// leptons
118
119// baryons
121
123
124 G4DNAGenericIonsManager * genericIonsManager;
125 genericIonsManager=G4DNAGenericIonsManager::Instance();
126 genericIonsManager->GetIon("alpha++");
127 genericIonsManager->GetIon("alpha+");
128 genericIonsManager->GetIon("helium");
129 genericIonsManager->GetIon("hydrogen");
130
131}
132
133//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
134
136{
137 if(verbose > 1) {
138 G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
139 }
141
142 auto myParticleIterator=GetParticleIterator();
143 myParticleIterator->reset();
144 while( (*myParticleIterator)() )
145 {
146 G4ParticleDefinition* particle = myParticleIterator->value();
147 G4String particleName = particle->GetParticleName();
148
149 if (particleName == "e-") {
150
151 G4DNAElectronSolvation* solvation =
152 new G4DNAElectronSolvation("e-_G4DNAElectronSolvation");
153
155 therm->SetHighEnergyLimit(7.4*eV); // limit of the Champion's model
156 //therm->SetHighEnergyLimit(10*eV); // limit of the ELSEPA model
157 solvation->SetEmModel(therm);
158 ph->RegisterProcess(solvation, particle);
159
160 // *** Elastic scattering (two alternative models available) ***
161
162 G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
163 theDNAElasticProcess->SetEmModel(new G4DNAChampionElasticModel());
164
165 // or alternative model
166 //theDNAElasticProcess->SetEmModel(new G4DNAELSEPAElasticModel());
167 //theDNAElasticProcess->SetEmModel(new G4DNAScreenedRutherfordElasticModel());
168
169 ph->RegisterProcess(theDNAElasticProcess, particle);
170
171 // *** Excitation ***
172 ph->RegisterProcess(new G4DNAExcitation("e-_G4DNAExcitation"), particle);
173
174 // *** Ionisation ***
175 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("e-_G4DNAIonisation");
177 mod->SelectFasterComputation(true);
178 theDNAIonisationProcess->SetEmModel(mod);
179 ph->RegisterProcess(theDNAIonisationProcess, particle);
180
181 // *** Vibrational excitation ***
182 ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
183
184 // *** Attachment ***
185 ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
186
187 } else if ( particleName == "proton" ) {
188
189 ph->RegisterProcess(new G4DNAElastic("proton_G4DNAElastic"), particle);
190
191 ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
192
193 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("proton_G4DNAIonisation");
194
196 mod1->SetLowEnergyLimit(0*eV);
197 mod1->SetHighEnergyLimit(500*keV);
198
200 mod2->SetLowEnergyLimit(500*keV);
201 mod2->SetHighEnergyLimit(100*MeV);
202 mod2->SelectFasterComputation(true);
203
204 theDNAIonisationProcess->SetEmModel(mod1);
205 theDNAIonisationProcess->SetEmModel(mod2);
206
207 ph->RegisterProcess(theDNAIonisationProcess, particle);
208
209 ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
210
211 } else if ( particleName == "hydrogen" ) {
212
213 ph->RegisterProcess(new G4DNAElastic("hydrogen_G4DNAElastic"), particle);
214
215 ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
216
217 //ph->RegisterProcess(new G4DNAIonisation("hydrogen_G4DNAIonisation"), particle);
218 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("hydrogen_G4DNAIonisation");
219 theDNAIonisationProcess->SetEmModel(new G4DNARuddIonisationExtendedModel());
220 ph->RegisterProcess(theDNAIonisationProcess, particle);
221
222 ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
223
224 } else if ( particleName == "alpha" ) {
225
226 ph->RegisterProcess(new G4DNAElastic("alpha_G4DNAElastic"), particle);
227
228 ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
229
230 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("alpha_G4DNAIonisation");
231 theDNAIonisationProcess->SetEmModel(new G4DNARuddIonisationExtendedModel());
232 ph->RegisterProcess(theDNAIonisationProcess, particle);
233
234 ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
235
236 } else if ( particleName == "alpha+" ) {
237
238 ph->RegisterProcess(new G4DNAElastic("alpha+_G4DNAElastic"), particle);
239
240 ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
241
242 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("alpha+_G4DNAIonisation");
243 theDNAIonisationProcess->SetEmModel(new G4DNARuddIonisationExtendedModel());
244 ph->RegisterProcess(theDNAIonisationProcess, particle);
245
246 ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
247 ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
248
249 } else if ( particleName == "helium" ) {
250
251 ph->RegisterProcess(new G4DNAElastic("helium_G4DNAElastic"), particle);
252
253 ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
254
255 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("helium_G4DNAIonisation");
256 theDNAIonisationProcess->SetEmModel(new G4DNARuddIonisationExtendedModel());
257 ph->RegisterProcess(theDNAIonisationProcess, particle);
258
259 ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
260
261 } else if ( particleName == "GenericIon" ) {
262 ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
263 }
264
265 // Warning : the following particles and processes are needed by EM Physics builders
266 // They are taken from the default Livermore Physics list
267 // These particles are currently not handled by Geant4-DNA
268
269 // e+
270
271 else if (particleName == "e+") {
272
275 G4eIonisation* eIoni = new G4eIonisation();
276 eIoni->SetStepFunction(0.2, 100*um);
277
278 ph->RegisterProcess(msc, particle);
279 ph->RegisterProcess(eIoni, particle);
280 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
281 ph->RegisterProcess(new G4eplusAnnihilation(), particle);
282
283 } else if (particleName == "gamma") {
284
285 // photoelectric effect - Livermore model only
286 G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
287 thePhotoElectricEffect->SetEmModel(new G4LivermorePhotoElectricModel());
288 ph->RegisterProcess(thePhotoElectricEffect, particle);
289
290 // Compton scattering - Livermore model only
291 G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
292 theComptonScattering->SetEmModel(new G4LivermoreComptonModel());
293 ph->RegisterProcess(theComptonScattering, particle);
294
295 // gamma conversion - Livermore model below 80 GeV
296 G4GammaConversion* theGammaConversion = new G4GammaConversion();
297 theGammaConversion->SetEmModel(new G4LivermoreGammaConversionModel());
298 ph->RegisterProcess(theGammaConversion, particle);
299
300 // default Rayleigh scattering is Livermore
301 G4RayleighScattering* theRayleigh = new G4RayleighScattering();
302 ph->RegisterProcess(theRayleigh, particle);
303 }
304
305 // Warning : end of particles and processes are needed by EM Physics builders
306
307 }
308
309 // Deexcitation
310 //
313}
314
315//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@ bElectromagnetic
#define G4DNABornIonisationModel
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmDNAPhysics_option2)
@ 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_option2(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