312 if (verboseLevel > 3)
313 G4cout <<
"Calling SampleSecondaries() of G4LivermorePolarizedComptonModel" <<
G4endl;
331 if(!(gammaPolarization0.
isOrthogonal(gammaDirection0, 1e-6))||(gammaPolarization0.
mag()==0))
333 gammaPolarization0 = GetRandomPolarization(gammaDirection0);
339 gammaPolarization0 = GetPerpendicularPolarization(gammaDirection0, gammaPolarization0);
344 G4double E0_m = gammaEnergy0 / electron_mass_c2 ;
355 G4double epsilon0Local = 1./(1. + 2*E0_m);
356 G4double epsilon0Sq = epsilon0Local*epsilon0Local;
360 G4double wlGamma = h_Planck*c_light/gammaEnergy0;
373 epsilon = std::sqrt(epsilonSq);
377 sinThetaSqr = onecost*(2.-onecost);
380 if (sinThetaSqr > 1.)
383 <<
" -- Warning -- G4LivermorePolarizedComptonModel::SampleSecondaries "
384 <<
"sin(theta)**2 = "
390 if (sinThetaSqr < 0.)
393 <<
" -- Warning -- G4LivermorePolarizedComptonModel::SampleSecondaries "
394 <<
"sin(theta)**2 = "
402 G4double x = std::sqrt(onecost/2.) / (wlGamma/cm);;
403 G4double scatteringFunction = scatterFunctionData->FindValue(x,Z-1);
404 greject = (1. -
epsilon*sinThetaSqr/(1.+ epsilonSq))*scatteringFunction;
423 <<
" -- Warning -- G4LivermorePolarizedComptonModel::SampleSecondaries "
433 <<
" -- Warning -- G4LivermorePolarizedComptonModel::SampleSecondaries "
442 G4double sinTheta = std::sqrt (sinThetaSqr);
448 <<
" -- Warning -- G4LivermorePolarizedComptonModel::SampleSecondaries "
458 <<
" -- Warning -- G4LivermorePolarizedComptonModel::SampleSecondaries "
470 = fParticleChange->GetCurrentTrack()->GetAuxiliaryTrackInformation(fEntanglementModelID);
473 if (entanglementAuxInfo) {
475 (entanglementAuxInfo->GetEntanglementClipBoard());
483 if (clipBoard->IsTrack1Measurement()) {
491 if (clipBoard->GetTrackB() == fParticleChange->GetCurrentTrack()) {
502 clipBoard->ResetTrack1Measurement();
504 clipBoard->SetComptonCosTheta1(cosTheta);
505 clipBoard->SetComptonPhi1(phi);
507 }
else if (clipBoard->IsTrack2Measurement()) {
510 if (clipBoard->GetTrackA() == fParticleChange->GetCurrentTrack()) {
521 clipBoard->ResetTrack2Measurement();
524 const G4double& cosTheta1 = clipBoard->GetComptonCosTheta1();
525 const G4double& phi1 = clipBoard->GetComptonPhi1();
527 const G4double& cosTheta2 = cosTheta;
536 const G4double sin2Theta1 = 1.-cosTheta1*cosTheta1;
537 const G4double sin2Theta2 = 1.-cosTheta2*cosTheta2;
542 ((g4Pow->powN(1.-cosTheta1,3))+2.)*(g4Pow->powN(1.-cosTheta2,3)+2.)/
543 ((g4Pow->powN(2.-cosTheta1,3)*g4Pow->powN(2.-cosTheta2,3)));
544 const G4double B = -(sin2Theta1*sin2Theta2)/
545 ((g4Pow->powN(2.-cosTheta1,2)*g4Pow->powN(2.-cosTheta2,2)));
560 const G4double maxValue =
A + std::abs(B);
567 const G4int maxCount = 999999;
569 for (; iCount < maxCount; ++iCount) {
573 if (iCount >= maxCount ) {
574 G4cout <<
"G4LivermorePolarizedComptonModel::SampleSecondaries: "
575 <<
"Re-sampled delta phi not found in " << maxCount
576 <<
" tries - carrying on anyway." <<
G4endl;
580 phi2 = deltaPhi - phi1 + halfpi;
605 G4double dirx = sinTheta*std::cos(phi);
606 G4double diry = sinTheta*std::sin(phi);
617 static G4int maxDopplerIterations = 1000;
626 if (verboseLevel > 3) {
634 shellIdx = shellData->SelectRandomShell(Z);
635 bindingE = shellData->BindingEnergy(Z,shellIdx);
637 if (verboseLevel > 3) {
638 G4cout <<
"Shell ID= " << shellIdx
639 <<
" Ebind(keV)= " << bindingE/keV <<
G4endl;
641 eMax = gammaEnergy0 - bindingE;
644 G4double pSample = profileData->RandomSelectMomentum(Z,shellIdx);
646 if (verboseLevel > 3) {
650 G4double pDoppler = pSample * fine_structure_const;
651 G4double pDoppler2 = pDoppler * pDoppler;
652 G4double var2 = 1. + onecost * E0_m;
653 G4double var3 = var2*var2 - pDoppler2;
654 G4double var4 = var2 - pDoppler2 * cosTheta;
655 G4double var = var4*var4 - var3 + pDoppler2 * var3;
659 G4double scale = gammaEnergy0 / var3;
661 if (
G4UniformRand() < 0.5) photonE = (var4 - varSqrt) * scale;
662 else photonE = (var4 + varSqrt) * scale;
668 }
while ( iteration <= maxDopplerIterations &&
669 (photonE < 0. || photonE > eMax || photonE < eMax*
G4UniformRand()) );
673 if (iteration >= maxDopplerIterations)
675 photonE = photonEoriginal;
679 gammaEnergy1 = photonE;
692 gammaDirection1 = tmpDirection1;
695 SystemOfRefChange(gammaDirection0,gammaDirection1,
696 gammaPolarization0,gammaPolarization1);
698 if (gammaEnergy1 > 0.)
700 fParticleChange->SetProposedKineticEnergy( gammaEnergy1 ) ;
701 fParticleChange->ProposeMomentumDirection( gammaDirection1 );
702 fParticleChange->ProposePolarization( gammaPolarization1 );
707 fParticleChange->SetProposedKineticEnergy(0.) ;
714 G4double ElecKineEnergy = gammaEnergy0 - gammaEnergy1 -bindingE;
718 if(ElecKineEnergy < 0.0) {
719 fParticleChange->ProposeLocalEnergyDeposit(gammaEnergy0 - gammaEnergy1);
723 G4double ElecMomentum = std::sqrt(ElecKineEnergy*(ElecKineEnergy+2.*electron_mass_c2));
725 G4ThreeVector ElecDirection((gammaEnergy0 * gammaDirection0 -
726 gammaEnergy1 * gammaDirection1) * (1./ElecMomentum));
730 fvect->push_back(dp);
734 if (verboseLevel > 3) {
735 G4cout <<
"Started atomic de-excitation " << fAtomDeexcitation <<
G4endl;
738 if(fAtomDeexcitation && iteration < maxDopplerIterations) {
740 if(fAtomDeexcitation->CheckDeexcitationActiveRegion(index)) {
741 std::size_t nbefore = fvect->size();
743 const G4AtomicShell* shell = fAtomDeexcitation->GetAtomicShell(Z, as);
744 fAtomDeexcitation->GenerateParticles(fvect, shell, Z, index);
745 std::size_t nafter = fvect->size();
746 if(nafter > nbefore) {
747 for (std::size_t i=nbefore; i<nafter; ++i) {
749 if (bindingE >= ((*fvect)[i])->GetKineticEnergy())
752 bindingE -= ((*fvect)[i])->GetKineticEnergy();
767 G4Exception(
"G4LivermoreComptonModel::SampleSecondaries()",
770 fParticleChange->ProposeLocalEnergyDeposit(bindingE);