Geant4-11
G4EmDNAPhysics_option1.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
28
29#include "G4SystemOfUnits.hh"
30
32
33// *** Processes and models for Geant4-DNA
34
36#include "G4DNAElastic.hh"
39
40#include "G4DNAExcitation.hh"
41#include "G4DNAAttachment.hh"
42#include "G4DNAVibExcitation.hh"
43#include "G4DNAIonisation.hh"
46
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_option1"), verbose(ver)
91{
93 param->SetDefaults();
94 param->SetFluo(true);
95 param->SetAuger(true);
96 param->SetDeexcitationIgnoreCut(true);
97 param->ActivateDNA();
98
100}
101
102//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
103
105{}
106
107//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
108
110{
111// bosons
113
114// leptons
117
118// baryons
120
122
123 G4DNAGenericIonsManager * genericIonsManager;
124 genericIonsManager=G4DNAGenericIonsManager::Instance();
125 genericIonsManager->GetIon("alpha++");
126 genericIonsManager->GetIon("alpha+");
127 genericIonsManager->GetIon("helium");
128 genericIonsManager->GetIon("hydrogen");
129 //genericIonsManager->GetIon("carbon");
130 //genericIonsManager->GetIon("nitrogen");
131 //genericIonsManager->GetIon("oxygen");
132 //genericIonsManager->GetIon("iron");
133
134}
135
136//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
137
139{
140 if(verbose > 1) {
141 G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
142 }
144
145 auto myParticleIterator=GetParticleIterator();
146 myParticleIterator->reset();
147 while( (*myParticleIterator)() )
148 {
149 G4ParticleDefinition* particle = myParticleIterator->value();
150 G4String particleName = particle->GetParticleName();
151
152 if (particleName == "e-") {
153
154 ph->RegisterProcess(new G4DNAElectronSolvation("e-_G4DNAElectronSolvation"),
155 particle);
156
157 /*
158 // THESE LINES MUST BE TESTED:
159 G4DNAElectronSolvation* solvation =
160 new G4DNAElectronSolvation("e-_G4DNAElectronSolvation");
161 auto therm = G4DNASolvationModelFactory::GetMacroDefinedModel();
162 therm->SetHighEnergyLimit(7.4*eV); // limit of the Champion's model
163 solvation->SetEmModel(therm);
164 ph->RegisterProcess(solvation, particle);
165 */
166
167 // *** Elastic scattering (two alternative models available) ***
168
169 //G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
170 //theDNAElasticProcess->SetEmModel(new G4DNAChampionElasticModel());
171
172 // or alternative model
173 //theDNAElasticProcess->SetEmModel(new G4DNAScreenedRutherfordElasticModel());
174
175 //ph->RegisterProcess(theDNAElasticProcess, particle);
176
179 ph->RegisterProcess(msc, particle);
180
181
182 // *** Excitation ***
183 ph->RegisterProcess(new G4DNAExcitation("e-_G4DNAExcitation"), particle);
184
185 // *** Ionisation ***
186 ph->RegisterProcess(new G4DNAIonisation("e-_G4DNAIonisation"), particle);
187
188 // *** Vibrational excitation ***
189 ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
190
191 // *** Attachment ***
192 ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
193
194 } else if ( particleName == "proton" ) {
195
198 ph->RegisterProcess(msc, particle);
199
200 ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
201 ph->RegisterProcess(new G4DNAIonisation("proton_G4DNAIonisation"), particle);
202 ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
203
204 } else if ( particleName == "hydrogen" ) {
205 ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
206 ph->RegisterProcess(new G4DNAIonisation("hydrogen_G4DNAIonisation"), particle);
207 ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
208
209 } else if ( particleName == "alpha" ) {
210
213 ph->RegisterProcess(msc, particle);
214
215 ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
216 ph->RegisterProcess(new G4DNAIonisation("alpha_G4DNAIonisation"), particle);
217 ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
218
219 } else if ( particleName == "alpha+" ) {
220
223 ph->RegisterProcess(msc, particle);
224
225 ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
226 ph->RegisterProcess(new G4DNAIonisation("alpha+_G4DNAIonisation"), particle);
227 ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
228 ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
229
230 } else if ( particleName == "helium" ) {
231 ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
232 ph->RegisterProcess(new G4DNAIonisation("helium_G4DNAIonisation"), particle);
233 ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
234
235 // Extension to HZE proposed by Z. Francis
236
237 // S. Incerti
238
239 } else if ( particleName == "GenericIon" ) {
240
243 ph->RegisterProcess(msc, particle);
244
245 ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
246
247 /*
248 } else if ( particleName == "carbon" ) {
249
250 G4hMultipleScattering* msc = new G4hMultipleScattering();
251 msc->SetEmModel(new G4LowEWentzelVIModel());
252 ph->RegisterProcess(msc, particle);
253
254 ph->RegisterProcess(new G4DNAIonisation("carbon_G4DNAIonisation"), particle);
255
256 } else if ( particleName == "nitrogen" ) {
257
258 G4hMultipleScattering* msc = new G4hMultipleScattering();
259 msc->SetEmModel(new G4LowEWentzelVIModel());
260 ph->RegisterProcess(msc, particle);
261
262 ph->RegisterProcess(new G4DNAIonisation("nitrogen_G4DNAIonisation"), particle);
263
264 } else if ( particleName == "oxygen" ) {
265
266 G4hMultipleScattering* msc = new G4hMultipleScattering();
267 msc->SetEmModel(new G4LowEWentzelVIModel());
268 ph->RegisterProcess(msc, particle);
269
270 ph->RegisterProcess(new G4DNAIonisation("oxygen_G4DNAIonisation"), particle);
271
272 } else if ( particleName == "iron" ) {
273
274 G4hMultipleScattering* msc = new G4hMultipleScattering();
275 msc->SetEmModel(new G4LowEWentzelVIModel());
276 ph->RegisterProcess(msc, particle);
277
278 ph->RegisterProcess(new G4DNAIonisation("iron_G4DNAIonisation"), particle);
279 */
280 }
281
282 // Warning : the following particles and processes are needed by EM Physics builders
283 // They are taken from the default Livermore Physics list
284 // These particles are currently not handled by Geant4-DNA
285
286 // e+
287
288 else if (particleName == "e+") {
289
290 // Identical to G4EmStandardPhysics_option3
291
294 G4eIonisation* eIoni = new G4eIonisation();
295 eIoni->SetStepFunction(0.2, 100*um);
296
297 ph->RegisterProcess(msc, particle);
298 ph->RegisterProcess(eIoni, particle);
299 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
300 ph->RegisterProcess(new G4eplusAnnihilation(), particle);
301
302 } else if (particleName == "gamma") {
303
304 // photoelectric effect - Livermore model only
305 G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
306 thePhotoElectricEffect->SetEmModel(new G4LivermorePhotoElectricModel());
307 ph->RegisterProcess(thePhotoElectricEffect, particle);
308
309 // Compton scattering - Livermore model only
310 G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
311 theComptonScattering->SetEmModel(new G4LivermoreComptonModel());
312 ph->RegisterProcess(theComptonScattering, particle);
313
314 // gamma conversion - Livermore model below 80 GeV
315 G4GammaConversion* theGammaConversion = new G4GammaConversion();
316 theGammaConversion->SetEmModel(new G4LivermoreGammaConversionModel());
317 ph->RegisterProcess(theGammaConversion, particle);
318
319 // default Rayleigh scattering is Livermore
320 G4RayleighScattering* theRayleigh = new G4RayleighScattering();
321 ph->RegisterProcess(theRayleigh, particle);
322 }
323
324 // Warning : end of particles and processes are needed by EM Physics builders
325
326 }
327
328 // Deexcitation
329 //
332}
333
334//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@ bElectromagnetic
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmDNAPhysics_option1)
@ fUseDistanceToBoundary
static constexpr double um
Definition: G4SIunits.hh:93
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 G4Electron * Electron()
Definition: G4Electron.cc:93
G4EmDNAPhysics_option1(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 SetEmModel(G4VEmModel *, G4int index=0)
void SetStepFunction(G4double v1, G4double v2)
void SetStepLimitType(G4MscStepLimitType val)
void SetEmModel(G4VMscModel *, G4int idx=0)
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
const G4String & GetPhysicsName() const