261 G4cout <<
"########################################"
262 <<
"########################################"
266 G4cout <<
"Initial projectile A=" <<AP
268 <<
", radius = " <<rP/fermi <<
" fm"
270 G4cout <<
"Initial target A=" <<AT
272 <<
", radius = " <<rT/fermi <<
" fm"
274 G4cout <<
"Projectile momentum and Energy/nuc = " <<pP <<
" ," <<E <<
G4endl;
281 G4double rm = ZP * ZT * elm_coupling / (E * AP);
299 G4bool skipInteraction =
false;
300 const G4int maxNumberOfLoops = 1000;
301 G4int loopCounter = -1;
302 while (Dabr == 0 && ++loopCounter < maxNumberOfLoops)
319 if (rm >= fradius * rPT) {
320 skipInteraction =
true;
329 while (r > rPT && ++evtcnt < 1000)
332 r = (rm + std::sqrt(rm*rm + 4.0*bsq)) / 2.0;
338 if (evtcnt >= 1000) {
339 skipInteraction =
true;
349 G4double x = (rPsq + rsq - rTsq) / 2.0 / r;
350 if (x > 0.0) CT = 2.0 * std::sqrt(rTsq - x*x);
351 else CT = 2.0 * std::sqrt(rTsq - rsq);
355 G4double x = (rTsq + rsq - rPsq) / 2.0 / r;
356 if (x > 0.0) CT = 2.0 * std::sqrt(rTsq - x*x);
367 delete theAbrasionGeometry;
369 F = theAbrasionGeometry->
F();
373 for (
G4int i = 0; i<10; ++i)
378 if (n>AP) Dabr = (
G4int) AP;
379 else Dabr = (
G4int) n;
385 if ( loopCounter >= maxNumberOfLoops || skipInteraction ) {
391 G4cout <<
"Particle energy too low to overcome repulsion." <<
G4endl;
392 G4cout <<
"Event rejected and original track maintained" <<
G4endl;
393 G4cout <<
"########################################"
394 <<
"########################################"
397 delete theAbrasionGeometry;
404 G4cout <<
"Impact parameter = " <<r/fermi <<
" fm" <<
G4endl;
425 G4Fragment *fragmentP = GetAbradedNucleons (Dabr, AP, ZP, rP);
428 for (i=0; i<nSecP; ++i)
431 GetParticle()->GetTotalEnergy();
439 if (DspcP <= 0) DspcP = 0;
440 else if (DspcP > AP-Dabr) DspcP = ((
G4int) AP) - Dabr;
448 G4bool excitationAbsorbedByProjectile =
false;
449 if (fragmentP !=
nullptr)
455 if (excitationAbsorbedByProjectile)
456 ExP = GetNucleonInducedExcitation(rP, rT, r);
458 if (xP > B*(AP-Dabr)) xP = B*(AP-Dabr);
460 lorentzVector.
setE(lorentzVector.e()+xP);
462 TotalEPost += lorentzVector.e();
474 G4Fragment *fragmentT = GetAbradedNucleons (Dabr, AT, ZT, rT);
476 for (i=nSecP; i<nSec; ++i)
479 GetParticle()->GetTotalEnergy();
487 if (DspcT <= 0) DspcT = 0;
488 else if (DspcT > AP-Dabr) DspcT = ((
G4int) AT) - Dabr;
496 if (fragmentT !=
nullptr)
500 if (!excitationAbsorbedByProjectile)
501 ExT = GetNucleonInducedExcitation(rT, rP, r);
503 if (xT > B*(AT-Dabr)) xT = B*(AT-Dabr);
505 lorentzVector.
setE(lorentzVector.e()+xT);
507 TotalEPost += lorentzVector.e();
515 G4double deltaE = TotalEPre - TotalEPost;
516 if (deltaE > 0.0 && conserveEnergy)
519 boost = boost / boost.
mag() * beta;
526 for (i=0; i<nSecP; ++i)
531 lorentzVector.
boost(-boost);
533 pBalance -= lorentzVector.
vect();
545 if (fragmentP !=
nullptr)
549 if (conserveMomentum)
555 fragmentP->
SetMomentum(lorentzVector.
boost(-boost * fragmentGroundStateM/fragmentM));
565 G4cout <<
"-----------------------------------" <<
G4endl;
566 G4cout <<
"Secondary nucleons from projectile:" <<
G4endl;
567 G4cout <<
"-----------------------------------" <<
G4endl;
569 for (i=0; i<nSecP; ++i)
581 if (fragmentP !=
nullptr)
590 for (i=nSecP; i<nSec; ++i)
602 if (fragmentT !=
nullptr)
612 if (fragmentP !=
nullptr)
616 products = theExcitationHandler->BreakItUp(*fragmentP);
622 G4ReactionProductVector::iterator iter;
623 for (iter = products->begin(); iter != products->end(); ++iter)
627 (*iter)->GetTotalEnergy(), (*iter)->GetMomentum());
629 G4String particleName = (*iter)->GetDefinition()->GetParticleName();
631 if (
verboseLevel >= 2 && particleName.find(
"[",0) < particleName.size())
636 G4cout <<
" fragmentP = " <<particleName
649 if (fragmentT !=
nullptr)
653 products = theExcitationHandler->BreakItUp(*fragmentT);
659 G4ReactionProductVector::iterator iter;
660 for (iter = products->begin(); iter != products->end(); ++iter)
664 (*iter)->GetTotalEnergy(), (*iter)->GetMomentum());
666 G4String particleName = (*iter)->GetDefinition()->GetParticleName();
668 if (
verboseLevel >= 2 && particleName.find(
"[",0) < particleName.size())
673 G4cout <<
" fragmentT = " <<particleName
682 G4cout <<
"########################################"
683 <<
"########################################"
686 delete theAbrasionGeometry;
G4ThreeVector G4ParticleMomentum
G4ParticleDefinition * GetDefinition() const
G4LorentzVector Get4Momentum() const
G4double GetKineticEnergy() const
void Set4Momentum(const G4LorentzVector &momentum)
static G4ParticleTable * GetParticleTable()