Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4EmStandardPhysics_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//
27//---------------------------------------------------------------------------
28//
29// ClassName: G4EmStandardPhysics_option1
30//
31// Author: V.Ivanchenko 09.11.2005
32//
33// Modified:
34//
35//----------------------------------------------------------------------------
36//
37
39#include "G4SystemOfUnits.hh"
41#include "G4EmParameters.hh"
42#include "G4EmBuilder.hh"
43
45#include "G4GammaConversion.hh"
48
53#include "G4WentzelVIModel.hh"
54#include "G4UrbanMscModel.hh"
55
56#include "G4eIonisation.hh"
57#include "G4eBremsstrahlung.hh"
60
61#include "G4hIonisation.hh"
62#include "G4ionIonisation.hh"
63
64#include "G4ParticleTable.hh"
65#include "G4Gamma.hh"
66#include "G4Electron.hh"
67#include "G4Positron.hh"
68#include "G4GenericIon.hh"
69
71#include "G4BuilderType.hh"
72#include "G4EmModelActivator.hh"
74#include "G4LossTableManager.hh"
75
76// factory
78//
80
81//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
82
84 const G4String&)
85 : G4VPhysicsConstructor("G4EmStandard_opt1"), verbose(ver)
86{
88 param->SetDefaults();
89 param->SetVerbose(verbose);
90 param->SetApplyCuts(true);
91 param->SetGeneralProcessActive(true);
92 param->SetStepFunction(0.8, 1*CLHEP::mm);
93 param->SetMscRangeFactor(0.2);
96}
97
98//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
99
101{}
102
103//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
104
106{
107 // minimal set of particles for EM physics
109}
110
111//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
112
114{
115 if(verbose > 1) {
116 G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
117 }
119
121
122 // processes used by several particles
123 G4hMultipleScattering* hmsc = new G4hMultipleScattering("ionmsc");
124 G4NuclearStopping* pnuc(nullptr);
125
126 // high energy limit for e+- scattering models and bremsstrahlung
127 G4double highEnergyLimit = G4EmParameters::Instance()->MscEnergyLimit();
128
129 // Add gamma EM Processes
131
134
135 if(G4EmParameters::Instance()->GeneralProcessActive()) {
137 sp->AddEmProcess(pee);
138 sp->AddEmProcess(new G4ComptonScattering());
139 sp->AddEmProcess(new G4GammaConversion());
141 ph->RegisterProcess(sp, particle);
142
143 } else {
144 ph->RegisterProcess(pee, particle);
145 ph->RegisterProcess(new G4ComptonScattering(), particle);
146 ph->RegisterProcess(new G4GammaConversion(), particle);
147 }
148
149 // e-
150 particle = G4Electron::Electron();
151
152 G4eIonisation* eioni = new G4eIonisation();
153
155 G4UrbanMscModel* msc1 = new G4UrbanMscModel();
157 msc1->SetHighEnergyLimit(highEnergyLimit);
158 msc2->SetLowEnergyLimit(highEnergyLimit);
159 msc->SetEmModel(msc1);
160 msc->SetEmModel(msc2);
161
164 ss->SetEmModel(ssm);
165 ss->SetMinKinEnergy(highEnergyLimit);
166 ssm->SetLowEnergyLimit(highEnergyLimit);
167 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
168
169 ph->RegisterProcess(msc, particle);
170 ph->RegisterProcess(eioni, particle);
171 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
172 ph->RegisterProcess(ss, particle);
173
174 // e+
175 particle = G4Positron::Positron();
176 eioni = new G4eIonisation();
177
178 msc = new G4eMultipleScattering;
179 msc1 = new G4UrbanMscModel();
180 msc2 = new G4WentzelVIModel();
181 msc1->SetHighEnergyLimit(highEnergyLimit);
182 msc2->SetLowEnergyLimit(highEnergyLimit);
183 msc->SetEmModel(msc1);
184 msc->SetEmModel(msc2);
185
186 ssm = new G4eCoulombScatteringModel();
187 ss = new G4CoulombScattering();
188 ss->SetEmModel(ssm);
189 ss->SetMinKinEnergy(highEnergyLimit);
190 ssm->SetLowEnergyLimit(highEnergyLimit);
191 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
192
193 ph->RegisterProcess(msc, particle);
194 ph->RegisterProcess(eioni, particle);
195 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
196 ph->RegisterProcess(new G4eplusAnnihilation(), particle);
197 ph->RegisterProcess(ss, particle);
198
199 // generic ion
200 particle = G4GenericIon::GenericIon();
201 G4ionIonisation* ionIoni = new G4ionIonisation();
202 ph->RegisterProcess(hmsc, particle);
203 ph->RegisterProcess(ionIoni, particle);
204
205 // muons, hadrons ions
207
208 // extra configuration
210}
211
212//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@ bElectromagnetic
@ fMinimal
#define G4_DECLARE_PHYSCONSTR_FACTORY(physics_constructor)
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
static G4Electron * Electron()
Definition: G4Electron.cc:93
static void ConstructCharged(G4hMultipleScattering *hmsc, G4NuclearStopping *nucStopping, G4bool isWVI=true)
Definition: G4EmBuilder.cc:170
static void ConstructMinimalEmSet()
Definition: G4EmBuilder.cc:234
static void PrepareEMPhysics()
Definition: G4EmBuilder.cc:259
static G4EmParameters * Instance()
void SetGeneralProcessActive(G4bool val)
G4double MscEnergyLimit() const
void SetStepFunction(G4double v1, G4double v2)
void SetVerbose(G4int val)
void SetApplyCuts(G4bool val)
void SetMscStepLimitType(G4MscStepLimitType val)
void SetMscRangeFactor(G4double val)
G4EmStandardPhysics_option1(G4int ver=1, const G4String &name="")
static G4Gamma * Gamma()
Definition: G4Gamma.cc:85
static G4GenericIon * GenericIon()
Definition: G4GenericIon.cc:92
static G4LossTableManager * Instance()
void SetGammaGeneralProcess(G4VEmProcess *)
G4bool RegisterProcess(G4VProcess *process, G4ParticleDefinition *particle)
static G4PhysicsListHelper * GetPhysicsListHelper()
static G4Positron * Positron()
Definition: G4Positron.cc:93
void SetHighEnergyLimit(G4double)
Definition: G4VEmModel.hh:757
void SetActivationLowEnergyLimit(G4double)
Definition: G4VEmModel.hh:778
void SetLowEnergyLimit(G4double)
Definition: G4VEmModel.hh:764
void SetMinKinEnergy(G4double e)
void SetEmModel(G4VEmModel *, G4int index=0)
void SetEmModel(G4VMscModel *, size_t index=0)
const G4String & GetPhysicsName() const