Geant4  10.02.p01
G4EmDNAPhysics_option3.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 // added elastic scattering processes of proton, hydrogen, helium, alpha+, alpha
27 
29 
30 #include "G4SystemOfUnits.hh"
31 
33 
34 // *** Processes and models for Geant4-DNA
35 
36 #include "G4DNAElastic.hh"
39 #include "G4DNAIonElasticModel.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 // particles
49 
50 #include "G4Electron.hh"
51 #include "G4Proton.hh"
52 #include "G4GenericIon.hh"
53 
54 // Warning : the following is needed in order to use EM Physics builders
55 // e+
56 #include "G4Positron.hh"
57 #include "G4eMultipleScattering.hh"
58 #include "G4eIonisation.hh"
59 #include "G4eBremsstrahlung.hh"
60 #include "G4eplusAnnihilation.hh"
61 // gamma
62 #include "G4Gamma.hh"
63 #include "G4PhotoElectricEffect.hh"
65 #include "G4ComptonScattering.hh"
67 #include "G4GammaConversion.hh"
69 #include "G4RayleighScattering.hh"
71 
72 #include "G4EmParameters.hh"
73 // end of warning
74 
75 #include "G4LossTableManager.hh"
76 #include "G4UAtomicDeexcitation.hh"
77 #include "G4PhysicsListHelper.hh"
78 #include "G4BuilderType.hh"
79 
80 // factory
82 //
84 
85 
86 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
87 
89  : G4VPhysicsConstructor("G4EmDNAPhysics_option3"), verbose(ver)
90 {
93 }
94 
95 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
96 
98  : G4VPhysicsConstructor("G4EmDNAPhysics_option3"), verbose(ver)
99 {
102 }
103 
104 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
105 
107 {}
108 
109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
110 
112 {
113 // bosons
114  G4Gamma::Gamma();
115 
116 // leptons
119 
120 // baryons
122 
124 
125  G4DNAGenericIonsManager * genericIonsManager;
126  genericIonsManager=G4DNAGenericIonsManager::Instance();
127  genericIonsManager->GetIon("alpha++");
128  genericIonsManager->GetIon("alpha+");
129  genericIonsManager->GetIon("helium");
130  genericIonsManager->GetIon("hydrogen");
131 
132 }
133 
134 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
135 
137 {
138  if(verbose > 1) {
139  G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
140  }
142 
143  aParticleIterator->reset();
144  while( (*aParticleIterator)() )
145  {
146  G4ParticleDefinition* particle = aParticleIterator->value();
147  G4String particleName = particle->GetParticleName();
148 
149  if (particleName == "e-") {
150 
151  // *** Elastic scattering (two alternative models available) ***
152 
153  G4DNAElastic* theDNAElasticProcess = new G4DNAElastic("e-_G4DNAElastic");
154  theDNAElasticProcess->SetEmModel(new G4DNAChampionElasticModel());
155 
156  // or alternative model
157  //theDNAElasticProcess->SetEmModel(new G4DNAScreenedRutherfordElasticModel());
158 
159  ph->RegisterProcess(theDNAElasticProcess, particle);
160 
161  // *** Excitation ***
162  ph->RegisterProcess(new G4DNAExcitation("e-_G4DNAExcitation"), particle);
163 
164  // *** Ionisation ***
165  ph->RegisterProcess(new G4DNAIonisation("e-_G4DNAIonisation"), particle);
166 
167  // *** Vibrational excitation ***
168  ph->RegisterProcess(new G4DNAVibExcitation("e-_G4DNAVibExcitation"), particle);
169 
170  // *** Attachment ***
171  ph->RegisterProcess(new G4DNAAttachment("e-_G4DNAAttachment"), particle);
172 
173  } else if ( particleName == "proton" ) {
174  ph->RegisterProcess(new G4DNAElastic("proton_G4DNAElastic"), particle);
175  ph->RegisterProcess(new G4DNAExcitation("proton_G4DNAExcitation"), particle);
176  ph->RegisterProcess(new G4DNAIonisation("proton_G4DNAIonisation"), particle);
177  ph->RegisterProcess(new G4DNAChargeDecrease("proton_G4DNAChargeDecrease"), particle);
178 
179  } else if ( particleName == "hydrogen" ) {
180  ph->RegisterProcess(new G4DNAElastic("hydrogen_G4DNAElastic"), particle);
181  ph->RegisterProcess(new G4DNAExcitation("hydrogen_G4DNAExcitation"), particle);
182  ph->RegisterProcess(new G4DNAIonisation("hydrogen_G4DNAIonisation"), particle);
183  ph->RegisterProcess(new G4DNAChargeIncrease("hydrogen_G4DNAChargeIncrease"), particle);
184 
185  } else if ( particleName == "alpha" ) {
186  ph->RegisterProcess(new G4DNAElastic("alpha_G4DNAElastic"), particle);
187  ph->RegisterProcess(new G4DNAExcitation("alpha_G4DNAExcitation"), particle);
188  ph->RegisterProcess(new G4DNAIonisation("alpha_G4DNAIonisation"), particle);
189  ph->RegisterProcess(new G4DNAChargeDecrease("alpha_G4DNAChargeDecrease"), particle);
190 
191  } else if ( particleName == "alpha+" ) {
192  ph->RegisterProcess(new G4DNAElastic("alpha+_G4DNAElastic"), particle);
193  ph->RegisterProcess(new G4DNAExcitation("alpha+_G4DNAExcitation"), particle);
194  ph->RegisterProcess(new G4DNAIonisation("alpha+_G4DNAIonisation"), particle);
195  ph->RegisterProcess(new G4DNAChargeDecrease("alpha+_G4DNAChargeDecrease"), particle);
196  ph->RegisterProcess(new G4DNAChargeIncrease("alpha+_G4DNAChargeIncrease"), particle);
197 
198  } else if ( particleName == "helium" ) {
199  ph->RegisterProcess(new G4DNAElastic("helium_G4DNAElastic"), particle);
200  ph->RegisterProcess(new G4DNAExcitation("helium_G4DNAExcitation"), particle);
201  ph->RegisterProcess(new G4DNAIonisation("helium_G4DNAIonisation"), particle);
202  ph->RegisterProcess(new G4DNAChargeIncrease("helium_G4DNAChargeIncrease"), particle);
203 
204  } else if ( particleName == "GenericIon" ) {
205  ph->RegisterProcess(new G4DNAIonisation("GenericIon_G4DNAIonisation"), particle);
206 
207  }
208 
209  // Warning : the following particles and processes are needed by EM Physics builders
210  // They are taken from the default Livermore Physics list
211  // These particles are currently not handled by Geant4-DNA
212 
213  // e+
214 
215  else if (particleName == "e+") {
216 
217  // Identical to G4EmStandardPhysics_option3
218 
221  G4eIonisation* eIoni = new G4eIonisation();
222  eIoni->SetStepFunction(0.2, 100*um);
223 
224  ph->RegisterProcess(msc, particle);
225  ph->RegisterProcess(eIoni, particle);
226  ph->RegisterProcess(new G4eBremsstrahlung(), particle);
227  ph->RegisterProcess(new G4eplusAnnihilation(), particle);
228 
229  } else if (particleName == "gamma") {
230 
231  G4double LivermoreHighEnergyLimit = GeV;
232 
233  G4PhotoElectricEffect* thePhotoElectricEffect = new G4PhotoElectricEffect();
234  G4LivermorePhotoElectricModel* theLivermorePhotoElectricModel =
236  theLivermorePhotoElectricModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
237  thePhotoElectricEffect->AddEmModel(0, theLivermorePhotoElectricModel);
238  ph->RegisterProcess(thePhotoElectricEffect, particle);
239 
240  G4ComptonScattering* theComptonScattering = new G4ComptonScattering();
241  G4LivermoreComptonModel* theLivermoreComptonModel =
243  theLivermoreComptonModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
244  theComptonScattering->AddEmModel(0, theLivermoreComptonModel);
245  ph->RegisterProcess(theComptonScattering, particle);
246 
247  G4GammaConversion* theGammaConversion = new G4GammaConversion();
248  G4LivermoreGammaConversionModel* theLivermoreGammaConversionModel =
250  theLivermoreGammaConversionModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
251  theGammaConversion->AddEmModel(0, theLivermoreGammaConversionModel);
252  ph->RegisterProcess(theGammaConversion, particle);
253 
254  G4RayleighScattering* theRayleigh = new G4RayleighScattering();
255  G4LivermoreRayleighModel* theRayleighModel = new G4LivermoreRayleighModel();
256  theRayleighModel->SetHighEnergyLimit(LivermoreHighEnergyLimit);
257  theRayleigh->AddEmModel(0, theRayleighModel);
258  ph->RegisterProcess(theRayleigh, particle);
259  }
260 
261  // Warning : end of particles and processes are needed by EM Physics builders
262 
263  }
264 
265  // Deexcitation
266  //
269  de->SetFluo(true);
270 }
271 
272 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
static G4GenericIon * GenericIonDefinition()
Definition: G4GenericIon.cc:88
static G4LossTableManager * Instance()
G4_DECLARE_PHYSCONSTR_FACTORY(G4EmDNAPhysics_option3)
void SetStepFunction(G4double v1, G4double v2)
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
#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 G4EmParameters * Instance()
static const double um
Definition: G4SIunits.hh:112
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)