141 edm::LogVerbatim(
"PhysicsList") <<
"### " << GetPhysicsName() <<
" Construct Processes";
148 G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
151 G4MuBremsstrahlung* mub =
nullptr;
152 G4MuPairProduction* mup =
nullptr;
153 G4hBremsstrahlung* pib =
nullptr;
154 G4hPairProduction* pip =
nullptr;
155 G4hBremsstrahlung* kb =
nullptr;
156 G4hPairProduction*
kp =
nullptr;
157 G4hBremsstrahlung* pb =
nullptr;
158 G4hPairProduction*
pp =
nullptr;
161 G4MuMultipleScattering* mumsc =
nullptr;
162 G4hMultipleScattering* pimsc =
nullptr;
163 G4hMultipleScattering* kmsc =
nullptr;
164 G4hMultipleScattering* pmsc =
nullptr;
165 G4hMultipleScattering* hmsc =
nullptr;
168 G4CoulombScattering* muss =
nullptr;
169 G4CoulombScattering* piss =
nullptr;
170 G4CoulombScattering* kss =
nullptr;
173 G4double highEnergyLimit = 100 *
MeV;
175 G4Region* aRegion = G4RegionStore::GetInstance()->GetRegion(
"HcalRegion",
false);
176 G4Region* bRegion = G4RegionStore::GetInstance()->GetRegion(
"HGCalRegion",
false);
178 edm::LogVerbatim(
"PhysicsList") <<
"CMSEmStandardPhysicsLPM: HcalRegion " << aRegion <<
"; HGCalRegion " << bRegion;
180 G4ParticleTable*
table = G4ParticleTable::GetParticleTable();
186 ph->RegisterProcess(
new G4PhotoElectricEffect(), particle);
187 ph->RegisterProcess(
new G4ComptonScattering(), particle);
188 ph->RegisterProcess(
new G4GammaConversion(), particle);
191 G4eIonisation* eioni =
new G4eIonisation();
193 G4eMultipleScattering* msc =
new G4eMultipleScattering;
194 G4UrbanMscModel* msc1 =
new G4UrbanMscModel();
195 G4WentzelVIModel* msc2 =
new G4WentzelVIModel();
196 G4UrbanMscModel* msc3 =
new G4UrbanMscModel();
197 msc1->SetHighEnergyLimit(highEnergyLimit);
198 msc2->SetLowEnergyLimit(highEnergyLimit);
199 msc3->SetHighEnergyLimit(highEnergyLimit);
200 msc3->SetLocked(
true);
201 msc->SetEmModel(msc1);
202 msc->SetEmModel(msc2);
204 msc->AddEmModel(-1, msc3, aRegion);
207 msc->AddEmModel(-1, msc3, bRegion);
210 G4eCoulombScatteringModel* ssm =
new G4eCoulombScatteringModel();
211 G4CoulombScattering*
ss =
new G4CoulombScattering();
213 ss->SetMinKinEnergy(highEnergyLimit);
214 ssm->SetLowEnergyLimit(highEnergyLimit);
215 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
217 ph->RegisterProcess(msc, particle);
218 ph->RegisterProcess(eioni, particle);
219 ph->RegisterProcess(
new G4eBremsstrahlung(), particle);
220 ph->RegisterProcess(
ss, particle);
223 G4eIonisation* eioni =
new G4eIonisation();
225 G4eMultipleScattering* msc =
new G4eMultipleScattering;
226 G4UrbanMscModel* msc1 =
new G4UrbanMscModel();
227 G4WentzelVIModel* msc2 =
new G4WentzelVIModel();
228 G4UrbanMscModel* msc3 =
new G4UrbanMscModel();
229 msc1->SetHighEnergyLimit(highEnergyLimit);
230 msc2->SetLowEnergyLimit(highEnergyLimit);
231 msc3->SetHighEnergyLimit(highEnergyLimit);
232 msc3->SetLocked(
true);
233 msc->SetEmModel(msc1);
234 msc->SetEmModel(msc2);
236 msc->AddEmModel(-1, msc3, aRegion);
239 msc->AddEmModel(-1, msc3, bRegion);
242 G4eCoulombScatteringModel* ssm =
new G4eCoulombScatteringModel();
243 G4CoulombScattering*
ss =
new G4CoulombScattering();
245 ss->SetMinKinEnergy(highEnergyLimit);
246 ssm->SetLowEnergyLimit(highEnergyLimit);
247 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
249 ph->RegisterProcess(msc, particle);
250 ph->RegisterProcess(eioni, particle);
251 ph->RegisterProcess(
new G4eBremsstrahlung(), particle);
252 ph->RegisterProcess(
new G4eplusAnnihilation(), particle);
253 ph->RegisterProcess(
ss, particle);
256 if (
nullptr == mub) {
257 mub =
new G4MuBremsstrahlung();
258 mup =
new G4MuPairProduction();
259 mumsc =
new G4MuMultipleScattering();
260 mumsc->SetEmModel(
new G4WentzelVIModel());
261 muss =
new G4CoulombScattering();
263 ph->RegisterProcess(mumsc, particle);
264 ph->RegisterProcess(
new G4MuIonisation(), particle);
265 ph->RegisterProcess(mub, particle);
266 ph->RegisterProcess(mup, particle);
267 ph->RegisterProcess(muss, particle);
270 ph->RegisterProcess(
new G4hMultipleScattering(), particle);
271 ph->RegisterProcess(
new G4ionIonisation(), particle);
274 if (
nullptr == hmsc) {
275 hmsc =
new G4hMultipleScattering(
"ionmsc");
277 ph->RegisterProcess(hmsc, particle);
278 ph->RegisterProcess(
new G4ionIonisation(), particle);
281 if (
nullptr == pib) {
282 pib =
new G4hBremsstrahlung();
283 pip =
new G4hPairProduction();
284 pimsc =
new G4hMultipleScattering();
285 pimsc->SetEmModel(
new G4WentzelVIModel());
286 piss =
new G4CoulombScattering();
288 ph->RegisterProcess(pimsc, particle);
289 ph->RegisterProcess(
new G4hIonisation(), particle);
290 ph->RegisterProcess(pib, particle);
291 ph->RegisterProcess(pip, particle);
292 ph->RegisterProcess(piss, particle);
296 kb =
new G4hBremsstrahlung();
297 kp =
new G4hPairProduction();
298 kmsc =
new G4hMultipleScattering();
299 kmsc->SetEmModel(
new G4WentzelVIModel());
300 kss =
new G4CoulombScattering();
302 ph->RegisterProcess(kmsc, particle);
303 ph->RegisterProcess(
new G4hIonisation(), particle);
304 ph->RegisterProcess(kb, particle);
305 ph->RegisterProcess(
kp, particle);
306 ph->RegisterProcess(kss, particle);
310 pb =
new G4hBremsstrahlung();
311 pp =
new G4hPairProduction();
313 pmsc =
new G4hMultipleScattering();
314 pmsc->SetEmModel(
new G4WentzelVIModel());
316 ph->RegisterProcess(pmsc, particle);
317 ph->RegisterProcess(
new G4hIonisation(), particle);
318 ph->RegisterProcess(pb, particle);
319 ph->RegisterProcess(
pp, particle);
320 ph->RegisterProcess(
new G4CoulombScattering(), particle);
322 }
else if (particle->GetPDGCharge() != 0.0) {
323 if (
nullptr == hmsc) {
324 hmsc =
new G4hMultipleScattering(
"ionmsc");
326 ph->RegisterProcess(hmsc, particle);
327 ph->RegisterProcess(
new G4hIonisation(), particle);
330 edm::LogVerbatim(
"PhysicsList") <<
"CMSEmStandardPhysicsLPM: EM physics is instantiated";