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