ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4EmDNAPhysics_option6.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4EmDNAPhysics_option6.cc
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 
62 #include "G4DNAChargeDecrease.hh"
63 #include "G4DNAChargeIncrease.hh"
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"
74 #include "G4eMultipleScattering.hh"
75 #include "G4eIonisation.hh"
76 #include "G4eBremsstrahlung.hh"
77 #include "G4eplusAnnihilation.hh"
78 // gamma
79 #include "G4Gamma.hh"
80 #include "G4PhotoElectricEffect.hh"
82 #include "G4ComptonScattering.hh"
84 #include "G4GammaConversion.hh"
86 #include "G4RayleighScattering.hh"
88 
89 #include "G4EmParameters.hh"
90 // end of warning
91 
92 #include "G4LossTableManager.hh"
93 #include "G4UAtomicDeexcitation.hh"
94 #include "G4PhysicsListHelper.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->SetAugerCascade(true);
114  param->SetDeexcitationIgnoreCut(true);
115  param->ActivateDNA();
116 
118 }
119 
120 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
121 
123 {}
124 
125 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
126 
128 {
129 // bosons
130  G4Gamma::Gamma();
131 
132 // leptons
135 
136 // baryons
138 
140 
141  G4DNAGenericIonsManager * genericIonsManager;
142  genericIonsManager=G4DNAGenericIonsManager::Instance();
143  genericIonsManager->GetIon("alpha++");
144  genericIonsManager->GetIon("alpha+");
145  genericIonsManager->GetIon("helium");
146  genericIonsManager->GetIon("hydrogen");
147 
148 }
149 
150 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
151 
153 {
154  if(verbose > 1) {
155  G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
156  }
158 
159  auto myParticleIterator=GetParticleIterator();
160  myParticleIterator->reset();
161  while( (*myParticleIterator)() )
162  {
163  G4ParticleDefinition* particle = myParticleIterator->value();
164  G4String particleName = particle->GetParticleName();
165 
166  if (particleName == "e-") {
167 
168  // *** Solvation ***
169  G4DNAElectronSolvation* solvation =
170  new G4DNAElectronSolvation("e-_G4DNAElectronSolvation");
171 
173  therm->SetHighEnergyLimit(11.*eV); // limit of the CPA100 elastic model
174  solvation->SetEmModel(therm);
175  ph->RegisterProcess(solvation, particle);
176 
177  // *** Elastic scattering (two alternative models available) ***
178  G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
179  theDNAElasticProcess->SetEmModel(new G4DNACPA100ElasticModel());
180  ph->RegisterProcess(theDNAElasticProcess, particle);
181 
182  // *** Excitation ***
183  G4DNAExcitation* theDNAExcitationProcess = new G4DNAExcitation("e-_G4DNAExcitation");
184  theDNAExcitationProcess->SetEmModel(new G4DNACPA100ExcitationModel());
185  ph->RegisterProcess(theDNAExcitationProcess, particle);
186 
187  // *** Ionisation ***
188  G4DNAIonisation* theDNAIonisationProcess = new G4DNAIonisation("e-_G4DNAIonisation");
189  theDNAIonisationProcess->SetEmModel(new G4DNACPA100IonisationModel());
190  ph->RegisterProcess(theDNAIonisationProcess, particle);
191 
192  // *** Vibrational excitation ***
193  //ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
194 
195  // *** Attachment ***
196  //ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
197 
198  } else if ( particleName == "proton" ) {
199  ph->RegisterProcess(new G4DNAElastic("proton_G4DNAElastic"), particle);
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 G4DNAElastic("hydrogen_G4DNAElastic"), particle);
206  ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
207  ph->RegisterProcess(new G4DNAIonisation("hydrogen_G4DNAIonisation"), particle);
208  ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
209 
210  } else if ( particleName == "alpha" ) {
211  ph->RegisterProcess(new G4DNAElastic("alpha_G4DNAElastic"), particle);
212  ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
213  ph->RegisterProcess(new G4DNAIonisation("alpha_G4DNAIonisation"), particle);
214  ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
215 
216  } else if ( particleName == "alpha+" ) {
217  ph->RegisterProcess(new G4DNAElastic("alpha+_G4DNAElastic"), particle);
218  ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
219  ph->RegisterProcess(new G4DNAIonisation("alpha+_G4DNAIonisation"), particle);
220  ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
221  ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
222 
223  } else if ( particleName == "helium" ) {
224  ph->RegisterProcess(new G4DNAElastic("helium_G4DNAElastic"), particle);
225  ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
226  ph->RegisterProcess(new G4DNAIonisation("helium_G4DNAIonisation"), particle);
227  ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
228 
229  } else if ( particleName == "GenericIon" ) {
230  ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
231  }
232 
233  // Warning : the following particles and processes are needed by EM Physics builders
234  // They are taken from the default Livermore Physics list
235  // These particles are currently not handled by Geant4-DNA
236 
237  // e+
238 
239  else if (particleName == "e+") {
240 
241  // Identical to G4EmStandardPhysics_option3
242 
245  G4eIonisation* eIoni = new G4eIonisation();
246  eIoni->SetStepFunction(0.2, 100*um);
247 
248  ph->RegisterProcess(msc, particle);
249  ph->RegisterProcess(eIoni, particle);
250  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
251  ph->RegisterProcess(new G4eplusAnnihilation(), particle);
252 
253  } else if (particleName == "gamma") {
254 
255  // photoelectric effect - Livermore model only
256  G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
257  thePhotoElectricEffect->SetEmModel(new G4LivermorePhotoElectricModel());
258  ph->RegisterProcess(thePhotoElectricEffect, particle);
259 
260  // Compton scattering - Livermore model only
261  G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
262  theComptonScattering->SetEmModel(new G4LivermoreComptonModel());
263  ph->RegisterProcess(theComptonScattering, particle);
264 
265  // gamma conversion - Livermore model below 80 GeV
266  G4GammaConversion* theGammaConversion = new G4GammaConversion();
267  theGammaConversion->SetEmModel(new G4LivermoreGammaConversionModel());
268  ph->RegisterProcess(theGammaConversion, particle);
269 
270  // default Rayleigh scattering is Livermore
271  G4RayleighScattering* theRayleigh = new G4RayleighScattering();
272  ph->RegisterProcess(theRayleigh, particle);
273  }
274 
275  // Warning : end of particles and processes are needed by EM Physics builders
276 
277  }
278 
279  // Deexcitation
280  //
281 
284 
285 }
286 
287 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......