131 G4cout <<
"### " << GetPhysicsName() <<
" Construct Processes " << G4endl;
138 G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
141 G4MuBremsstrahlung* mub =
nullptr;
142 G4MuPairProduction* mup =
nullptr;
143 G4hBremsstrahlung* pib =
nullptr;
144 G4hPairProduction* pip =
nullptr;
145 G4hBremsstrahlung* kb =
nullptr;
146 G4hPairProduction*
kp =
nullptr;
147 G4hBremsstrahlung* pb =
nullptr;
148 G4hPairProduction*
pp =
nullptr;
151 G4MuMultipleScattering* mumsc =
nullptr;
152 G4MuMultipleScattering* pimsc =
nullptr;
153 G4MuMultipleScattering* kmsc =
nullptr;
154 G4MuMultipleScattering* pmsc =
nullptr;
155 G4hMultipleScattering* hmsc =
nullptr;
158 G4double highEnergyLimit = 100*
MeV;
160 aParticleIterator->reset();
161 while( (*aParticleIterator)() ){
162 G4ParticleDefinition* particle = aParticleIterator->value();
163 G4String particleName = particle->GetParticleName();
165 if (particleName ==
"gamma") {
167 G4PhotoElectricEffect* photo =
new G4PhotoElectricEffect();
168 photo->SetEmModel(
new G4LivermorePhotoElectricModel(),1);
169 ph->RegisterProcess(photo, particle);
170 G4ComptonScattering* compt =
new G4ComptonScattering();
171 compt->SetEmModel(
new G4KleinNishinaModel(), 1);
172 ph->RegisterProcess(compt, particle);
173 ph->RegisterProcess(
new G4GammaConversion(), particle);
175 }
else if (particleName ==
"e-") {
177 G4eIonisation* eioni =
new G4eIonisation();
178 eioni->SetStepFunction(0.8, 1.0*mm);
180 G4eMultipleScattering*
msc =
new G4eMultipleScattering;
181 msc->SetStepLimitType(fMinimal);
183 G4WentzelVIModel* msc2 =
new G4WentzelVIModel();
184 msc1->SetHighEnergyLimit(highEnergyLimit);
185 msc2->SetLowEnergyLimit(highEnergyLimit);
186 msc->AddEmModel(0, msc1);
187 msc->AddEmModel(0, msc2);
189 G4eCoulombScatteringModel* ssm =
new G4eCoulombScatteringModel();
190 G4CoulombScattering*
ss =
new G4CoulombScattering();
191 ss->SetEmModel(ssm, 1);
192 ss->SetMinKinEnergy(highEnergyLimit);
193 ssm->SetLowEnergyLimit(highEnergyLimit);
194 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
196 ph->RegisterProcess(msc, particle);
197 ph->RegisterProcess(eioni, particle);
198 ph->RegisterProcess(
new G4eBremsstrahlung(), particle);
199 ph->RegisterProcess(ss, particle);
201 }
else if (particleName ==
"e+") {
203 G4eIonisation* eioni =
new G4eIonisation();
204 eioni->SetStepFunction(0.8, 1.0*mm);
206 G4eMultipleScattering* msc =
new G4eMultipleScattering;
207 msc->SetStepLimitType(fMinimal);
209 G4WentzelVIModel* msc2 =
new G4WentzelVIModel();
210 msc1->SetHighEnergyLimit(highEnergyLimit);
211 msc2->SetLowEnergyLimit(highEnergyLimit);
212 msc->AddEmModel(0, msc1);
213 msc->AddEmModel(0, msc2);
215 G4eCoulombScatteringModel* ssm =
new G4eCoulombScatteringModel();
216 G4CoulombScattering* ss =
new G4CoulombScattering();
217 ss->SetEmModel(ssm, 1);
218 ss->SetMinKinEnergy(highEnergyLimit);
219 ssm->SetLowEnergyLimit(highEnergyLimit);
220 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
222 ph->RegisterProcess(msc, particle);
223 ph->RegisterProcess(eioni, particle);
224 ph->RegisterProcess(
new G4eBremsstrahlung(), particle);
225 ph->RegisterProcess(
new G4eplusAnnihilation(), particle);
226 ph->RegisterProcess(ss, particle);
228 }
else if (particleName ==
"mu+" ||
229 particleName ==
"mu-" ) {
232 mub =
new G4MuBremsstrahlung();
233 mup =
new G4MuPairProduction();
234 mumsc =
new G4MuMultipleScattering();
235 mumsc->AddEmModel(0,
new G4WentzelVIModel());
237 ph->RegisterProcess(mumsc, particle);
238 ph->RegisterProcess(
new G4MuIonisation(), particle);
239 ph->RegisterProcess(mub, particle);
240 ph->RegisterProcess(mup, particle);
241 ph->RegisterProcess(
new G4CoulombScattering(), particle);
243 }
else if (particleName ==
"alpha" ||
244 particleName ==
"He3" ) {
246 ph->RegisterProcess(
new G4hMultipleScattering(), particle);
247 ph->RegisterProcess(
new G4ionIonisation(), particle);
249 }
else if (particleName ==
"GenericIon") {
251 if(
nullptr == hmsc) {
252 hmsc =
new G4hMultipleScattering(
"ionmsc");
254 ph->RegisterProcess(hmsc, particle);
255 ph->RegisterProcess(
new G4ionIonisation(), particle);
257 }
else if (particleName ==
"pi+" ||
258 particleName ==
"pi-" ) {
261 pib =
new G4hBremsstrahlung();
262 pip =
new G4hPairProduction();
263 pimsc =
new G4MuMultipleScattering();
264 pimsc->AddEmModel(0,
new G4WentzelVIModel());
266 ph->RegisterProcess(pimsc, particle);
267 ph->RegisterProcess(
new G4hIonisation(), particle);
268 ph->RegisterProcess(pib, particle);
269 ph->RegisterProcess(pip, particle);
270 ph->RegisterProcess(
new G4CoulombScattering(), particle);
272 }
else if (particleName ==
"kaon+" ||
273 particleName ==
"kaon-" ) {
276 kb =
new G4hBremsstrahlung();
277 kp =
new G4hPairProduction();
278 kmsc =
new G4MuMultipleScattering();
279 kmsc->AddEmModel(0,
new G4WentzelVIModel());
281 ph->RegisterProcess(kmsc, particle);
282 ph->RegisterProcess(
new G4hIonisation(), particle);
283 ph->RegisterProcess(kb, particle);
284 ph->RegisterProcess(kp, particle);
285 ph->RegisterProcess(
new G4CoulombScattering(), particle);
287 }
else if (particleName ==
"proton" ||
288 particleName ==
"anti_proton") {
291 pb =
new G4hBremsstrahlung();
292 pp =
new G4hPairProduction();
293 pmsc =
new G4MuMultipleScattering();
294 pmsc->AddEmModel(0,
new G4WentzelVIModel());
296 ph->RegisterProcess(pmsc, particle);
297 ph->RegisterProcess(
new G4hIonisation(), particle);
298 ph->RegisterProcess(pb, particle);
299 ph->RegisterProcess(pp, particle);
300 ph->RegisterProcess(
new G4CoulombScattering(), particle);
302 }
else if (particleName ==
"B+" ||
303 particleName ==
"B-" ||
304 particleName ==
"D+" ||
305 particleName ==
"D-" ||
306 particleName ==
"Ds+" ||
307 particleName ==
"Ds-" ||
308 particleName ==
"anti_He3" ||
309 particleName ==
"anti_alpha" ||
310 particleName ==
"anti_deuteron" ||
311 particleName ==
"anti_lambda_c+" ||
312 particleName ==
"anti_omega-" ||
313 particleName ==
"anti_sigma_c+" ||
314 particleName ==
"anti_sigma_c++" ||
315 particleName ==
"anti_sigma+" ||
316 particleName ==
"anti_sigma-" ||
317 particleName ==
"anti_triton" ||
318 particleName ==
"anti_xi_c+" ||
319 particleName ==
"anti_xi-" ||
320 particleName ==
"deuteron" ||
321 particleName ==
"lambda_c+" ||
322 particleName ==
"omega-" ||
323 particleName ==
"sigma_c+" ||
324 particleName ==
"sigma_c++" ||
325 particleName ==
"sigma+" ||
326 particleName ==
"sigma-" ||
327 particleName ==
"tau+" ||
328 particleName ==
"tau-" ||
329 particleName ==
"triton" ||
330 particleName ==
"xi_c+" ||
331 particleName ==
"xi-" ) {
333 if(
nullptr == hmsc) {
334 hmsc =
new G4hMultipleScattering(
"ionmsc");
336 ph->RegisterProcess(hmsc, particle);
337 ph->RegisterProcess(
new G4hIonisation(), particle);
340 G4EmProcessOptions opt;
343 opt.SetApplyCuts(
true);