Geant4  10.02.p02
G4EmDNAPhysics.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.cc 87702 2014-12-17 09:55:28Z gcosmo $
27 // add elastic scattering processes of proton, hydrogen, helium, alpha+, alpha++
28 
29 #include "G4EmDNAPhysics.hh"
30 
31 #include "G4SystemOfUnits.hh"
32 
34 
35 // *** Processes and models for Geant4-DNA
36 
37 #include "G4DNAElastic.hh"
40 #include "G4DNAIonElasticModel.hh"
41 
42 #include "G4DNAExcitation.hh"
43 #include "G4DNAAttachment.hh"
44 #include "G4DNAVibExcitation.hh"
45 #include "G4DNAIonisation.hh"
46 #include "G4DNAChargeDecrease.hh"
47 #include "G4DNAChargeIncrease.hh"
48 
49 // particles
50 
51 #include "G4Electron.hh"
52 #include "G4Proton.hh"
53 #include "G4GenericIon.hh"
54 
55 // Warning : the following is needed in order to use EM Physics builders
56 // e+
57 #include "G4Positron.hh"
58 #include "G4eMultipleScattering.hh"
59 #include "G4eIonisation.hh"
60 #include "G4eBremsstrahlung.hh"
61 #include "G4eplusAnnihilation.hh"
62 // gamma
63 #include "G4Gamma.hh"
64 #include "G4PhotoElectricEffect.hh"
66 #include "G4ComptonScattering.hh"
68 #include "G4GammaConversion.hh"
70 #include "G4RayleighScattering.hh"
72 // end of warning
73 
74 #include "G4LossTableManager.hh"
75 #include "G4UAtomicDeexcitation.hh"
76 #include "G4PhysicsListHelper.hh"
77 #include "G4BuilderType.hh"
78 
79 // factory
81 //
83 
84 
85 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
86 
88  : G4VPhysicsConstructor("G4EmDNAPhysics"), verbose(ver)
89 {
91 }
92 
93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
94 
96  : G4VPhysicsConstructor("G4EmDNAPhysics"), verbose(ver)
97 {
99 }
100 
101 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
102 
104 {}
105 
106 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
107 
109 {
110 // bosons
111  G4Gamma::Gamma();
112 
113 // leptons
116 
117 // baryons
119 
121 
122  G4DNAGenericIonsManager * genericIonsManager;
123  genericIonsManager=G4DNAGenericIonsManager::Instance();
124  genericIonsManager->GetIon("alpha++");
125  genericIonsManager->GetIon("alpha+");
126  genericIonsManager->GetIon("helium");
127  genericIonsManager->GetIon("hydrogen");
128  //genericIonsManager->GetIon("carbon");
129  //genericIonsManager->GetIon("nitrogen");
130  //genericIonsManager->GetIon("oxygen");
131  //genericIonsManager->GetIon("iron");
132 
133 }
134 
135 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
136 
138 {
139  if(verbose > 1) {
140  G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
141  }
143 
144  aParticleIterator->reset();
145  while( (*aParticleIterator)() )
146  {
147  G4ParticleDefinition* particle = aParticleIterator->value();
148  G4String particleName = particle->GetParticleName();
149 
150  if (particleName == "e-") {
151 
152  // *** Elastic scattering (two alternative models available) ***
153 
154  G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
155  theDNAElasticProcess->SetEmModel(new G4DNAChampionElasticModel());
156 
157  // or alternative model
158  //theDNAElasticProcess->SetEmModel(new G4DNAScreenedRutherfordElasticModel());
159 
160  ph->RegisterProcess(theDNAElasticProcess, particle);
161 
162  // *** Excitation ***
163  ph->RegisterProcess(new G4DNAExcitation("e-_G4DNAExcitation"), particle);
164 
165  // *** Ionisation ***
166  ph->RegisterProcess(new G4DNAIonisation("e-_G4DNAIonisation"), particle);
167 
168  // *** Vibrational excitation ***
169  ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
170 
171  // *** Attachment ***
172  ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
173 
174  } else if ( particleName == "proton" ) {
175  //ph->RegisterProcess(new G4DNAElastic("proton_G4DNAElastic"), particle);
176  ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
177  ph->RegisterProcess(new G4DNAIonisation("proton_G4DNAIonisation"), particle);
178  ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
179 
180  } else if ( particleName == "hydrogen" ) {
181  //ph->RegisterProcess(new G4DNAElastic("hydrogen_G4DNAElastic"), particle);
182  ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
183  ph->RegisterProcess(new G4DNAIonisation("hydrogen_G4DNAIonisation"), particle);
184  ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
185 
186  } else if ( particleName == "alpha" ) {
187  //ph->RegisterProcess(new G4DNAElastic("alpha_G4DNAElastic"), particle);
188  ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
189  ph->RegisterProcess(new G4DNAIonisation("alpha_G4DNAIonisation"), particle);
190  ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
191 
192  } else if ( particleName == "alpha+" ) {
193  //ph->RegisterProcess(new G4DNAElastic("alpha+_G4DNAElastic"), particle);
194  ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
195  ph->RegisterProcess(new G4DNAIonisation("alpha+_G4DNAIonisation"), particle);
196  ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
197  ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
198 
199  } else if ( particleName == "helium" ) {
200  //ph->RegisterProcess(new G4DNAElastic("helium_G4DNAElastic"), particle);
201  ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
202  ph->RegisterProcess(new G4DNAIonisation("helium_G4DNAIonisation"), particle);
203  ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
204 
205  // Extension to HZE proposed by Z. Francis
206 
207  //SEB
208  } else if ( particleName == "GenericIon" ) {
209  ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
210 
211  /*
212  } else if ( particleName == "carbon" ) {
213  ph->RegisterProcess(new G4DNAIonisation("carbon_G4DNAIonisation"), particle);
214 
215  } else if ( particleName == "nitrogen" ) {
216  ph->RegisterProcess(new G4DNAIonisation("nitrogen_G4DNAIonisation"), particle);
217 
218  } else if ( particleName == "oxygen" ) {
219  ph->RegisterProcess(new G4DNAIonisation("oxygen_G4DNAIonisation"), particle);
220 
221  } else if ( particleName == "iron" ) {
222  ph->RegisterProcess(new G4DNAIonisation("iron_G4DNAIonisation"), particle);
223  */
224 
225  }
226 
227  // Warning : the following particles and processes are needed by EM Physics builders
228  // They are taken from the default Livermore Physics list
229  // These particles are currently not handled by Geant4-DNA
230 
231  // e+
232 
233  else if (particleName == "e+") {
234 
235  // Identical to G4EmStandardPhysics_option3
236 
239  G4eIonisation* eIoni = new G4eIonisation();
240  eIoni->SetStepFunction(0.2, 100*um);
241 
242  ph->RegisterProcess(msc, particle);
243  ph->RegisterProcess(eIoni, particle);
244  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
245  ph->RegisterProcess(new G4eplusAnnihilation(), particle);
246 
247  } else if (particleName == "gamma") {
248 
249  G4double LivermoreHighEnergyLimit = GeV;
250 
251  G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
252  G4LivermorePhotoElectricModel* theLivermorePhotoElectricModel =
254  theLivermorePhotoElectricModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
255  thePhotoElectricEffect->AddEmModel(0, theLivermorePhotoElectricModel);
256  ph->RegisterProcess(thePhotoElectricEffect, particle);
257 
258  G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
259  G4LivermoreComptonModel* theLivermoreComptonModel =
261  theLivermoreComptonModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
262  theComptonScattering->AddEmModel(0, theLivermoreComptonModel);
263  ph->RegisterProcess(theComptonScattering, particle);
264 
265  G4GammaConversion* theGammaConversion = new G4GammaConversion();
266  G4LivermoreGammaConversionModel* theLivermoreGammaConversionModel =
268  theLivermoreGammaConversionModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
269  theGammaConversion->AddEmModel(0, theLivermoreGammaConversionModel);
270  ph->RegisterProcess(theGammaConversion, particle);
271 
272  G4RayleighScattering* theRayleigh = new G4RayleighScattering();
273  G4LivermoreRayleighModel* theRayleighModel = new G4LivermoreRayleighModel();
274  theRayleighModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
275  theRayleigh->AddEmModel(0, theRayleighModel);
276  ph->RegisterProcess(theRayleigh, particle);
277  }
278 
279  // Warning : end of particles and processes are needed by EM Physics builders
280 
281  }
282 
283  // Deexcitation
284  //
287  de->SetFluo(true);
288 }
289 
290 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
virtual void ConstructParticle()
static G4GenericIon * GenericIonDefinition()
Definition: G4GenericIon.cc:88
static G4LossTableManager * Instance()
virtual ~G4EmDNAPhysics()
void SetStepFunction(G4double v1, G4double v2)
G4EmDNAPhysics(G4int ver=1)
int G4int
Definition: G4Types.hh:78
const G4String & GetParticleName() const
void SetHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:725
void SetEmModel(G4VEmModel *, G4int index=1)
G4GLOB_DLL std::ostream G4cout
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmDNAPhysics)
#define aParticleIterator
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
static G4Proton * Proton()
Definition: G4Proton.cc:93
static const double GeV
Definition: G4SIunits.hh:214
const G4String & GetPhysicsName() const
static G4DNAGenericIonsManager * Instance(void)
static G4Gamma * Gamma()
Definition: G4Gamma.cc:86
static G4Positron * Positron()
Definition: G4Positron.cc:94
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=0)
static G4PhysicsListHelper * GetPhysicsListHelper()
static const double um
Definition: G4SIunits.hh:112
virtual void ConstructProcess()
static G4Electron * Electron()
Definition: G4Electron.cc:94
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
void SetAtomDeexcitation(G4VAtomDeexcitation *)
void SetStepLimitType(G4MscStepLimitType val)
G4ParticleDefinition * GetIon(const G4String &name)