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

#include <G4EmConfigurator.hh>

Public Member Functions

 G4EmConfigurator (G4int verboseLevel=1)
 
 ~G4EmConfigurator ()
 
void SetExtraEmModel (const G4String &particleName, const G4String &processName, G4VEmModel *, const G4String &regionName="", G4double emin=0.0, G4double emax=DBL_MAX, G4VEmFluctuationModel *fm=nullptr)
 
void AddModels ()
 
void PrepareModels (const G4ParticleDefinition *aParticle, G4VEnergyLossProcess *p)
 
void PrepareModels (const G4ParticleDefinition *aParticle, G4VEmProcess *p)
 
void PrepareModels (const G4ParticleDefinition *aParticle, G4VMultipleScattering *p, G4TransportationWithMsc *trans=nullptr)
 
void Clear ()
 
void SetVerbose (G4int value)
 
G4EmConfiguratoroperator= (const G4EmConfigurator &right)=delete
 
 G4EmConfigurator (const G4EmConfigurator &)=delete
 

Detailed Description

Definition at line 63 of file G4EmConfigurator.hh.

Constructor & Destructor Documentation

◆ G4EmConfigurator() [1/2]

G4EmConfigurator::G4EmConfigurator ( G4int verboseLevel = 1)
explicit

Definition at line 66 of file G4EmConfigurator.cc.

66 :verbose(val)
67{
68 index = -10;
69}

Referenced by G4EmConfigurator(), and operator=().

◆ ~G4EmConfigurator()

G4EmConfigurator::~G4EmConfigurator ( )
default

◆ G4EmConfigurator() [2/2]

G4EmConfigurator::G4EmConfigurator ( const G4EmConfigurator & )
delete

Member Function Documentation

◆ AddModels()

void G4EmConfigurator::AddModels ( )

Definition at line 111 of file G4EmConfigurator.cc.

112{
113 size_t n = models.size();
114 if(1 < verbose) {
115 G4cout << "### G4EmConfigurator::AddModels n= " << n << G4endl;
116 }
117 if(n > 0) {
118 for(size_t i=0; i<n; ++i) {
119 if(nullptr != models[i]) {
120 const G4Region* reg = G4EmUtility::FindRegion(regions[i]);
121 if(nullptr != reg) {
122 --index;
123 SetModelForRegion(models[i],flucModels[i],reg,
124 particles[i],processes[i],
125 lowEnergy[i],highEnergy[i]);
126 }
127 }
128 }
129 }
130 Clear();
131}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
static const G4Region * FindRegion(const G4String &regionName, const G4int verbose=0)

◆ Clear()

void G4EmConfigurator::Clear ( )

Definition at line 389 of file G4EmConfigurator.cc.

390{
391 particles.clear();
392 processes.clear();
393 models.clear();
394 flucModels.clear();
395 regions.clear();
396 lowEnergy.clear();
397 highEnergy.clear();
398}

Referenced by AddModels().

◆ operator=()

G4EmConfigurator & G4EmConfigurator::operator= ( const G4EmConfigurator & right)
delete

◆ PrepareModels() [1/3]

void G4EmConfigurator::PrepareModels ( const G4ParticleDefinition * aParticle,
G4VEmProcess * p )

Definition at line 305 of file G4EmConfigurator.cc.

307{
308 size_t n = particles.size();
309 if(1 < verbose) {
310 G4cout << " G4EmConfigurator::PrepareModels for EM process n= "
311 << n << G4endl;
312 }
313 if(n > 0) {
314 G4String particleName = aParticle->GetParticleName();
315 G4String processName = p->GetProcessName();
316 //G4cout << particleName << " " << particleName << G4endl;
317 for(size_t i=0; i<n; ++i) {
318 if(processName == processes[i]) {
319 if((particleName == particles[i]) ||
320 (particles[i] == "all") ||
321 (particles[i] == "charged" && aParticle->GetPDGCharge() != 0.0)) {
322 const G4Region* reg = G4EmUtility::FindRegion(regions[i]);
323 //G4cout << "Region " << reg << G4endl;
324 if(nullptr != reg) {
325 --index;
326 G4VEmModel* mod = models[i];
327 if(nullptr != mod) {
328 if(UpdateModelEnergyRange(mod, lowEnergy[i], highEnergy[i])) {
329 p->AddEmModel(index,mod,reg);
330 if(1 < verbose) {
331 G4cout << "### Added em model order= " << index << " for "
332 << particleName << " and " << processName << G4endl;
333 }
334 }
335 }
336 }
337 }
338 }
339 }
340 }
341}
const G4String & GetParticleName() const
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
const G4String & GetProcessName() const

◆ PrepareModels() [2/3]

void G4EmConfigurator::PrepareModels ( const G4ParticleDefinition * aParticle,
G4VEnergyLossProcess * p )

Definition at line 260 of file G4EmConfigurator.cc.

262{
263 size_t n = particles.size();
264 if(1 < verbose) {
265 G4cout << " G4EmConfigurator::PrepareModels for EnergyLoss n= "
266 << n << G4endl;
267 }
268 if(n > 0) {
269 G4String particleName = aParticle->GetParticleName();
270 G4String processName = p->GetProcessName();
271 //G4cout << particleName << " " << processName << G4endl;
272 for(size_t i=0; i<n; ++i) {
273 //G4cout << particles[i] << " " << processes[i] << G4endl;
274 if(processName == processes[i]) {
275 if((particleName == particles[i]) ||
276 (particles[i] == "all") ||
277 (particles[i] == "charged" && aParticle->GetPDGCharge() != 0.0)) {
278 const G4Region* reg = G4EmUtility::FindRegion(regions[i]);
279 //G4cout << "Region " << reg << G4endl;
280 if(nullptr != reg) {
281 --index;
282 G4VEmModel* mod = models[i];
283 G4VEmFluctuationModel* fm = flucModels[i];
284 if(nullptr != mod) {
285 if(UpdateModelEnergyRange(mod, lowEnergy[i], highEnergy[i])) {
286 p->AddEmModel(index,mod,fm,reg);
287 if(1 < verbose) {
288 G4cout << "### Added eloss model order= " << index << " for " << particleName
289 << " and " << processName << " for " << reg->GetName() << G4endl;
290 }
291 }
292 } else if(nullptr != fm) {
293 p->SetFluctModel(fm);
294 }
295 }
296 }
297 }
298 }
299 }
300}
const G4String & GetName() const
void AddEmModel(G4int, G4VEmModel *, G4VEmFluctuationModel *fluc=nullptr, const G4Region *region=nullptr)
void SetFluctModel(G4VEmFluctuationModel *)

◆ PrepareModels() [3/3]

void G4EmConfigurator::PrepareModels ( const G4ParticleDefinition * aParticle,
G4VMultipleScattering * p,
G4TransportationWithMsc * trans = nullptr )

Definition at line 346 of file G4EmConfigurator.cc.

349{
350 size_t n = particles.size();
351 if(1 < verbose) {
352 G4cout << " G4EmConfigurator::PrepareModels for MSC process n= "
353 << n << G4endl;
354 }
355
356 if(n > 0) {
357 G4String particleName = aParticle->GetParticleName();
358 G4String processName = (nullptr == p) ? G4String("msc") : p->GetProcessName();
359 for(size_t i=0; i<n; ++i) {
360 if(processName == processes[i]) {
361 if ((particleName == particles[i]) || (particles[i] == "all")
362 || (particles[i] == "charged" && aParticle->GetPDGCharge() != 0.0))
363 {
364 const G4Region* reg = G4EmUtility::FindRegion(regions[i]);
365 if (nullptr != reg) {
366 --index;
367 auto mod = dynamic_cast<G4VMscModel*>(models[i]);
368 if(nullptr != mod) {
369 if(UpdateModelEnergyRange(mod, lowEnergy[i], highEnergy[i])) {
370 if(nullptr != p) {
371 p->AddEmModel(index, mod, reg);
372 }
373 else {
374 trans->AddMscModel(mod, index, reg);
375 }
376 //G4cout << "### Added msc model order= " << index << " for "
377 // << particleName << " and " << processName << G4endl;
378 }
379 }
380 }
381 }
382 }
383 }
384 }
385}
void AddMscModel(G4VMscModel *mscModel, G4int order=0, const G4Region *region=nullptr)
void AddEmModel(G4int order, G4VMscModel *, const G4Region *region=nullptr)

◆ SetExtraEmModel()

void G4EmConfigurator::SetExtraEmModel ( const G4String & particleName,
const G4String & processName,
G4VEmModel * mod,
const G4String & regionName = "",
G4double emin = 0.0,
G4double emax = DBL_MAX,
G4VEmFluctuationModel * fm = nullptr )

Definition at line 77 of file G4EmConfigurator.cc.

84{
85 if(nullptr == mod) { return; }
86 if(1 < verbose) {
87 G4cout << " G4EmConfigurator::SetExtraEmModel " << mod->GetName()
88 << " for " << particleName
89 << " and " << processName
90 << " in the region <" << regionName
91 << "> Emin(MeV)= " << emin/MeV
92 << " Emax(MeV)= " << emax/MeV
93 << G4endl;
94 }
95
96 models.push_back(mod);
97 flucModels.push_back(fm);
98 G4double emin0 = std::max(emin, mod->LowEnergyLimit());
99 G4double emax0 = std::min(emax, mod->HighEnergyLimit());
101
102 particles.push_back(particleName);
103 processes.push_back(processName);
104 regions.push_back(regionName);
105 lowEnergy.push_back(emin0);
106 highEnergy.push_back(emax0);
107}
double G4double
Definition G4Types.hh:83
G4double LowEnergyLimit() const
G4double HighEnergyLimit() const
void SetActivationHighEnergyLimit(G4double)
const G4String & GetName() const

◆ SetVerbose()

void G4EmConfigurator::SetVerbose ( G4int value)
inline

Definition at line 135 of file G4EmConfigurator.hh.

136{
137 verbose = value;
138}

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