85 if(
nullptr == mod) {
return; }
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
96 models.push_back(mod);
97 flucModels.push_back(fm);
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);
113 size_t n = models.size();
115 G4cout <<
"### G4EmConfigurator::AddModels n= " << n <<
G4endl;
118 for(
size_t i=0; i<n; ++i) {
119 if(
nullptr != models[i]) {
123 SetModelForRegion(models[i],flucModels[i],reg,
124 particles[i],processes[i],
125 lowEnergy[i],highEnergy[i]);
135void G4EmConfigurator::SetModelForRegion(
G4VEmModel* mod,
142 if(
nullptr == mod) {
return; }
144 G4cout <<
" G4EmConfigurator::SetModelForRegion: " << mod->
GetName()
146 G4cout <<
" For " << particleName
147 <<
" and " << processName
148 <<
" in the region <" << reg->
GetName()
149 <<
" Emin(MeV)= " << emin/MeV
150 <<
" Emax(MeV)= " << emax/MeV;
151 if(
nullptr != fm) {
G4cout <<
" FLmodel " << fm->
GetName(); }
157 myParticleIterator->
reset();
158 while( (*myParticleIterator)() ) {
159 const G4ParticleDefinition* part = myParticleIterator->value();
162 (particleName ==
"all") ||
163 (particleName ==
"charged" && part->
GetPDGCharge() != 0.0)) {
171 G4cout <<
"Check process <" << processName <<
"> for " << particleName <<
" in list of "
172 << np <<
" processes" <<
G4endl;
174 G4VProcess* proc =
nullptr;
175 for(
G4int i=0; i<np; ++i) {
176 if(processName == (*plist)[i]->GetProcessName()) {
181 if(
nullptr == proc) {
182 if(processName ==
"msc") {
183 for (
G4int i = 0; i < np; ++i) {
184 auto* trans =
dynamic_cast<G4TransportationWithMsc*
>((*plist)[i]);
185 if (
nullptr != trans) {
186 G4cout <<
"G4TransportationWithMsc is found out!" <<
G4endl;
192 if (
nullptr == proc) {
194 G4cout <<
"### G4EmConfigurator WARNING: fails to find a process <" << processName
195 <<
"> for " << particleName <<
G4endl;
201 if(!UpdateModelEnergyRange(mod, emin, emax)) {
return; }
204 auto msc =
dynamic_cast<G4VMscModel*
>(mod);
205 if (
nullptr != msc) {
206 if (
auto* trans =
dynamic_cast<G4TransportationWithMsc*
>(proc)) {
207 trans->AddMscModel(msc, index, reg);
209 G4cout <<
"### Added msc model order= " << index <<
" for " << particleName <<
" and "
214 auto p =
dynamic_cast<G4VMultipleScattering*
>(proc);
216 p->AddEmModel(index, msc, reg);
218 G4cout <<
"### Added msc model order= " << index <<
" for " << particleName <<
" and "
224 G4cout <<
"### Unable to add msc model for " << particleName <<
" and " << processName
228 else if (2 <= ii && 4 >= ii) {
229 auto p =
dynamic_cast<G4VEnergyLossProcess*
>(proc);
231 p->AddEmModel(index, mod, fm, reg);
233 G4cout <<
"### Added eloss model order= " << index <<
" for " << particleName <<
" and "
239 auto p =
dynamic_cast<G4VEmProcess*
>(proc);
241 p->AddEmModel(index, mod, reg);
243 G4cout <<
"### Added em model order= " << index <<
" for " << particleName <<
" and "
248 G4cout <<
"### Unable to add em model for " << particleName <<
" and " << processName
263 size_t n = particles.size();
265 G4cout <<
" G4EmConfigurator::PrepareModels for EnergyLoss n= "
272 for(
size_t i=0; i<n; ++i) {
274 if(processName == processes[i]) {
275 if((particleName == particles[i]) ||
276 (particles[i] ==
"all") ||
277 (particles[i] ==
"charged" && aParticle->
GetPDGCharge() != 0.0)) {
285 if(UpdateModelEnergyRange(mod, lowEnergy[i], highEnergy[i])) {
288 G4cout <<
"### Added eloss model order= " << index <<
" for " << particleName
289 <<
" and " << processName <<
" for " << reg->GetName() <<
G4endl;
292 }
else if(
nullptr != fm) {
308 size_t n = particles.size();
310 G4cout <<
" G4EmConfigurator::PrepareModels for EM process n= "
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)) {
328 if(UpdateModelEnergyRange(mod, lowEnergy[i], highEnergy[i])) {
331 G4cout <<
"### Added em model order= " << index <<
" for "
332 << particleName <<
" and " << processName <<
G4endl;
350 size_t n = particles.size();
352 G4cout <<
" G4EmConfigurator::PrepareModels for MSC process n= "
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))
365 if (
nullptr != reg) {
369 if(UpdateModelEnergyRange(mod, lowEnergy[i], highEnergy[i])) {
409 G4cout <<
"### G4EmConfigurator WARNING: empty energy interval"
411 <<
"> Emin(MeV)= " << e1/CLHEP::MeV
412 <<
"> Emax(MeV)= " << e2/CLHEP::MeV
420 <<
" Emin(MeV)= " << e1/MeV <<
" Emax(MeV)= " << e2/MeV
G4GLOB_DLL std::ostream G4cout
void SetExtraEmModel(const G4String &particleName, const G4String &processName, G4VEmModel *, const G4String ®ionName="", G4double emin=0.0, G4double emax=DBL_MAX, G4VEmFluctuationModel *fm=nullptr)
void PrepareModels(const G4ParticleDefinition *aParticle, G4VEnergyLossProcess *p)
G4EmConfigurator(G4int verboseLevel=1)
static const G4Region * FindRegion(const G4String ®ionName, const G4int verbose=0)
G4ProcessManager * GetProcessManager() const
G4double GetPDGCharge() const
const G4String & GetParticleName() const
void reset(G4bool ifSkipIon=true)
G4PTblDicIterator * GetIterator() const
static G4ParticleTable * GetParticleTable()
G4int GetProcessListLength() const
G4ProcessVector * GetProcessList() const
const G4String & GetName() const
void AddMscModel(G4VMscModel *mscModel, G4int order=0, const G4Region *region=nullptr)
const G4String & GetName() const
void SetHighEnergyLimit(G4double)
G4double LowEnergyLimit() const
G4double HighEnergyLimit() const
void SetLowEnergyLimit(G4double)
void SetActivationHighEnergyLimit(G4double)
const G4String & GetName() const
void AddEmModel(G4int, G4VEmModel *, const G4Region *region=nullptr)
void AddEmModel(G4int, G4VEmModel *, G4VEmFluctuationModel *fluc=nullptr, const G4Region *region=nullptr)
void SetFluctModel(G4VEmFluctuationModel *)
void AddEmModel(G4int order, G4VMscModel *, const G4Region *region=nullptr)
G4int GetProcessSubType() const
const G4String & GetProcessName() const