200{
202
203
204 if(kinEnergy < lowEnergyLimit) return;
205
206 DefineMaterial(couple);
208
209
210
213 G4int iz = currentElement->GetZasInt();
216
217
218
219 Mottcross->SetupKinematic(kinEnergy, iz);
220 G4double cross= Mottcross->NuclearCrossSection(FormFactor,XSectionModel);
221 if(cross == 0.0) { return; }
222
223
224 G4double z1 = Mottcross->GetScatteringAngle(FormFactor,XSectionModel);
228
229
230 G4double ptot = sqrt(kinEnergy*(kinEnergy + 2.0*mass));
232
233
238
240
241
242 v1.
setX(momCM*sint*cos(phi));
243 v1.
setY(momCM*sint*sin(phi));
245
246
248
249
253
254 fParticleChange->ProposeMomentumDirection(newDirection);
255
256
257 v0 -= v1;
258 G4double trec = std::max(v0.
e() - mass2, 0.0);
260
262
263
264
265 if(pCuts) {
266 tcut= std::max(tcut,(*pCuts)[currentMaterialIndex]);
267
268
269 }
270
271 if(trec > tcut) {
272 G4ParticleDefinition* ion = theIonTable->GetIon(iz, ia, 0);
275 auto newdp = new G4DynamicParticle(ion, newDirection, trec);
276 fvect->push_back(newdp);
277 } else if(trec > 0.0) {
278 edep = trec;
279 fParticleChange->ProposeNonIonizingEnergyDeposit(edep);
280 }
281
282
284
285 if(finalT <= lowEnergyLimit) {
286 edep += finalT;
287 finalT = 0.0;
288 }
289 edep = std::max(edep, 0.0);
290 fParticleChange->SetProposedKineticEnergy(finalT);
291 fParticleChange->ProposeLocalEnergyDeposit(edep);
292
293}
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
Hep3Vector & rotateUz(const Hep3Vector &)
Hep3Vector boostVector() const
HepLorentzVector & boost(double, double, double)
const G4ThreeVector & GetMomentumDirection() const
G4double GetLogKineticEnergy() const
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4int SelectIsotopeNumber(const G4Element *) const
const G4Element * SelectTargetAtom(const G4MaterialCutsCouple *, const G4ParticleDefinition *, G4double kineticEnergy, G4double logKineticEnergy, G4double cutEnergy=0.0, G4double maxEnergy=DBL_MAX)