157{
159 DefineMaterial(couple);
161
162
165
166 G4int iz = currentElement->GetZasInt();
169
170 ioncross->SetupKinematic(kinEnergy, mass2);
171 ioncross->SetupTarget(currentElement->GetZ(), kinEnergy, heavycorr);
172
173
174 G4double z1 = ioncross->SampleCosineTheta();
175 if(z1 > 2.0) { z1 = 2.0; }
176 else if(z1 < 0.0) { z1 = 0.0; }
177
178
179
180
181
182
183
185 G4double sint = sqrt(z1*(1.0 + cost));
187
188
189 G4double ptot = sqrt(kinEnergy*(kinEnergy + 2.0*mass));
191
192
197
199
200
201 v1.
setX(momCM*sint*cos(phi));
202 v1.
setY(momCM*sint*sin(phi));
204
205
207
208
212
213 fParticleChange->ProposeMomentumDirection(newDirection);
214
215
216 v0 -= v1;
217 G4double trec = std::max(v0.
e() - mass2, 0.0);
219
221 if(pCuts) {
222 tcut= std::max(tcut,(*pCuts)[currentMaterialIndex]);
223
224 }
225
226
227 if(trec > tcut) {
228 G4ParticleDefinition* ion = theIonTable->GetIon(iz, ia, 0);
231 auto newdp = new G4DynamicParticle(ion, newDirection, trec);
232 fvect->push_back(newdp);
233 } else if(trec > 0.0) {
234 edep = trec;
235 fParticleChange->ProposeNonIonizingEnergyDeposit(edep);
236 }
237
238
240 if(finalT < 0.0) {
241 edep += finalT;
242 finalT = 0.0;
243 }
244 edep = std::max(edep, 0.0);
245
246
247 fParticleChange->SetProposedKineticEnergy(finalT);
248 fParticleChange->ProposeLocalEnergyDeposit(edep);
249}
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)