218{
222
223
224
225
226
227
228 G4double cut = (0.0 < fixedCut) ? fixedCut : cutEnergy;
229
230 wokvi->SetupKinematic(kinEnergy, currentMaterial);
231
232 const G4Element* currentElement =
SelectTargetAtom(couple,particle,kinEnergy,
235
236 G4double costmin = wokvi->SetupTarget(iz, cut);
237 G4double costmax = (1 == iz && particle == theProton && cosThetaMax < 0.0)
238 ? 0.0 : cosThetaMax;
239 if(costmin <= costmax) { return; }
240
241 G4double cross = wokvi->ComputeNuclearCrossSection(costmin, costmax);
242 G4double ecross = wokvi->ComputeElectronCrossSection(costmin, costmax);
243 G4double ratio = ecross/(cross + ecross);
244
247 wokvi->SetTargetMass(targetMass);
248
250 wokvi->SampleSingleScattering(costmin, costmax, ratio);
252
253
254
255
256
257
258
259
262
263 fParticleChange->ProposeMomentumDirection(newDirection);
264
265
266
267 G4double mom2 = wokvi->GetMomentumSquare();
269 /(targetMass + (mass + kinEnergy)*(1.0 - cost));
270
271
272 trec = std::min(trec, kinEnergy);
275
276
277
278
279
281 if(pCuts) { tcut= std::max(tcut,(*pCuts)[currentMaterialIndex]); }
282
283 if(trec > tcut) {
284 G4ParticleDefinition* ion = theIonTable->GetIon(iz, ia, 0);
286 newDirection*sqrt(finalT*(2*mass + finalT))).unit();
287 auto newdp = new G4DynamicParticle(ion, dir, trec);
288 fvect->push_back(newdp);
289 } else {
290 edep = trec;
291 fParticleChange->ProposeNonIonizingEnergyDeposit(edep);
292 }
293
294
295
296
297 if(finalT < 0.0) {
298 edep += finalT;
299 finalT = 0.0;
300 }
301 edep = std::max(edep, 0.0);
302 fParticleChange->SetProposedKineticEnergy(finalT);
303 fParticleChange->ProposeLocalEnergyDeposit(edep);
304}
CLHEP::Hep3Vector G4ThreeVector
Hep3Vector & rotateUz(const Hep3Vector &)
const G4ThreeVector & GetMomentumDirection() const
G4double GetLogKineticEnergy() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
G4int SelectIsotopeNumber(const G4Element *) const
const G4Element * SelectTargetAtom(const G4MaterialCutsCouple *, const G4ParticleDefinition *, G4double kineticEnergy, G4double logKineticEnergy, G4double cutEnergy=0.0, G4double maxEnergy=DBL_MAX)