Geant4-11
G4EmDNAPhysics_option7.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_option7"), 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 // *** Electron solvation ***
158 // Either kills the electron track or transform the electron to
159 // a solvated electron, depending on whether the chemistry is
160 // activated
161
162 G4DNAElectronSolvation* solvation =
163 new G4DNAElectronSolvation("e-_G4DNAElectronSolvation");
165 therm->SetHighEnergyLimit(10.*eV); // limit of the Uehara's model
166 solvation->SetEmModel(therm);
167 ph->RegisterProcess(solvation, particle);
168
169 // *** Elastic scattering ***
170
171 G4DNAElastic* theDNAElasticProcess =
172 new G4DNAElastic("e-_G4DNAElastic");
175 emElast->SetHighEnergyLimit(1*MeV);
176 theDNAElasticProcess->SetEmModel(emElast);
177 ph->RegisterProcess(theDNAElasticProcess, particle);
178
179 // *** Excitation ***
180
181 G4DNAExcitation* theDNAExcitationProcess =
182 new G4DNAExcitation("e-_G4DNAExcitation");
183
184 // 1-st model should be Set
188 theDNAExcitationProcess->SetEmModel(emExc);
189
190 // 2-nd model should be Add
192 bornExc->SetActivationLowEnergyLimit(10*keV);
194 theDNAExcitationProcess->AddEmModel(2, bornExc);
195
196 ph->RegisterProcess(theDNAExcitationProcess, particle);
197
198 // *** Ionisation ***
199
200 G4DNAIonisation* theDNAIonisationProcess =
201 new G4DNAIonisation("e-_G4DNAIonisation");
202
203 // 1-st model should be Set
205 emIonModel->SetActivationLowEnergyLimit(10.*eV);
206 emIonModel->SetActivationHighEnergyLimit(10.*keV);
207 theDNAIonisationProcess->SetEmModel(emIonModel);
208
209 // 2-nd model should be Add
211 bornIon->SetActivationLowEnergyLimit(10*keV);
212 bornIon->SetActivationHighEnergyLimit(1.*MeV);
213 theDNAIonisationProcess->AddEmModel(2,bornIon);
214
215 ph->RegisterProcess(theDNAIonisationProcess, particle);
216
217 // *** Vibrational excitation ***
218 ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
219
220 // *** Attachment ***
221 ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
222
223 } else if ( particleName == "proton" ) {
224 ph->RegisterProcess(new G4DNAElastic("proton_G4DNAElastic"), particle);
225 ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
226 ph->RegisterProcess(new G4DNAIonisation("proton_G4DNAIonisation"), particle);
227 ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
228
229 } else if ( particleName == "hydrogen" ) {
230 ph->RegisterProcess(new G4DNAElastic("hydrogen_G4DNAElastic"), particle);
231 ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
232 ph->RegisterProcess(new G4DNAIonisation("hydrogen_G4DNAIonisation"), particle);
233 ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
234
235 } else if ( particleName == "alpha" ) {
236 ph->RegisterProcess(new G4DNAElastic("alpha_G4DNAElastic"), particle);
237 ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
238 ph->RegisterProcess(new G4DNAIonisation("alpha_G4DNAIonisation"), particle);
239 ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
240
241 } else if ( particleName == "alpha+" ) {
242 ph->RegisterProcess(new G4DNAElastic("alpha+_G4DNAElastic"), particle);
243 ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
244 ph->RegisterProcess(new G4DNAIonisation("alpha+_G4DNAIonisation"), particle);
245 ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
246 ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
247
248 } else if ( particleName == "helium" ) {
249 ph->RegisterProcess(new G4DNAElastic("helium_G4DNAElastic"), particle);
250 ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
251 ph->RegisterProcess(new G4DNAIonisation("helium_G4DNAIonisation"), particle);
252 ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
253 }
254 // Extension to HZE proposed by Z. Francis
255 else if ( particleName == "GenericIon" ) {
256 ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
257 }
258
259 // Warning : the following particles and processes are needed by EM Physics builders
260 // They are taken from the default Livermore Physics list
261 // These particles are currently not handled by Geant4-DNA
262
263 // e+
264
265 else if (particleName == "e+") {
266
267 // Identical to G4EmStandardPhysics_option3
268
271 G4eIonisation* eIoni = new G4eIonisation();
272 eIoni->SetStepFunction(0.2, 100*um);
273
274 ph->RegisterProcess(msc, particle);
275 ph->RegisterProcess(eIoni, particle);
276 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
277 ph->RegisterProcess(new G4eplusAnnihilation(), particle);
278
279 } else if (particleName == "gamma") {
280
281 // photoelectric effect - Livermore model only
282 G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
283 thePhotoElectricEffect->SetEmModel(new G4LivermorePhotoElectricModel());
284 ph->RegisterProcess(thePhotoElectricEffect, particle);
285
286 // Compton scattering - Livermore model only
287 G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
288 theComptonScattering->SetEmModel(new G4LivermoreComptonModel());
289 ph->RegisterProcess(theComptonScattering, particle);
290
291 // gamma conversion - Livermore model below 80 GeV
292 G4GammaConversion* theGammaConversion = new G4GammaConversion();
293 theGammaConversion->SetEmModel(new G4LivermoreGammaConversionModel());
294 ph->RegisterProcess(theGammaConversion, particle);
295
296 // default Rayleigh scattering is Livermore
297 G4RayleighScattering* theRayleigh = new G4RayleighScattering();
298 ph->RegisterProcess(theRayleigh, particle);
299 }
300
301 // Warning : end of particles and processes are needed by EM Physics builders
302
303 }
304
305 // Deexcitation
306 //
309}
310
311//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@ bElectromagnetic
G4DNABornExcitationModel1 G4DNABornExcitationModel
#define G4DNABornIonisationModel
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmDNAPhysics_option7)
@ 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_option7(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 SetActivationLowEnergyLimit(G4double)
Definition: G4VEmModel.hh:788
void SetActivationHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:781
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
void SetEmModel(G4VEmModel *, G4int index=0)
void SetStepFunction(G4double v1, G4double v2)
void SetStepLimitType(G4MscStepLimitType val)
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
const G4String & GetPhysicsName() const