Geant4-11
G4EmDNAPhysics_option6.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// Based on the work of M. Terrissol and M. C. Bordage
27//
28// Users are requested to cite the following papers:
29// - M. Terrissol, A. Baudre, Radiat. Prot. Dosim. 31 (1990) 175-177
30// - M.C. Bordage, J. Bordes, S. Edel, M. Terrissol, X. Franceries,
31// M. Bardies, N. Lampe, S. Incerti, Phys. Med. 32 (2016) 1833-1840
32//
33// Authors of this class:
34// M.C. Bordage, M. Terrissol, S. Edel, J. Bordes, S. Incerti
35//
36// 15.01.2014: creation
37//
38
40
41#include "G4SystemOfUnits.hh"
42
44
45// *** Processes and models for Geant4-DNA
46
49
50#include "G4DNAElastic.hh"
52
53#include "G4DNAIonisation.hh"
55
56#include "G4DNAExcitation.hh"
58
59#include "G4DNAAttachment.hh"
60#include "G4DNAVibExcitation.hh"
61
64
65// particles
66
67#include "G4Electron.hh"
68#include "G4Proton.hh"
69#include "G4GenericIon.hh"
70
71// Warning : the following is needed in order to use EM Physics builders
72// e+
73#include "G4Positron.hh"
75#include "G4eIonisation.hh"
76#include "G4eBremsstrahlung.hh"
78// gamma
79#include "G4Gamma.hh"
84#include "G4GammaConversion.hh"
88
89#include "G4EmParameters.hh"
90// end of warning
91
92#include "G4LossTableManager.hh"
95#include "G4BuilderType.hh"
96
97// factory
99//
101
102
103//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
104
106 : G4VPhysicsConstructor("G4EmDNAPhysics_option6"), verbose(ver)
107{
108// G4EmParameters::Instance()->SetDefaults();
110 param->SetDefaults();
111 param->SetFluo(true);
112 param->SetAuger(true);
113 param->SetDeexcitationIgnoreCut(true);
114 param->ActivateDNA();
115
117}
118
119//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
120
122{}
123
124//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
125
127{
128// bosons
130
131// leptons
134
135// baryons
137
139
140 G4DNAGenericIonsManager * genericIonsManager;
141 genericIonsManager=G4DNAGenericIonsManager::Instance();
142 genericIonsManager->GetIon("alpha++");
143 genericIonsManager->GetIon("alpha+");
144 genericIonsManager->GetIon("helium");
145 genericIonsManager->GetIon("hydrogen");
146
147}
148
149//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
150
152{
153 if(verbose > 1) {
154 G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
155 }
157
158 auto myParticleIterator=GetParticleIterator();
159 myParticleIterator->reset();
160 while( (*myParticleIterator)() )
161 {
162 G4ParticleDefinition* particle = myParticleIterator->value();
163 G4String particleName = particle->GetParticleName();
164
165 if (particleName == "e-") {
166
167 // *** Solvation ***
168 G4DNAElectronSolvation* solvation =
169 new G4DNAElectronSolvation("e-_G4DNAElectronSolvation");
170
172 therm->SetHighEnergyLimit(11.*eV); // limit of the CPA100 elastic model
173 solvation->SetEmModel(therm);
174 ph->RegisterProcess(solvation, particle);
175
176 // *** Elastic scattering (two alternative models available) ***
177 G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
178 theDNAElasticProcess->SetEmModel(new G4DNACPA100ElasticModel());
179 ph->RegisterProcess(theDNAElasticProcess, particle);
180
181 // *** Excitation ***
182 G4DNAExcitation* theDNAExcitationProcess = new G4DNAExcitation("e-_G4DNAExcitation");
183 theDNAExcitationProcess->SetEmModel(new G4DNACPA100ExcitationModel());
184 ph->RegisterProcess(theDNAExcitationProcess, particle);
185
186 // *** Ionisation ***
187 G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("e-_G4DNAIonisation");
188 theDNAIonisationProcess->SetEmModel(new G4DNACPA100IonisationModel());
189 ph->RegisterProcess(theDNAIonisationProcess, particle);
190
191 // *** Vibrational excitation ***
192 //ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
193
194 // *** Attachment ***
195 //ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
196
197 } else if ( particleName == "proton" ) {
198 ph->RegisterProcess(new G4DNAElastic("proton_G4DNAElastic"), particle);
199 ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
200 ph->RegisterProcess(new G4DNAIonisation("proton_G4DNAIonisation"), particle);
201 ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
202
203 } else if ( particleName == "hydrogen" ) {
204 ph->RegisterProcess(new G4DNAElastic("hydrogen_G4DNAElastic"), particle);
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 ph->RegisterProcess(new G4DNAElastic("alpha_G4DNAElastic"), particle);
211 ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
212 ph->RegisterProcess(new G4DNAIonisation("alpha_G4DNAIonisation"), particle);
213 ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
214
215 } else if ( particleName == "alpha+" ) {
216 ph->RegisterProcess(new G4DNAElastic("alpha+_G4DNAElastic"), particle);
217 ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
218 ph->RegisterProcess(new G4DNAIonisation("alpha+_G4DNAIonisation"), particle);
219 ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
220 ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
221
222 } else if ( particleName == "helium" ) {
223 ph->RegisterProcess(new G4DNAElastic("helium_G4DNAElastic"), particle);
224 ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
225 ph->RegisterProcess(new G4DNAIonisation("helium_G4DNAIonisation"), particle);
226 ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
227
228 } else if ( particleName == "GenericIon" ) {
229 ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
230 }
231
232 // Warning : the following particles and processes are needed by EM Physics builders
233 // They are taken from the default Livermore Physics list
234 // These particles are currently not handled by Geant4-DNA
235
236 // e+
237
238 else if (particleName == "e+") {
239
240 // Identical to G4EmStandardPhysics_option3
241
244 G4eIonisation* eIoni = new G4eIonisation();
245 eIoni->SetStepFunction(0.2, 100*um);
246
247 ph->RegisterProcess(msc, particle);
248 ph->RegisterProcess(eIoni, particle);
249 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
250 ph->RegisterProcess(new G4eplusAnnihilation(), particle);
251
252 } else if (particleName == "gamma") {
253
254 // photoelectric effect - Livermore model only
255 G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
256 thePhotoElectricEffect->SetEmModel(new G4LivermorePhotoElectricModel());
257 ph->RegisterProcess(thePhotoElectricEffect, particle);
258
259 // Compton scattering - Livermore model only
260 G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
261 theComptonScattering->SetEmModel(new G4LivermoreComptonModel());
262 ph->RegisterProcess(theComptonScattering, particle);
263
264 // gamma conversion - Livermore model below 80 GeV
265 G4GammaConversion* theGammaConversion = new G4GammaConversion();
266 theGammaConversion->SetEmModel(new G4LivermoreGammaConversionModel());
267 ph->RegisterProcess(theGammaConversion, particle);
268
269 // default Rayleigh scattering is Livermore
270 G4RayleighScattering* theRayleigh = new G4RayleighScattering();
271 ph->RegisterProcess(theRayleigh, particle);
272 }
273
274 // Warning : end of particles and processes are needed by EM Physics builders
275
276 }
277
278 // Deexcitation
279 //
280
283
284}
285
286//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@ bElectromagnetic
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmDNAPhysics_option6)
@ fUseDistanceToBoundary
static constexpr double eV
Definition: G4SIunits.hh:201
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 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_option6(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)
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
const G4String & GetPhysicsName() const