234{
238
239
240 G4double cut = (0.0 < fixedCut) ? fixedCut : cutEnergy;
241
243 kinEnergy,cut,kinEnergy);
244
248
249 wokvi->SetTargetMass(mass2);
250 wokvi->SetupKinematic(kinEnergy, currentMaterial);
251 G4double costmin = wokvi->SetupTarget(iz, cut);
252 G4double costmax = (1 == iz && particle == theProton && cosThetaMax < 0.0)
253 ? 0.0 : cosThetaMax;
254 if(costmin <= costmax) { return; }
255
256 G4double cross = wokvi->ComputeNuclearCrossSection(costmin, costmax);
257 G4double ecross = wokvi->ComputeElectronCrossSection(costmin, costmax);
258 G4double ratio = ecross/(cross + ecross);
259
261 wokvi->SampleSingleScattering(costmin, costmax, ratio);
262
263
264 G4double ptot = std::sqrt(kinEnergy*(kinEnergy + 2.0*mass));
266
267
272
274
275
276 v1.
setX(momCM*newDirection.
x());
277 v1.
setY(momCM*newDirection.
y());
278 v1.
setZ(momCM*newDirection.
z());
279
280
282
286
287 fParticleChange->ProposeMomentumDirection(newDirection);
288
289
290 v0 -= v1;
291 G4double trec = std::max(v0.
e() - mass2, 0.0);
293
295 if(pCuts) { tcut= std::max(tcut,(*pCuts)[currentMaterialIndex]); }
296
297 if(trec > tcut) {
298 G4ParticleDefinition* ion = theIonTable->GetIon(iz, ia, 0);
301 auto newdp = new G4DynamicParticle(ion, newDirection, trec);
302 fvect->push_back(newdp);
303 } else if(trec > 0.0) {
304 edep = trec;
305 fParticleChange->ProposeNonIonizingEnergyDeposit(edep);
306 }
307
308
310 if(finalT < 0.0) {
311 edep += finalT;
312 finalT = 0.0;
313 }
314 edep = std::max(edep, 0.0);
315 fParticleChange->SetProposedKineticEnergy(finalT);
316 fParticleChange->ProposeLocalEnergyDeposit(edep);
317}
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
Hep3Vector & rotateUz(const Hep3Vector &)
Hep3Vector boostVector() const
HepLorentzVector & boost(double, double, double)
const G4ThreeVector & GetMomentumDirection() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
G4int SelectIsotopeNumber(const G4Element *) const
const G4Element * SelectRandomAtom(const G4MaterialCutsCouple *, const G4ParticleDefinition *, G4double kineticEnergy, G4double cutEnergy=0.0, G4double maxEnergy=DBL_MAX)