139 G4cout <<
"### " << GetPhysicsName() <<
" Construct Processes " << G4endl;
146 G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
149 G4MuBremsstrahlung* mub =
nullptr;
150 G4MuPairProduction* mup =
nullptr;
151 G4hBremsstrahlung* pib =
nullptr;
152 G4hPairProduction* pip =
nullptr;
153 G4hBremsstrahlung* kb =
nullptr;
154 G4hPairProduction*
kp =
nullptr;
155 G4hBremsstrahlung* pb =
nullptr;
156 G4hPairProduction*
pp =
nullptr;
159 G4MuMultipleScattering* mumsc =
nullptr;
160 G4MuMultipleScattering* pimsc =
nullptr;
161 G4MuMultipleScattering* kmsc =
nullptr;
162 G4MuMultipleScattering* pmsc =
nullptr;
163 G4hMultipleScattering* hmsc =
nullptr;
166 G4double highEnergyLimit = 100*
MeV;
169 G4RegionStore::GetInstance()->GetRegion(
"HcalRegion",
false);
171 G4RegionStore::GetInstance()->GetRegion(
"HGCalRegion",
false);
173 G4ParticleTable* table = G4ParticleTable::GetParticleTable();
176 G4ParticleDefinition* particle = table->FindParticle(
particleName);
180 ph->RegisterProcess(
new G4PhotoElectricEffect(), particle);
181 ph->RegisterProcess(
new G4ComptonScattering(), particle);
182 ph->RegisterProcess(
new G4GammaConversion(), particle);
186 G4eIonisation* eioni =
new G4eIonisation();
187 eioni->SetStepFunction(0.8, 1.0*mm);
189 G4eMultipleScattering*
msc =
new G4eMultipleScattering;
190 msc->SetStepLimitType(fMinimal);
191 G4UrbanMscModel* msc1 =
new G4UrbanMscModel();
192 G4WentzelVIModel* msc2 =
new G4WentzelVIModel();
193 G4UrbanMscModel* msc3 =
new G4UrbanMscModel();
194 msc3->SetLocked(
true);
195 msc1->SetHighEnergyLimit(highEnergyLimit);
196 msc2->SetLowEnergyLimit(highEnergyLimit);
197 msc3->SetHighEnergyLimit(highEnergyLimit);
198 msc->AddEmModel(0, msc1);
199 msc->AddEmModel(0, msc2);
200 msc->AddEmModel(-1, msc3, aRegion);
201 if (bRegion) msc->AddEmModel(-1, msc3, bRegion);
203 G4eCoulombScatteringModel* ssm =
new G4eCoulombScatteringModel();
204 G4CoulombScattering* ss =
new G4CoulombScattering();
205 ss->SetEmModel(ssm, 1);
206 ss->SetMinKinEnergy(highEnergyLimit);
207 ssm->SetLowEnergyLimit(highEnergyLimit);
208 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
210 ph->RegisterProcess(msc, particle);
211 ph->RegisterProcess(eioni, particle);
212 ph->RegisterProcess(
new G4eBremsstrahlung(), particle);
213 ph->RegisterProcess(ss, particle);
217 G4eIonisation* eioni =
new G4eIonisation();
218 eioni->SetStepFunction(0.8, 1.0*mm);
220 G4eMultipleScattering* msc =
new G4eMultipleScattering;
221 msc->SetStepLimitType(fMinimal);
222 G4UrbanMscModel* msc1 =
new G4UrbanMscModel();
223 G4WentzelVIModel* msc2 =
new G4WentzelVIModel();
224 G4UrbanMscModel* msc3 =
new G4UrbanMscModel();
225 msc1->SetHighEnergyLimit(highEnergyLimit);
226 msc2->SetLowEnergyLimit(highEnergyLimit);
227 msc3->SetHighEnergyLimit(highEnergyLimit);
228 msc3->SetLocked(
true);
229 msc->AddEmModel(0, msc1);
230 msc->AddEmModel(0, msc2);
231 msc->AddEmModel(-1, msc3, aRegion);
232 if (bRegion) msc->AddEmModel(-1, msc3, bRegion);
234 G4eCoulombScatteringModel* ssm =
new G4eCoulombScatteringModel();
235 G4CoulombScattering* ss =
new G4CoulombScattering();
236 ss->SetEmModel(ssm, 1);
237 ss->SetMinKinEnergy(highEnergyLimit);
238 ssm->SetLowEnergyLimit(highEnergyLimit);
239 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
241 ph->RegisterProcess(msc, particle);
242 ph->RegisterProcess(eioni, particle);
243 ph->RegisterProcess(
new G4eBremsstrahlung(), particle);
244 ph->RegisterProcess(
new G4eplusAnnihilation(), particle);
245 ph->RegisterProcess(ss, particle);
251 mub =
new G4MuBremsstrahlung();
252 mup =
new G4MuPairProduction();
253 mumsc =
new G4MuMultipleScattering();
254 mumsc->AddEmModel(0,
new G4WentzelVIModel());
256 ph->RegisterProcess(mumsc, particle);
257 ph->RegisterProcess(
new G4MuIonisation(), particle);
258 ph->RegisterProcess(mub, particle);
259 ph->RegisterProcess(mup, particle);
260 ph->RegisterProcess(
new G4CoulombScattering(), particle);
265 ph->RegisterProcess(
new G4hMultipleScattering(), particle);
266 ph->RegisterProcess(
new G4ionIonisation(), particle);
270 if(
nullptr == hmsc) {
271 hmsc =
new G4hMultipleScattering(
"ionmsc");
273 ph->RegisterProcess(hmsc, particle);
274 ph->RegisterProcess(
new G4ionIonisation(), particle);
280 pib =
new G4hBremsstrahlung();
281 pip =
new G4hPairProduction();
282 pimsc =
new G4MuMultipleScattering();
283 pimsc->AddEmModel(0,
new G4WentzelVIModel());
285 ph->RegisterProcess(pimsc, particle);
286 ph->RegisterProcess(
new G4hIonisation(), particle);
287 ph->RegisterProcess(pib, particle);
288 ph->RegisterProcess(pip, particle);
289 ph->RegisterProcess(
new G4CoulombScattering(), particle);
295 kb =
new G4hBremsstrahlung();
296 kp =
new G4hPairProduction();
297 kmsc =
new G4MuMultipleScattering();
298 kmsc->AddEmModel(0,
new G4WentzelVIModel());
300 ph->RegisterProcess(kmsc, particle);
301 ph->RegisterProcess(
new G4hIonisation(), particle);
302 ph->RegisterProcess(kb, particle);
303 ph->RegisterProcess(kp, particle);
304 ph->RegisterProcess(
new G4CoulombScattering(), particle);
310 pb =
new G4hBremsstrahlung();
311 pp =
new G4hPairProduction();
312 pmsc =
new G4MuMultipleScattering();
313 pmsc->AddEmModel(0,
new G4WentzelVIModel());
315 ph->RegisterProcess(pmsc, particle);
316 ph->RegisterProcess(
new G4hIonisation(), particle);
317 ph->RegisterProcess(pb, particle);
318 ph->RegisterProcess(pp, particle);
319 ph->RegisterProcess(
new G4CoulombScattering(), particle);
352 if(
nullptr == hmsc) {
353 hmsc =
new G4hMultipleScattering(
"ionmsc");
355 ph->RegisterProcess(hmsc, particle);
356 ph->RegisterProcess(
new G4hIonisation(), particle);
359 G4VAtomDeexcitation* de =
new G4UAtomicDeexcitation();
360 G4LossTableManager::Instance()->SetAtomDeexcitation(de);
const std::vector< G4String > & PartNames() const