Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 // $Id: G4EmDNAPhysics_option1.cc 73244 2013-08-22 13:12:17Z gcosmo $
27 
29 
30 #include "G4SystemOfUnits.hh"
31 
33 
34 // *** Processes and models for Geant4-DNA
35 
37 #include "G4DNAElastic.hh"
40 
41 #include "G4DNAExcitation.hh"
42 #include "G4DNAAttachment.hh"
43 #include "G4DNAVibExcitation.hh"
44 #include "G4DNAIonisation.hh"
45 #include "G4DNAChargeDecrease.hh"
46 #include "G4DNAChargeIncrease.hh"
47 
48 #include "G4hMultipleScattering.hh"
49 #include "G4LowEWentzelVIModel.hh"
50 
51 // particles
52 
53 #include "G4Electron.hh"
54 #include "G4Proton.hh"
55 #include "G4GenericIon.hh"
56 
57 // Warning : the following is needed in order to use EM Physics builders
58 // e+
59 #include "G4Positron.hh"
60 #include "G4eMultipleScattering.hh"
61 #include "G4eIonisation.hh"
62 #include "G4eBremsstrahlung.hh"
63 #include "G4eplusAnnihilation.hh"
64 // gamma
65 #include "G4Gamma.hh"
66 #include "G4PhotoElectricEffect.hh"
68 #include "G4ComptonScattering.hh"
70 #include "G4GammaConversion.hh"
72 #include "G4RayleighScattering.hh"
74 
75 #include "G4EmParameters.hh"
76 // end of warning
77 
78 #include "G4LossTableManager.hh"
79 #include "G4UAtomicDeexcitation.hh"
80 #include "G4PhysicsListHelper.hh"
81 #include "G4BuilderType.hh"
82 
83 // factory
85 //
87 
88 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
89 
91  : G4VPhysicsConstructor("G4EmDNAPhysics_option1"), verbose(ver)
92 {
94  param->SetDefaults();
95  param->SetFluo(true);
96  param->SetAuger(true);
97  param->SetAugerCascade(true);
98  param->SetDeexcitationIgnoreCut(true);
99 
101 }
102 
103 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
104 
106 {}
107 
108 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
109 
111 {
112 // bosons
113  G4Gamma::Gamma();
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  //genericIonsManager->GetIon("carbon");
131  //genericIonsManager->GetIon("nitrogen");
132  //genericIonsManager->GetIon("oxygen");
133  //genericIonsManager->GetIon("iron");
134 
135 }
136 
137 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
138 
140 {
141  if(verbose > 1) {
142  G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
143  }
145 
146  auto myParticleIterator=GetParticleIterator();
147  myParticleIterator->reset();
148  while( (*myParticleIterator)() )
149  {
150  G4ParticleDefinition* particle = myParticleIterator->value();
151  G4String particleName = particle->GetParticleName();
152 
153  if (particleName == "e-") {
154 
155  ph->RegisterProcess(new G4DNAElectronSolvation("e-_G4DNAElectronSolvation"),
156  particle);
157 
158  // *** Elastic scattering (two alternative models available) ***
159 
160  //G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
161  //theDNAElasticProcess->SetEmModel(new G4DNAChampionElasticModel());
162 
163  // or alternative model
164  //theDNAElasticProcess->SetEmModel(new G4DNAScreenedRutherfordElasticModel());
165 
166  //ph->RegisterProcess(theDNAElasticProcess, particle);
167 
169  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
170  ph->RegisterProcess(msc, particle);
171 
172 
173  // *** Excitation ***
174  ph->RegisterProcess(new G4DNAExcitation("e-_G4DNAExcitation"), particle);
175 
176  // *** Ionisation ***
177  ph->RegisterProcess(new G4DNAIonisation("e-_G4DNAIonisation"), particle);
178 
179  // *** Vibrational excitation ***
180  ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
181 
182  // *** Attachment ***
183  ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
184 
185  } else if ( particleName == "proton" ) {
186 
188  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
189  ph->RegisterProcess(msc, particle);
190 
191  ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
192  ph->RegisterProcess(new G4DNAIonisation("proton_G4DNAIonisation"), particle);
193  ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
194 
195  } else if ( particleName == "hydrogen" ) {
196  ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
197  ph->RegisterProcess(new G4DNAIonisation("hydrogen_G4DNAIonisation"), particle);
198  ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
199 
200  } else if ( particleName == "alpha" ) {
201 
203  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
204  ph->RegisterProcess(msc, particle);
205 
206  ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
207  ph->RegisterProcess(new G4DNAIonisation("alpha_G4DNAIonisation"), particle);
208  ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
209 
210  } else if ( particleName == "alpha+" ) {
211 
213  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
214  ph->RegisterProcess(msc, particle);
215 
216  ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
217  ph->RegisterProcess(new G4DNAIonisation("alpha+_G4DNAIonisation"), particle);
218  ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
219  ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
220 
221  } else if ( particleName == "helium" ) {
222  ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
223  ph->RegisterProcess(new G4DNAIonisation("helium_G4DNAIonisation"), particle);
224  ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
225 
226  // Extension to HZE proposed by Z. Francis
227 
228  // S. Incerti
229 
230  } else if ( particleName == "GenericIon" ) {
231 
233  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
234  ph->RegisterProcess(msc, particle);
235 
236  ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
237 
238  /*
239  } else if ( particleName == "carbon" ) {
240 
241  G4hMultipleScattering* msc = new G4hMultipleScattering();
242  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
243  ph->RegisterProcess(msc, particle);
244 
245  ph->RegisterProcess(new G4DNAIonisation("carbon_G4DNAIonisation"), particle);
246 
247  } else if ( particleName == "nitrogen" ) {
248 
249  G4hMultipleScattering* msc = new G4hMultipleScattering();
250  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
251  ph->RegisterProcess(msc, particle);
252 
253  ph->RegisterProcess(new G4DNAIonisation("nitrogen_G4DNAIonisation"), particle);
254 
255  } else if ( particleName == "oxygen" ) {
256 
257  G4hMultipleScattering* msc = new G4hMultipleScattering();
258  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
259  ph->RegisterProcess(msc, particle);
260 
261  ph->RegisterProcess(new G4DNAIonisation("oxygen_G4DNAIonisation"), particle);
262 
263  } else if ( particleName == "iron" ) {
264 
265  G4hMultipleScattering* msc = new G4hMultipleScattering();
266  msc->SetEmModel(new G4LowEWentzelVIModel(), 1);
267  ph->RegisterProcess(msc, particle);
268 
269  ph->RegisterProcess(new G4DNAIonisation("iron_G4DNAIonisation"), particle);
270  */
271  }
272 
273  // Warning : the following particles and processes are needed by EM Physics builders
274  // They are taken from the default Livermore Physics list
275  // These particles are currently not handled by Geant4-DNA
276 
277  // e+
278 
279  else if (particleName == "e+") {
280 
281  // Identical to G4EmStandardPhysics_option3
282 
285  G4eIonisation* eIoni = new G4eIonisation();
286  eIoni->SetStepFunction(0.2, 100*um);
287 
288  ph->RegisterProcess(msc, particle);
289  ph->RegisterProcess(eIoni, particle);
290  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
291  ph->RegisterProcess(new G4eplusAnnihilation(), particle);
292 
293  } else if (particleName == "gamma") {
294 
295  G4double LivermoreHighEnergyLimit = GeV;
296 
297  G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
298  G4LivermorePhotoElectricModel* theLivermorePhotoElectricModel =
300  theLivermorePhotoElectricModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
301  thePhotoElectricEffect->AddEmModel(0, theLivermorePhotoElectricModel);
302  ph->RegisterProcess(thePhotoElectricEffect, particle);
303 
304  G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
305  G4LivermoreComptonModel* theLivermoreComptonModel =
307  theLivermoreComptonModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
308  theComptonScattering->AddEmModel(0, theLivermoreComptonModel);
309  ph->RegisterProcess(theComptonScattering, particle);
310 
311  G4GammaConversion* theGammaConversion = new G4GammaConversion();
312  G4LivermoreGammaConversionModel* theLivermoreGammaConversionModel =
314  theLivermoreGammaConversionModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
315  theGammaConversion->AddEmModel(0, theLivermoreGammaConversionModel);
316  ph->RegisterProcess(theGammaConversion, particle);
317 
318  G4RayleighScattering* theRayleigh = new G4RayleighScattering();
319  G4LivermoreRayleighModel* theRayleighModel = new G4LivermoreRayleighModel();
320  theRayleighModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
321  theRayleigh->AddEmModel(0, theRayleighModel);
322  ph->RegisterProcess(theRayleigh, particle);
323  }
324 
325  // Warning : end of particles and processes are needed by EM Physics builders
326 
327  }
328 
329  // Deexcitation
330  //
333 }
334 
335 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
static G4GenericIon * GenericIonDefinition()
Definition: G4GenericIon.cc:88
static G4LossTableManager * Instance()
void SetDeexcitationIgnoreCut(G4bool val)
void SetAuger(G4bool val)
void SetEmModel(G4VMscModel *, G4int index=1)
int G4int
Definition: G4Types.hh:78
void SetStepFunction(G4double v1, G4double v2, G4bool lock=true)
const G4String & GetParticleName() const
void SetHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:724
G4ParticleTable::G4PTblDicIterator * GetParticleIterator() const
G4GLOB_DLL std::ostream G4cout
static constexpr double um
Definition: G4SIunits.hh:113
G4EmDNAPhysics_option1(G4int ver=1, const G4String &name="")
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
void SetAugerCascade(G4bool val)
static G4Proton * Proton()
Definition: G4Proton.cc:93
const G4String & GetPhysicsName() const
static G4DNAGenericIonsManager * Instance(void)
static G4Gamma * Gamma()
Definition: G4Gamma.cc:86
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
static G4Positron * Positron()
Definition: G4Positron.cc:94
static G4PhysicsListHelper * GetPhysicsListHelper()
static G4EmParameters * Instance()
static constexpr double GeV
Definition: G4SIunits.hh:217
static G4Electron * Electron()
Definition: G4Electron.cc:94
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
void SetAtomDeexcitation(G4VAtomDeexcitation *)
void SetFluo(G4bool val)
void SetStepLimitType(G4MscStepLimitType val)
G4ParticleDefinition * GetIon(const G4String &name)
#define G4_DECLARE_PHYSCONSTR_FACTORY(physics_constructor)