130 const std::vector<G4String>& regnamesPAI = theParameters->RegionsPAI();
131 if(regnamesPAI.size() > 0)
135 const std::vector<G4String>& regnamesME = theParameters->RegionsMicroElec();
136 if(regnamesME.size() > 0)
140 const std::vector<G4String>& regnamesMSC = theParameters->RegionsPhysics();
141 if(regnamesMSC.size() > 0)
149void G4EmModelActivator::ActivateEmOptions()
151 const std::vector<G4String>& regnamesPhys = theParameters->
RegionsPhysics();
152 std::size_t nreg = regnamesPhys.size();
153 if(0 == nreg) {
return; }
154 G4int verbose = theParameters->Verbose() - 1;
156 G4cout <<
"### G4EmModelActivator::ActivateEmOptions for " << nreg <<
" regions"
159 const std::vector<G4String>& typesPhys = theParameters->TypesPhysics();
170 G4VEmModel* mod =
nullptr;
171 G4VEmProcess* proc =
nullptr;
174 G4double mscEnergyLimit = theParameters->MscEnergyLimit();
180 G4double highEnergy = theParameters->MaxKinEnergy();
182 for(std::size_t i=0; i<nreg; ++i) {
183 const G4String reg = regnamesPhys[i];
186 G4cout << i <<
". region <" << reg <<
">; physics type <"
187 << typesPhys[i] <<
"> region ptr: " << region <<
G4endl;
190 if(baseName == typesPhys[i]) {
continue; }
192 if(
"G4EmStandard" == typesPhys[i]) {
193 G4UrbanMscModel* msc =
new G4UrbanMscModel();
194 AddStandardScattering(elec, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
196 msc =
new G4UrbanMscModel();
197 AddStandardScattering(posi, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
199 }
else if(
"G4EmStandard_opt1" == typesPhys[i] ||
"G4EmStandard_opt2" == typesPhys[i]) {
200 G4UrbanMscModel* msc =
new G4UrbanMscModel();
201 AddStandardScattering(elec, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
203 msc =
new G4UrbanMscModel();
204 AddStandardScattering(posi, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
206 }
else if(
"G4EmStandard_opt3" == typesPhys[i]) {
208 G4DummyModel* dummy =
new G4DummyModel();
209 G4UrbanMscModel* msc =
new G4UrbanMscModel();
210 SetMscParameters(elec, msc, typesPhys[i]);
212 proc = FindOrAddProcess(elec,
"CoulombScat");
215 msc =
new G4UrbanMscModel();
216 SetMscParameters(posi, msc, typesPhys[i]);
218 proc = FindOrAddProcess(posi,
"CoulombScat");
221 msc =
new G4UrbanMscModel();
222 SetMscParameters(prot, msc, typesPhys[i]);
224 proc = FindOrAddProcess(prot,
"CoulombScat");
227 theParameters->SetNumberOfBinsPerDecade(20);
229 theParameters->SetDeexActiveRegion(reg,
true,
false,
false);
231 theParameters->DefineRegParamForDeex(adeexc);
232 proc = FindOrAddProcess(phot,
"Rayl");
233 proc->
AddEmModel(-1,
new G4LivermoreRayleighModel(), region);
234 proc = FindOrAddProcess(phot,
"compt");
235 proc->
AddEmModel(-1,
new G4KleinNishinaModel(), region);
237 }
else if(
"G4EmStandard_opt4" == typesPhys[i]) {
238 G4VMscModel* msc =
new G4GoudsmitSaundersonMscModel();
239 AddStandardScattering(elec, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
241 msc =
new G4GoudsmitSaundersonMscModel();
242 AddStandardScattering(posi, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
244 theParameters->SetNumberOfBinsPerDecade(20);
245 theParameters->SetUseMottCorrection(
true);
247 theParameters->SetDeexActiveRegion(reg,
true,
false,
false);
249 theParameters->DefineRegParamForDeex(adeexc);
251 proc = FindOrAddProcess(phot,
"Rayl");
252 proc->
AddEmModel(-1,
new G4LivermoreRayleighModel(), region);
253 proc = FindOrAddProcess(phot,
"compt");
254 proc->
AddEmModel(-1,
new G4KleinNishinaModel(), region);
255 mod =
new G4LowEPComptonModel();
258 proc = FindOrAddProcess(phot,
"conv");
259 proc->
AddEmModel(-1,
new G4BetheHeitler5DModel(), region);
261 }
else if(
"G4EmStandardGS" == typesPhys[i]) {
262 G4GoudsmitSaundersonMscModel* msc =
new G4GoudsmitSaundersonMscModel();
263 AddStandardScattering(elec, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
265 msc =
new G4GoudsmitSaundersonMscModel();
266 AddStandardScattering(posi, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
268 }
else if(
"G4EmStandardWVI" == typesPhys[i]) {
269 G4WentzelVIModel* msc =
new G4WentzelVIModel();
270 AddStandardScattering(elec, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
272 msc =
new G4WentzelVIModel();
273 AddStandardScattering(posi, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
275 theParameters->SetMscThetaLimit(0.15);
278 theParameters->SetDeexActiveRegion(regnamesPhys[i],
true,
false,
false);
280 theParameters->DefineRegParamForDeex(adeexc);
282 }
else if(
"G4EmStandardSS" == typesPhys[i]) {
283 G4EmParticleList emList;
285 G4ParticleDefinition* particle = table->
FindParticle(particleName);
286 if(
nullptr != particle && 0.0 != particle->
GetPDGCharge()) {
287 proc = FindOrAddProcess(particle,
"CoulombScat");
288 if(
nullptr != proc) {
289 proc->
AddEmModel(-1,
new G4DummyModel(), region);
292 proc =
new G4CoulombScattering(
"SingleCoulombScat",
false);
293 pm->AddDiscreteProcess(proc);
295 G4VEmModel* scmod =
nullptr;
298 scmod =
new G4IonCoulombScatteringModel();
300 scmod =
new G4eCoulombScatteringModel(
false);
307 if(particleName ==
"mu+" || particleName ==
"mu-") {
309 new G4DummyModel(), reg);
312 new G4DummyModel(), reg);
317 theParameters->SetDeexActiveRegion(regnamesPhys[i],
true,
true,
true);
319 theParameters->DefineRegParamForDeex(adeexc);
321 }
else if(
"G4EmLivermore" == typesPhys[i]) {
323 G4VMscModel* msc =
new G4GoudsmitSaundersonMscModel();
324 AddStandardScattering(elec, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
326 msc =
new G4GoudsmitSaundersonMscModel();
327 AddStandardScattering(posi, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
329 mod =
new G4LivermorePhotoElectricModel();
331 mod =
new G4LivermoreComptonModel();
333 mod =
new G4LivermoreGammaConversionModel();
336 FindOrAddProcess(phot,
"Rayl");
337 mod =
new G4LivermoreRayleighModel();
340 mod =
new G4LivermoreIonisationModel();
341 G4UniversalFluctuation* uf =
new G4UniversalFluctuation();
343 mod =
new G4LivermoreBremsstrahlungModel();
344 em_config->
SetExtraEmModel(
"e-",
"eBrem", mod, reg, 0.0, highEnergyLimit);
346 theParameters->SetNumberOfBinsPerDecade(20);
347 theParameters->SetUseMottCorrection(
true);
349 theParameters->SetDeexActiveRegion(regnamesPhys[i],
true,
false,
false);
351 theParameters->DefineRegParamForDeex(adeexc);
353 }
else if(
"G4EmPenelope" == typesPhys[i]) {
355 G4VMscModel* msc =
new G4GoudsmitSaundersonMscModel();
356 AddStandardScattering(elec, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
358 msc =
new G4GoudsmitSaundersonMscModel();
359 AddStandardScattering(posi, em_config, msc, reg, mscEnergyLimit, highEnergy, typesPhys[i]);
361 mod =
new G4PenelopePhotoElectricModel();
363 mod =
new G4PenelopeComptonModel();
365 mod =
new G4PenelopeGammaConversionModel();
368 FindOrAddProcess(phot,
"Rayl");
369 mod =
new G4PenelopeRayleighModel();
372 mod =
new G4PenelopeIonisationModel();
373 G4UniversalFluctuation* uf =
new G4UniversalFluctuation();
374 em_config->
SetExtraEmModel(
"e-",
"eIoni", mod, reg, 0.0, highEnergyLimit, uf);
375 mod =
new G4PenelopeBremsstrahlungModel();
376 em_config->
SetExtraEmModel(
"e-",
"eBrem", mod, reg, 0.0, highEnergyLimit);
378 mod =
new G4PenelopeIonisationModel();
379 uf =
new G4UniversalFluctuation();
380 em_config->
SetExtraEmModel(
"e+",
"eIoni", mod, reg, 0.0, highEnergyLimit, uf);
381 mod =
new G4PenelopeBremsstrahlungModel();
382 em_config->
SetExtraEmModel(
"e+",
"eBrem", mod, reg, 0.0, highEnergyLimit);
383 mod =
new G4PenelopeAnnihilationModel();
384 em_config->
SetExtraEmModel(
"e+",
"annihil", mod, reg, 0.0, highEnergyLimit);
386 theParameters->SetNumberOfBinsPerDecade(20);
387 theParameters->SetUseMottCorrection(
true);
389 theParameters->SetDeexActiveRegion(regnamesPhys[i],
true,
false,
false);
391 theParameters->DefineRegParamForDeex(adeexc);
395 G4cout <<
"### G4EmModelActivator::ActivateEmOptions WARNING: \n"
396 <<
" EM Physics configuration name <" << typesPhys[i]
397 <<
"> is not known - ignored" <<
G4endl;
405void G4EmModelActivator::ActivatePAI()
407 const std::vector<G4String> regnamesPAI = theParameters->RegionsPAI();
408 std::size_t nreg = regnamesPAI.size();
409 if(0 == nreg) {
return; }
410 G4int verbose = theParameters->Verbose() - 1;
412 G4cout <<
"### G4EmModelActivator::ActivatePAI for " << nreg <<
" regions"
415 const std::vector<G4String> particlesPAI = theParameters->ParticlesPAI();
416 const std::vector<G4String> typesPAI = theParameters->TypesPAI();
429 for(std::size_t i = 0; i < nreg; ++i) {
430 const G4ParticleDefinition* p =
nullptr;
431 if(particlesPAI[i] !=
"all") {
434 G4cout <<
"### WARNING: ActivatePAI::FindParticle fails to find "
435 << particlesPAI[i] <<
G4endl;
439 const G4Region* r = regionStore->
GetRegion(regnamesPAI[i],
false);
441 G4cout <<
"### WARNING: ActivatePAI::GetRegion fails to find "
442 << regnamesPAI[i] <<
G4endl;
446 G4String
name =
"hIoni";
447 if(p == elec || p == posi)
449 else if (p == mupl || p == mumi)
452 {
name =
"ionIoni"; }
456 if(!proc->IsIonisationProcess()) {
continue; }
460 if(name != namep) {
continue; }
462 if(namep !=
"hIoni" && namep !=
"muIoni" &&
463 namep !=
"eIoni" && namep !=
"ionIoni")
467 if(namep ==
"eIoni") emin = 110*CLHEP::eV;
468 else if(namep ==
"muIoni") emin = 5*CLHEP::keV;
470 G4VEmModel* em =
nullptr;
471 G4VEmFluctuationModel* fm =
nullptr;
472 if(typesPAI[i] ==
"PAIphoton" || typesPAI[i] ==
"pai_photon") {
473 G4PAIPhotModel* mod =
new G4PAIPhotModel(p,
"PAIPhotModel");
477 G4PAIModel* mod =
new G4PAIModel(p,
"PAIModel");
484 G4VEmModel* em0 =
nullptr;
485 G4VEmFluctuationModel* fm0 =
nullptr;
486 if(namep ==
"eIoni") {
487 fm0 =
new G4UniversalFluctuation();
489 proc->SetFluctModel(fm0);
490 em0 =
new G4MollerBhabhaModel();
491 }
else if(namep ==
"ionIoni") {
492 fm0 =
new G4IonFluctuations();
493 proc->
SetEmModel(
new G4LindhardSorensenIonModel());
494 proc->SetFluctModel(fm0);
495 em0 =
new G4LindhardSorensenIonModel();
497 fm0 =
new G4UniversalFluctuation();
500 proc->SetFluctModel(fm0);
501 em0 =
new G4BraggModel();
508 G4cout <<
"### G4EmModelActivator: add <" << typesPAI[i]
509 <<
"> model for " << particlesPAI[i]
510 <<
" in the " << regnamesPAI[i]
511 <<
" Emin(keV)= " << emin/CLHEP::keV <<
G4endl;
519void G4EmModelActivator::ActivateMicroElec()
521 const std::vector<G4String> regnamesME = theParameters->RegionsMicroElec();
522 std::size_t nreg = regnamesME.size();
527 G4int verbose = theParameters->Verbose() - 1;
530 G4cout <<
"### G4EmModelActivator::ActivateMicroElec for " << nreg
542 G4bool emsc = HasMsc(eman);
545 G4MicroElecElastic* eElasProc =
546 new G4MicroElecElastic(
"e-G4MicroElecElastic");
549 G4MicroElecInelastic* eInelProc =
550 new G4MicroElecInelastic(
"e-G4MicroElecInelastic");
553 G4MicroElecInelastic* pInelProc =
554 new G4MicroElecInelastic(
"p_G4MicroElecInelastic");
557 G4MicroElecInelastic* iInelProc =
558 new G4MicroElecInelastic(
"ion_G4MicroElecInelastic");
572 G4LowECapture* ecap =
new G4LowECapture(elowest);
575 for(std::size_t i = 0; i < nreg; ++i)
578 G4String reg = regnamesME[i];
579 G4cout <<
"### MicroElec models are activated for G4Region " << reg
581 <<
" Energy limits for e- elastic: " << elowest/eV <<
" eV - "
582 << elimel/MeV <<
" MeV"
584 <<
" Energy limits for e- inelastic: " << elowest/eV <<
" eV - "
585 << elimin/MeV <<
" MeV"
587 <<
" Energy limits for hadrons/ions: " << pmin/MeV <<
" MeV - "
588 << pmax/MeV <<
" MeV"
594 G4UrbanMscModel* msc =
new G4UrbanMscModel();
600 mod =
new G4DummyModel();
601 em_config->
SetExtraEmModel(
"e-",
"CoulombScat", mod, reg, 0.0, elimel);
604 mod =
new G4MicroElecElasticModel();
606 "e-G4MicroElecElastic",
612 mod =
new G4MollerBhabhaModel();
620 new G4UniversalFluctuation());
622 mod =
new G4MicroElecInelasticModel();
624 "e-G4MicroElecInelastic",
631 mod =
new G4BraggModel();
639 new G4UniversalFluctuation());
641 mod =
new G4BetheBlochModel();
649 new G4UniversalFluctuation());
651 mod =
new G4MicroElecInelasticModel();
653 "p_G4MicroElecInelastic",
660 mod =
new G4BraggIonModel();
668 new G4IonFluctuations());
670 mod =
new G4BetheBlochModel();
678 new G4IonFluctuations());
680 mod =
new G4MicroElecInelasticModel();
682 "ion_G4MicroElecInelastic",
697 for(
G4int i = 0; i < nproc; ++i)
720 SetMscParameters(part, mscmod, type);
724 G4WentzelVIModel* msc =
new G4WentzelVIModel();
725 SetMscParameters(part, msc, type);
729 FindOrAddProcess(part,
"CoulombScat");
730 G4eCoulombScatteringModel* mod =
new G4eCoulombScatteringModel();
742 if(phys ==
"G4EmStandard_opt1" || phys ==
"G4EmStandard_opt2") {
745 }
else if(phys ==
"G4EmStandard_opt3") {
747 }
else if(phys ==
"G4EmStandard_opt4" || phys ==
"G4EmLivermore" || phys ==
"G4EmPenelope") {
751 }
else if(phys ==
"G4EmStandardGS") {
755 if(phys !=
"G4EmStandard" && phys !=
"G4EmStandard_opt1" && phys !=
"G4EmStandard_opt2") {
768 G4VEmProcess* proc =
nullptr;
772 for(
auto i=0; i<
n; ++i) {
773 auto ptr = (*emproc)[i];
776 proc = (
static_cast<G4GammaGeneralProcess*
>(ptr))->GetEmProcess(name);
777 }
else if(ptr->GetProcessName() == name) {
778 proc =
dynamic_cast<G4VEmProcess*
>(ptr);
780 if(
nullptr != proc) {
return proc; }
783 G4RayleighScattering* rs =
new G4RayleighScattering();
G4GLOB_DLL std::ostream G4cout
static G4Electron * Electron()
void SetExtraEmModel(const G4String &particleName, const G4String &processName, G4VEmModel *, const G4String ®ionName="", G4double emin=0.0, G4double emax=DBL_MAX, G4VEmFluctuationModel *fm=nullptr)
G4EmModelActivator(const G4String &emphys="")
static G4EmParameters * Instance()
const std::vector< G4String > & RegionsPhysics() const
const std::vector< G4String > & EmChargedPartNames() const
static const G4Region * FindRegion(const G4String ®ionName, const G4int verbose=0)
static G4GenericIon * GenericIon()
static G4LossTableManager * Instance()
G4EmConfigurator * EmConfigurator()
const std::vector< G4VEnergyLossProcess * > & GetEnergyLossProcessVector()
G4VAtomDeexcitation * AtomDeexcitation()
static G4MuonMinus * MuonMinus()
static G4MuonPlus * MuonPlus()
G4ProcessManager * GetProcessManager() const
const G4String & GetParticleType() const
G4double GetPDGMass() const
G4int GetPDGEncoding() const
G4double GetPDGCharge() const
const G4String & GetParticleName() const
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
static G4ParticleTable * GetParticleTable()
static G4Positron * Positron()
G4int AddDiscreteProcess(G4VProcess *aProcess, G4int ord=ordDefault)
G4int GetProcessListLength() const
G4ProcessVector * GetProcessList() const
static G4Proton * Proton()
static G4RegionStore * GetInstance()
G4Region * GetRegion(const G4String &name, G4bool verbose=true) const
void SetPolarAngleLimit(G4double)
void SetHighEnergyLimit(G4double)
void SetActivationLowEnergyLimit(G4double)
void SetLowEnergyLimit(G4double)
void SetActivationHighEnergyLimit(G4double)
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
void SetEmModel(G4VEmModel *, G4int index=0)
void SetRangeFactor(G4double)
void SetLateralDisplasmentFlag(G4bool val)
void SetStepLimitType(G4MscStepLimitType)
const G4String & GetProcessName() const
const char * name(G4int ptype)