128 G4MuBremsstrahlung* mub =
nullptr;
129 G4MuPairProduction* mup =
nullptr;
130 G4hBremsstrahlung* pib =
nullptr;
131 G4hPairProduction* pip =
nullptr;
132 G4hBremsstrahlung* kb =
nullptr;
133 G4hPairProduction*
kp =
nullptr;
134 G4hBremsstrahlung* pb =
nullptr;
135 G4hPairProduction*
pp =
nullptr;
137 G4hMultipleScattering* hmsc =
nullptr;
143 aParticleIterator->reset();
144 while( (*aParticleIterator)() ){
145 G4ParticleDefinition* particle = aParticleIterator->value();
146 G4ProcessManager* pmanager = particle->GetProcessManager();
147 G4String particleName = particle->GetParticleName();
149 G4cout <<
"### " << GetPhysicsName() <<
" instantiates for "
150 << particleName <<
" at " << particle << G4endl;
152 if (particleName ==
"gamma") {
154 pmanager->AddDiscreteProcess(
new G4PhotoElectricEffect);
155 pmanager->AddDiscreteProcess(
new G4ComptonScattering);
156 pmanager->AddDiscreteProcess(
new G4GammaConversion());
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);
166 G4eBremsstrahlung* ebrem =
new G4eBremsstrahlung();
168 pmanager->AddProcess(msc, -1, 1, 1);
169 pmanager->AddProcess(eioni, -1, 2, 2);
170 pmanager->AddProcess(ebrem, -1,-3, 3);
172 }
else if (particleName ==
"e+") {
174 G4eIonisation* eioni =
new G4eIonisation();
175 eioni->SetStepFunction(0.8, 1.0*mm);
177 G4eMultipleScattering* msc =
new G4eMultipleScattering;
178 msc->SetStepLimitType(fMinimal);
181 G4eBremsstrahlung* ebrem =
new G4eBremsstrahlung();
183 pmanager->AddProcess(msc, -1, 1, 1);
184 pmanager->AddProcess(eioni, -1, 2, 2);
185 pmanager->AddProcess(ebrem, -1,-3, 3);
186 pmanager->AddProcess(
new G4eplusAnnihilation, 0,-1, 4);
188 }
else if (particleName ==
"mu+" ||
189 particleName ==
"mu-" ) {
192 mub =
new G4MuBremsstrahlung();
193 mup =
new G4MuPairProduction();
195 pmanager->AddProcess(
new G4hMultipleScattering, -1, 1, 1);
196 pmanager->AddProcess(
new G4MuIonisation, -1, 2, 2);
197 pmanager->AddProcess(mub, -1,-3, 3);
198 pmanager->AddProcess(mup, -1,-4, 4);
200 }
else if (particleName ==
"alpha" ||
201 particleName ==
"He3" ||
202 particleName ==
"GenericIon") {
204 if(
nullptr == hmsc) {
205 hmsc =
new G4hMultipleScattering(
"ionmsc");
207 pmanager->AddProcess(hmsc, -1, 1, 1);
208 pmanager->AddProcess(
new G4ionIonisation, -1, 2, 2);
210 }
else if (particleName ==
"pi+" ||
211 particleName ==
"pi-" ) {
214 pib =
new G4hBremsstrahlung();
215 pip =
new G4hPairProduction();
217 pmanager->AddProcess(
new G4hMultipleScattering, -1, 1, 1);
218 pmanager->AddProcess(
new G4hIonisation, -1, 2, 2);
219 pmanager->AddProcess(pib, -1,-3, 3);
220 pmanager->AddProcess(pip, -1,-4, 4);
222 }
else if (particleName ==
"kaon+" ||
223 particleName ==
"kaon-" ) {
226 kb =
new G4hBremsstrahlung();
227 kp =
new G4hPairProduction();
229 pmanager->AddProcess(
new G4hMultipleScattering, -1, 1, 1);
230 pmanager->AddProcess(
new G4hIonisation, -1, 2, 2);
231 pmanager->AddProcess(kb, -1,-3, 3);
232 pmanager->AddProcess(kp, -1,-4, 4);
234 }
else if (particleName ==
"proton" ||
235 particleName ==
"anti_proton" ) {
237 pb =
new G4hBremsstrahlung();
238 pp =
new G4hPairProduction();
240 pmanager->AddProcess(
new G4hMultipleScattering, -1, 1, 1);
241 pmanager->AddProcess(
new G4hIonisation, -1, 2, 2);
242 pmanager->AddProcess(pb, -1,-3, 3);
243 pmanager->AddProcess(pp, -1,-4, 4);
245 }
else if (particleName ==
"B+" ||
246 particleName ==
"B-" ||
247 particleName ==
"D+" ||
248 particleName ==
"D-" ||
249 particleName ==
"Ds+" ||
250 particleName ==
"Ds-" ||
251 particleName ==
"anti_lambda_c+" ||
252 particleName ==
"anti_omega-" ||
253 particleName ==
"anti_proton" ||
254 particleName ==
"anti_sigma_c+" ||
255 particleName ==
"anti_sigma_c++" ||
256 particleName ==
"anti_sigma+" ||
257 particleName ==
"anti_sigma-" ||
258 particleName ==
"anti_xi_c+" ||
259 particleName ==
"anti_xi-" ||
260 particleName ==
"deuteron" ||
261 particleName ==
"lambda_c+" ||
262 particleName ==
"omega-" ||
263 particleName ==
"sigma_c+" ||
264 particleName ==
"sigma_c++" ||
265 particleName ==
"sigma+" ||
266 particleName ==
"sigma-" ||
267 particleName ==
"tau+" ||
268 particleName ==
"tau-" ||
269 particleName ==
"triton" ||
270 particleName ==
"xi_c+" ||
271 particleName ==
"xi-" ) {
273 if(
nullptr == hmsc) {
274 hmsc =
new G4hMultipleScattering(
"ionmsc");
276 pmanager->AddProcess(hmsc, -1, 1, 1);
277 pmanager->AddProcess(
new G4hIonisation, -1, 2, 2);
283 G4EmProcessOptions opt;
288 opt.SetApplyCuts(
true);