172{
174
175
176
178
180
181
183
184
187 G4double maxEnergy = std::min(tmax, maxPairEnergy);
189
190 if(minEnergy >= maxEnergy) { return; }
191
192
193
194
196
197
200
201
202
203
205
206
207
208
209 G4int iz1(0), iz2(0);
212 iz1 = iz2 = iz;
213 break;
215 iz2 = iz;
216 if(iz > 0) { iz1 = iz-1; }
217 else { iz1 = iz2; }
218 break;
219 }
220 }
221 if(0 == iz1) { iz1 = iz2 =
NZDATPAIR-1; }
222
225
226 do {
227 ++count;
228
230
232 if(iz1 != iz2) {
236
237
238 x += (x2 - x)*(
lnZ - lz1)/(lz2 - lz1);
239 }
240
241 pairEnergy = kinEnergy*
G4Exp(x*coeff);
242
243
244 } while((pairEnergy < minEnergy || pairEnergy > maxEnergy) && 10 > count);
245
246
247
248
249
252
253
254 G4double muMinusEnergy = (1.-r)*pairEnergy*0.5;
255 G4double muPlusEnergy = pairEnergy - muMinusEnergy;
256
257
259
261 muMinusEnergy, muPlusEnergy,
262 muMinusDirection, muPlusDirection);
263
264 muMinusEnergy = std::max(muMinusEnergy -
muonMass, 0.0);
265 muPlusEnergy = std::max(muPlusEnergy -
muonMass, 0.0);
266 G4DynamicParticle* aParticle1 =
267 new G4DynamicParticle(
theMuonMinus,muMinusDirection,muMinusEnergy);
268 G4DynamicParticle* aParticle2 =
269 new G4DynamicParticle(
theMuonPlus,muPlusDirection,muPlusEnergy);
270
271 vdp->push_back(aParticle1);
272 vdp->push_back(aParticle2);
273
274
275 kinEnergy -= pairEnergy;
276 partDirection *= totalMomentum;
278 partDirection = partDirection.
unit();
279
280
281
285 G4DynamicParticle* newdp =
286 new G4DynamicParticle(
particle, partDirection, kinEnergy);
287 vdp->push_back(newdp);
288 } else {
291 }
292
293}
CLHEP::Hep3Vector G4ThreeVector
const G4ThreeVector & GetMomentumDirection() const
G4double GetKineticEnergy() const
G4ThreeVector GetMomentum() const
static const G4int NZDATPAIR
G4double FindScaledEnergy(G4int Z, G4double rand, G4double logTkin, G4double yymin, G4double yymax)
const G4ParticleDefinition * particle
G4ParticleChangeForLoss * fParticleChange
static const G4int ZDATPAIR[NZDATPAIR]
G4double MaxSecondaryEnergyForElement(G4double kineticEnergy, G4double Z)
virtual void SamplePairDirections(const G4DynamicParticle *dp, G4double elecKinEnergy, G4double posiKinEnergy, G4ThreeVector &dirElectron, G4ThreeVector &dirPositron, G4int Z=0, const G4Material *mat=nullptr)
G4VEmAngularDistribution * GetAngularDistribution()
const G4Element * SelectRandomAtom(const G4MaterialCutsCouple *, const G4ParticleDefinition *, G4double kineticEnergy, G4double cutEnergy=0.0, G4double maxEnergy=DBL_MAX)
G4double SecondaryThreshold() const