130 G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
132 G4MuBremsstrahlung* mub =
nullptr;
133 G4MuPairProduction* mup =
nullptr;
134 G4hBremsstrahlung* pib =
nullptr;
135 G4hPairProduction* pip =
nullptr;
136 G4hBremsstrahlung* kb =
nullptr;
137 G4hPairProduction*
kp =
nullptr;
138 G4hBremsstrahlung* pb =
nullptr;
139 G4hPairProduction*
pp =
nullptr;
141 G4hMultipleScattering* hmsc =
nullptr;
144 aParticleIterator->reset();
145 while( (*aParticleIterator)() ){
146 G4ParticleDefinition* particle = aParticleIterator->value();
147 G4String particleName = particle->GetParticleName();
149 G4cout <<
"### " << GetPhysicsName() <<
" instantiates for "
150 << particleName << G4endl;
152 if (particleName ==
"gamma") {
154 ph->RegisterProcess(
new G4PhotoElectricEffect(), particle);
155 ph->RegisterProcess(
new G4ComptonScattering(), particle);
156 ph->RegisterProcess(
new G4GammaConversion(), particle);
158 }
else if (particleName ==
"e-") {
160 G4eIonisation* eioni =
new G4eIonisation();
161 eioni->SetStepFunction(0.8, 1.0*mm);
162 G4eMultipleScattering*
msc =
new G4eMultipleScattering();
163 msc->SetStepLimitType(fMinimal);
165 G4eBremsstrahlung* ebrem =
new G4eBremsstrahlung();
167 ph->RegisterProcess(msc, particle);
168 ph->RegisterProcess(eioni, particle);
169 ph->RegisterProcess(ebrem, particle);
171 }
else if (particleName ==
"e+") {
173 G4eIonisation* eioni =
new G4eIonisation();
174 eioni->SetStepFunction(0.8, 1.0*mm);
175 G4eMultipleScattering* msc =
new G4eMultipleScattering();
176 msc->SetStepLimitType(fMinimal);
178 G4eBremsstrahlung* ebrem =
new G4eBremsstrahlung();
180 ph->RegisterProcess(msc, particle);
181 ph->RegisterProcess(eioni, particle);
182 ph->RegisterProcess(ebrem, particle);
183 ph->RegisterProcess(
new G4eplusAnnihilation(), particle);
185 }
else if (particleName ==
"mu+" ||
186 particleName ==
"mu-" ) {
189 mub =
new G4MuBremsstrahlung();
190 mup =
new G4MuPairProduction();
192 G4MuMultipleScattering* msc =
new G4MuMultipleScattering();
193 ph->RegisterProcess(msc, particle);
194 ph->RegisterProcess(
new G4MuIonisation(), particle);
195 ph->RegisterProcess(mub, particle);
196 ph->RegisterProcess(mup, particle);
198 }
else if (particleName ==
"alpha" ||
199 particleName ==
"He3" ) {
201 ph->RegisterProcess(
new G4hMultipleScattering(), particle);
202 ph->RegisterProcess(
new G4ionIonisation(), particle);
204 }
else if (particleName ==
"GenericIon") {
206 if(
nullptr == hmsc) {
207 hmsc =
new G4hMultipleScattering(
"ionmsc");
209 ph->RegisterProcess(hmsc, particle);
210 ph->RegisterProcess(
new G4ionIonisation(), particle);
212 }
else if (particleName ==
"pi+" ||
213 particleName ==
"pi-" ) {
216 pib =
new G4hBremsstrahlung();
217 pip =
new G4hPairProduction();
219 ph->RegisterProcess(
new G4hMultipleScattering(), particle);
220 ph->RegisterProcess(
new G4hIonisation(), particle);
221 ph->RegisterProcess(pib, particle);
222 ph->RegisterProcess(pip, particle);
224 }
else if (particleName ==
"kaon+" ||
225 particleName ==
"kaon-" ) {
228 kb =
new G4hBremsstrahlung();
229 kp =
new G4hPairProduction();
231 ph->RegisterProcess(
new G4hMultipleScattering(), particle);
232 ph->RegisterProcess(
new G4hIonisation(), particle);
233 ph->RegisterProcess(kb, particle);
234 ph->RegisterProcess(kp, particle);
236 }
else if (particleName ==
"proton" ||
237 particleName ==
"anti_proton") {
240 pb =
new G4hBremsstrahlung();
241 pp =
new G4hPairProduction();
243 ph->RegisterProcess(
new G4hMultipleScattering(), particle);
244 ph->RegisterProcess(
new G4hIonisation(), particle);
245 ph->RegisterProcess(pb, particle);
246 ph->RegisterProcess(pp, particle);
248 }
else if (particleName ==
"B+" ||
249 particleName ==
"B-" ||
250 particleName ==
"D+" ||
251 particleName ==
"D-" ||
252 particleName ==
"Ds+" ||
253 particleName ==
"Ds-" ||
254 particleName ==
"anti_He3" ||
255 particleName ==
"anti_alpha" ||
256 particleName ==
"anti_deuteron" ||
257 particleName ==
"anti_lambda_c+" ||
258 particleName ==
"anti_omega-" ||
259 particleName ==
"anti_sigma_c+" ||
260 particleName ==
"anti_sigma_c++" ||
261 particleName ==
"anti_sigma+" ||
262 particleName ==
"anti_sigma-" ||
263 particleName ==
"anti_triton" ||
264 particleName ==
"anti_xi_c+" ||
265 particleName ==
"anti_xi-" ||
266 particleName ==
"deuteron" ||
267 particleName ==
"lambda_c+" ||
268 particleName ==
"omega-" ||
269 particleName ==
"sigma_c+" ||
270 particleName ==
"sigma_c++" ||
271 particleName ==
"sigma+" ||
272 particleName ==
"sigma-" ||
273 particleName ==
"tau+" ||
274 particleName ==
"tau-" ||
275 particleName ==
"triton" ||
276 particleName ==
"xi_c+" ||
277 particleName ==
"xi-" ) {
279 if(
nullptr == hmsc) {
280 hmsc =
new G4hMultipleScattering(
"ionmsc");
282 ph->RegisterProcess(hmsc, particle);
283 ph->RegisterProcess(
new G4hIonisation(), particle);
289 G4EmProcessOptions opt;
293 opt.SetApplyCuts(
true);