99 edm::LogVerbatim(
"PhysicsList") <<
"### " << GetPhysicsName() <<
" Construct Processes";
105 G4EmBuilder::PrepareEMPhysics();
107 G4PhysicsListHelper*
ph = G4PhysicsListHelper::GetPhysicsListHelper();
110 G4hMultipleScattering* hmsc =
new G4hMultipleScattering(
"ionmsc");
111 G4double nielEnergyLimit = G4EmParameters::Instance()->MaxNIELEnergy();
112 G4NuclearStopping* pnuc =
nullptr;
113 if (nielEnergyLimit > 0.0) {
114 pnuc =
new G4NuclearStopping();
115 pnuc->SetMaxKinEnergy(nielEnergyLimit);
119 G4double highEnergyLimit = G4EmParameters::Instance()->MscEnergyLimit();
122 G4ParticleDefinition* particle = G4Gamma::Gamma();
125 G4PhotoElectricEffect* pe =
new G4PhotoElectricEffect();
126 G4VEmModel* theLivermorePEModel =
new G4LivermorePhotoElectricModel();
127 pe->SetEmModel(theLivermorePEModel);
130 G4ComptonScattering*
cs =
new G4ComptonScattering;
131 cs->SetEmModel(
new G4KleinNishinaModel());
132 G4VEmModel* theLowEPComptonModel =
new G4LowEPComptonModel();
133 theLowEPComptonModel->SetHighEnergyLimit(20 * CLHEP::MeV);
134 cs->AddEmModel(0, theLowEPComptonModel);
137 G4GammaConversion* gc =
new G4GammaConversion();
138 G4VEmModel*
conv =
new G4BetheHeitler5DModel();
139 gc->SetEmModel(
conv);
141 if (G4EmParameters::Instance()->GeneralProcessActive()) {
143 sp->AddEmProcess(pe);
144 sp->AddEmProcess(
cs);
145 sp->AddEmProcess(gc);
146 sp->AddEmProcess(
new G4RayleighScattering());
147 G4LossTableManager::Instance()->SetGammaGeneralProcess(sp);
148 ph->RegisterProcess(sp, particle);
150 ph->RegisterProcess(pe, particle);
151 ph->RegisterProcess(
cs, particle);
152 ph->RegisterProcess(gc, particle);
153 ph->RegisterProcess(
new G4RayleighScattering(), particle);
160 G4eMultipleScattering* msc =
new G4eMultipleScattering();
163 G4GoudsmitSaundersonMscModel* msc1 =
new G4GoudsmitSaundersonMscModel();
164 G4WentzelVIModel* msc2 =
new G4WentzelVIModel();
165 msc1->SetHighEnergyLimit(highEnergyLimit);
166 msc2->SetLowEnergyLimit(highEnergyLimit);
167 msc->SetEmModel(msc1);
168 msc->SetEmModel(msc2);
170 G4eCoulombScatteringModel* ssm =
new G4eCoulombScatteringModel();
171 G4CoulombScattering*
ss =
new G4CoulombScattering();
173 ss->SetMinKinEnergy(highEnergyLimit);
174 ssm->SetLowEnergyLimit(highEnergyLimit);
175 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
178 ssm =
new G4eCoulombScatteringModel();
179 ss =
new G4CoulombScattering();
181 ss->SetMinKinEnergy(highEnergyLimit);
182 ssm->SetLowEnergyLimit(highEnergyLimit);
183 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
186 G4eIonisation* eioni =
new G4eIonisation();
187 G4VEmModel* theIoniLiv =
new G4LivermoreIonisationModel();
188 theIoniLiv->SetHighEnergyLimit(0.1 * CLHEP::MeV);
189 eioni->AddEmModel(0, theIoniLiv,
new G4UniversalFluctuation());
192 G4eBremsstrahlung* brem =
new G4eBremsstrahlung();
193 G4SeltzerBergerModel* br1 =
new G4SeltzerBergerModel();
194 G4eBremsstrahlungRelModel* br2 =
new G4eBremsstrahlungRelModel();
195 br1->SetAngularDistribution(
new G4Generator2BS());
196 br2->SetAngularDistribution(
new G4Generator2BS());
197 brem->SetEmModel(br1);
198 brem->SetEmModel(br2);
199 br1->SetHighEnergyLimit(CLHEP::GeV);
201 G4ePairProduction* ee =
new G4ePairProduction();
204 ph->RegisterProcess(msc, particle);
205 ph->RegisterProcess(eioni, particle);
206 ph->RegisterProcess(brem, particle);
207 ph->RegisterProcess(ee, particle);
208 ph->RegisterProcess(
ss, particle);
211 particle = G4Positron::Positron();
214 msc =
new G4eMultipleScattering();
217 msc1 =
new G4GoudsmitSaundersonMscModel();
218 msc2 =
new G4WentzelVIModel();
219 msc1->SetHighEnergyLimit(highEnergyLimit);
220 msc2->SetLowEnergyLimit(highEnergyLimit);
221 msc->SetEmModel(msc1);
222 msc->SetEmModel(msc2);
225 ssm =
new G4eCoulombScatteringModel();
226 ss =
new G4CoulombScattering();
228 ss->SetMinKinEnergy(highEnergyLimit);
229 ssm->SetLowEnergyLimit(highEnergyLimit);
230 ssm->SetActivationLowEnergyLimit(highEnergyLimit);
233 eioni =
new G4eIonisation();
240 brem =
new G4eBremsstrahlung();
241 br1 =
new G4SeltzerBergerModel();
242 br2 =
new G4eBremsstrahlungRelModel();
243 br1->SetAngularDistribution(
new G4Generator2BS());
244 br2->SetAngularDistribution(
new G4Generator2BS());
245 brem->SetEmModel(br1);
246 brem->SetEmModel(br2);
247 br1->SetHighEnergyLimit(CLHEP::GeV);
250 ph->RegisterProcess(msc, particle);
251 ph->RegisterProcess(eioni, particle);
252 ph->RegisterProcess(brem, particle);
253 ph->RegisterProcess(ee, particle);
254 ph->RegisterProcess(
new G4eplusAnnihilation(), particle);
255 ph->RegisterProcess(
ss, particle);
258 particle = G4GenericIon::GenericIon();
259 G4ionIonisation* ionIoni =
new G4ionIonisation();
260 ionIoni->SetEmModel(
new G4IonParametrisedLossModel());
261 ph->RegisterProcess(hmsc, particle);
262 ph->RegisterProcess(ionIoni, particle);
264 ph->RegisterProcess(pnuc, particle);
267 G4EmBuilder::ConstructCharged(hmsc, pnuc);
Log< level::Info, true > LogVerbatim