Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4EmStandardPhysics_option2 Class Reference

#include <G4EmStandardPhysics_option2.hh>

+ Inheritance diagram for G4EmStandardPhysics_option2:

Public Member Functions

 G4EmStandardPhysics_option2 (G4int ver=1, const G4String &name="")
 
 ~G4EmStandardPhysics_option2 () override
 
void ConstructParticle () override
 
void ConstructProcess () override
 
- Public Member Functions inherited from G4VPhysicsConstructor
 G4VPhysicsConstructor (const G4String &="")
 
 G4VPhysicsConstructor (const G4String &name, G4int physics_type)
 
virtual ~G4VPhysicsConstructor ()
 
virtual void ConstructParticle ()=0
 
virtual void ConstructProcess ()=0
 
void SetPhysicsName (const G4String &="")
 
const G4StringGetPhysicsName () const
 
void SetPhysicsType (G4int)
 
G4int GetPhysicsType () const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
G4int GetInstanceID () const
 
virtual void TerminateWorker ()
 

Additional Inherited Members

- Static Public Member Functions inherited from G4VPhysicsConstructor
static const G4VPCManagerGetSubInstanceManager ()
 
- Protected Types inherited from G4VPhysicsConstructor
using PhysicsBuilder_V = G4VPCData::PhysicsBuilders_V
 
- Protected Member Functions inherited from G4VPhysicsConstructor
G4bool RegisterProcess (G4VProcess *process, G4ParticleDefinition *particle)
 
G4ParticleTable::G4PTblDicIteratorGetParticleIterator () const
 
PhysicsBuilder_V GetBuilders () const
 
void AddBuilder (G4PhysicsBuilderInterface *bld)
 
- Protected Attributes inherited from G4VPhysicsConstructor
G4int verboseLevel
 
G4String namePhysics
 
G4int typePhysics
 
G4ParticleTabletheParticleTable
 
G4int g4vpcInstanceID
 
- Static Protected Attributes inherited from G4VPhysicsConstructor
static G4RUN_DLL G4VPCManager subInstanceManager
 

Detailed Description

Definition at line 54 of file G4EmStandardPhysics_option2.hh.

Constructor & Destructor Documentation

◆ G4EmStandardPhysics_option2()

G4EmStandardPhysics_option2::G4EmStandardPhysics_option2 ( G4int  ver = 1,
const G4String name = "" 
)
explicit

Definition at line 97 of file G4EmStandardPhysics_option2.cc.

99 : G4VPhysicsConstructor("G4EmStandard_opt2"), verbose(ver)
100{
102 param->SetDefaults();
103 param->SetVerbose(verbose);
104 param->SetApplyCuts(false);
105 param->SetStepFunction(0.8, 1*CLHEP::mm);
106 param->SetMscRangeFactor(0.2);
107 param->SetLateralDisplacement(false);
110}
@ bElectromagnetic
@ fMinimal
static G4EmParameters * Instance()
void SetStepFunction(G4double v1, G4double v2)
void SetLateralDisplacement(G4bool val)
void SetVerbose(G4int val)
void SetApplyCuts(G4bool val)
void SetMscStepLimitType(G4MscStepLimitType val)
void SetMscRangeFactor(G4double val)

◆ ~G4EmStandardPhysics_option2()

G4EmStandardPhysics_option2::~G4EmStandardPhysics_option2 ( )
override

Definition at line 114 of file G4EmStandardPhysics_option2.cc.

115{}

Member Function Documentation

◆ ConstructParticle()

void G4EmStandardPhysics_option2::ConstructParticle ( )
overridevirtual

Implements G4VPhysicsConstructor.

Definition at line 119 of file G4EmStandardPhysics_option2.cc.

120{
121 // minimal set of particles for EM physics
123}
static void ConstructMinimalEmSet()
Definition: G4EmBuilder.cc:234

◆ ConstructProcess()

void G4EmStandardPhysics_option2::ConstructProcess ( )
overridevirtual

Implements G4VPhysicsConstructor.

Definition at line 127 of file G4EmStandardPhysics_option2.cc.

128{
129 if(verbose > 1) {
130 G4cout << "### " << GetPhysicsName() << " Construct Processes " << G4endl;
131 }
133
135
136 // processes used by several particles
137 G4hMultipleScattering* hmsc = new G4hMultipleScattering("ionmsc");
138 G4NuclearStopping* pnuc(nullptr);
139
140 // high energy limit for e+- scattering models and bremsstrahlung
141 G4double highEnergyLimit = G4EmParameters::Instance()->MscEnergyLimit();
142
143 // Add gamma EM Processes
145
148
149 if(G4EmParameters::Instance()->GeneralProcessActive()) {
151 sp->AddEmProcess(pee);
152 sp->AddEmProcess(new G4ComptonScattering());
153 sp->AddEmProcess(new G4GammaConversion());
155 ph->RegisterProcess(sp, particle);
156
157 } else {
158 ph->RegisterProcess(pee, particle);
159 ph->RegisterProcess(new G4ComptonScattering(), particle);
160 ph->RegisterProcess(new G4GammaConversion(), particle);
161 }
162
163 // e-
164 particle = G4Electron::Electron();
165
166 G4eIonisation* eioni = new G4eIonisation();
167
169 G4UrbanMscModel* msc1 = new G4UrbanMscModel();
171 msc1->SetHighEnergyLimit(highEnergyLimit);
172 msc2->SetLowEnergyLimit(highEnergyLimit);
173 msc->SetEmModel(msc1);
174 msc->SetEmModel(msc2);
175
178 ss->SetEmModel(ssm);
179 ss->SetMinKinEnergy(highEnergyLimit);
180 ssm->SetLowEnergyLimit(highEnergyLimit);
181 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
182
183 ph->RegisterProcess(msc, particle);
184 ph->RegisterProcess(eioni, particle);
185 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
186 ph->RegisterProcess(ss, particle);
187
188 // e+
189 particle = G4Positron::Positron();
190 eioni = new G4eIonisation();
191
192 msc = new G4eMultipleScattering;
193 msc1 = new G4UrbanMscModel();
194 msc2 = new G4WentzelVIModel();
195 msc1->SetHighEnergyLimit(highEnergyLimit);
196 msc2->SetLowEnergyLimit(highEnergyLimit);
197 msc->SetEmModel(msc1);
198 msc->SetEmModel(msc2);
199
200 ssm = new G4eCoulombScatteringModel();
201 ss = new G4CoulombScattering();
202 ss->SetEmModel(ssm);
203 ss->SetMinKinEnergy(highEnergyLimit);
204 ssm->SetLowEnergyLimit(highEnergyLimit);
205 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
206
207 ph->RegisterProcess(msc, particle);
208 ph->RegisterProcess(eioni, particle);
209 ph->RegisterProcess(new G4eBremsstrahlung(), particle);
210 ph->RegisterProcess(new G4eplusAnnihilation(), particle);
211 ph->RegisterProcess(ss, particle);
212
213 // generic ion
214 particle = G4GenericIon::GenericIon();
215 G4ionIonisation* ionIoni = new G4ionIonisation();
216 ph->RegisterProcess(hmsc, particle);
217 ph->RegisterProcess(ionIoni, particle);
218
219 // muons, hadrons ions
221
222 // extra configuration
224}
double G4double
Definition: G4Types.hh:83
#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 PrepareEMPhysics()
Definition: G4EmBuilder.cc:259
G4double MscEnergyLimit() const
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

The documentation for this class was generated from the following files: