34#define INCLXX_IN_GEANT4_MODE 1
62 thePreCompoundModel(aPreCompound),
65 complainedAboutBackupModel(false),
66 complainedAboutPreCompound(false),
68 theINCLXXLevelDensity(NULL),
69 theINCLXXFissionProbability(NULL)
71 if(!thePreCompoundModel) {
79 if(std::getenv(
"G4INCLXX_NO_DE_EXCITATION")) {
80 G4String message =
"de-excitation is completely disabled!";
93 if(theFissionChannelCast) {
99 theInterfaceStore->
EmitBigWarning(
"INCL++/G4ExcitationHandler uses its own level-density parameter for fission");
101 theInterfaceStore->
EmitBigWarning(
"INCL++/G4ExcitationHandler could not use its own level-density parameter for fission");
107 if(std::getenv(
"G4INCLXX_DUMP_REMNANT"))
108 dumpRemnantInfo =
true;
110 dumpRemnantInfo =
false;
118 delete theINCLXXLevelDensity;
119 delete theINCLXXFissionProbability;
131 std::stringstream ss;
132 ss <<
"the model does not know how to handle a collision between a "
154 if(pA > theMaxProjMassINCL)
156 else if(tA > theMaxProjMassINCL)
173 if((isIonTrack && (trackZ<=0 || trackA<=trackZ)) || (nucleusA>1 && (nucleusZ<=0 || nucleusA<=nucleusZ))) {
182 if(trackA<=1 && nucleusA<=1) {
183 return theBackupModelNucleon->
ApplyYourself(aTrack, theNucleus);
189 if(trackA > theMaxProjMassINCL && nucleusA > theMaxProjMassINCL) {
190 if(!complainedAboutBackupModel) {
191 complainedAboutBackupModel =
true;
192 std::stringstream ss;
193 ss <<
"INCL++ refuses to handle reactions between nuclei with A>"
194 << theMaxProjMassINCL
195 <<
". A backup model ("
197 <<
") will be used instead.";
207 && trackKinE < cascadeMinEnergyPerNucleon) {
208 if(!complainedAboutPreCompound) {
209 complainedAboutPreCompound =
true;
210 std::stringstream ss;
211 ss <<
"INCL++ refuses to handle nucleon-induced reactions below "
212 << cascadeMinEnergyPerNucleon / MeV
213 <<
" MeV. A PreCoumpound model ("
215 <<
") will be used instead.";
218 return thePreCompoundModel->
ApplyYourself(aTrack, theNucleus);
224 const G4double theTrackEnergy = trackKinE + theTrackMass;
225 const G4double theTrackMomentumAbs2 = theTrackEnergy*theTrackEnergy - theTrackMass*theTrackMass;
226 const G4double theTrackMomentumAbs = ((theTrackMomentumAbs2>0.0) ? std::sqrt(theTrackMomentumAbs2) : 0.0);
231 fourMomentumIn.
setE(theTrackEnergy + theNucleusMass);
232 fourMomentumIn.
setVect(theTrackMomentum);
235 const G4bool inverseKinematics = AccurateProjectile(aTrack, theNucleus);
241 G4Nucleus *theTargetNucleus = &theNucleus;
242 if(inverseKinematics) {
246 if(oldProjectileDef != 0 && oldTargetDef != 0) {
250 if(newTargetA > 0 && newTargetZ > 0) {
252 theTargetNucleus =
new G4Nucleus(newTargetA, newTargetZ);
255 G4DynamicParticle swappedProjectileParticle(oldTargetDef, (*toInverseKinematics) * theProjectile4Momentum);
258 G4String message =
"badly defined target after swapping. Falling back to normal (non-swapped) mode.";
263 G4String message =
"oldProjectileDef or oldTargetDef was null";
299 std::list<G4Fragment> remnants;
301 const G4int maxTries = 200;
309 const G4double kineticEnergy = toINCLKineticEnergy(*aProjectileTrack);
321 if(inverseKinematics) {
341 momentum *= toLabFrame;
343 if(inverseKinematics) {
344 momentum *= *toDirectKinematics;
350 fourMomentumOut += momentum;
354 G4String message =
"the model produced a particle that couldn't be converted to Geant4 particle.";
368 eventInfo.
jxRem[i]*hbar_Planck,
369 eventInfo.
jyRem[i]*hbar_Planck,
370 eventInfo.
jzRem[i]*hbar_Planck
374 const G4double scaling = remnant4MomentumScaling(nuclearMass,
379 if(std::abs(scaling - 1.0) > 0.01) {
380 std::stringstream ss;
381 ss <<
"momentum scaling = " << scaling
382 <<
"\n Lorentz vector = " << fourMomentum
383 <<
")\n A = " <<
A <<
", Z = " << Z
384 <<
"\n E* = " << excitationE <<
", nuclearMass = " << nuclearMass
385 <<
"\n remnant i=" << i <<
", nRemnants=" << eventInfo.
nRemnants
389 <<
", in " << (inverseKinematics ?
"inverse" :
"direct") <<
" kinematics.";
394 fourMomentum *= toLabFrame;
397 if(inverseKinematics) {
398 fourMomentum *= *toDirectKinematics;
402 fourMomentumOut += fourMomentum;
405 if(dumpRemnantInfo) {
406 G4cerr <<
"G4INCLXX_DUMP_REMNANT: " << remnant <<
" spin: " << spin <<
G4endl;
408 remnants.push_back(remnant);
412 const G4LorentzVector violation4Momentum = fourMomentumOut - fourMomentumIn;
413 const G4double energyViolation = std::abs(violation4Momentum.
e());
414 const G4double momentumViolation = violation4Momentum.
rho();
416 std::stringstream ss;
417 ss <<
"energy conservation violated by " << energyViolation/MeV <<
" MeV in "
420 <<
" inelastic reaction, in " << (inverseKinematics ?
"inverse" :
"direct") <<
" kinematics. Will resample.";
424 for(
G4int j=0; j<nSecondaries; ++j)
430 std::stringstream ss;
431 ss <<
"momentum conservation violated by " << momentumViolation/MeV <<
" MeV in "
434 <<
" inelastic reaction, in " << (inverseKinematics ?
"inverse" :
"direct") <<
" kinematics. Will resample.";
438 for(
G4int j=0; j<nSecondaries; ++j)
446 }
while(!eventIsOK && nTries < maxTries);
449 if(inverseKinematics) {
450 delete aProjectileTrack;
451 delete theTargetNucleus;
452 delete toInverseKinematics;
453 delete toDirectKinematics;
457 std::stringstream ss;
458 ss <<
"maximum number of tries exceeded for the proposed "
460 <<
" + " << theIonTable->
GetIonName(nucleusZ, nucleusA, 0)
461 <<
" inelastic reaction, in " << (inverseKinematics ?
"inverse" :
"direct") <<
" kinematics.";
472 for(std::list<G4Fragment>::iterator i = remnants.begin();
473 i != remnants.end(); ++i) {
476 for(G4ReactionProductVector::iterator fragment = deExcitationResult->begin();
477 fragment != deExcitationResult->end(); ++fragment) {
485 for(G4ReactionProductVector::iterator fragment = deExcitationResult->begin();
486 fragment != deExcitationResult->end(); ++fragment) {
489 deExcitationResult->clear();
490 delete deExcitationResult;
496 if((theTally = theInterfaceStore->
GetTally()))
497 theTally->
Tally(aTrack, theNucleus, theResult);
563 else if(A > 0 && Z > 0 && A > Z) {
564 return theIonTable->
GetIon(Z, A, 0);
589 const G4double p2 = px*px + py*py + pz*pz;
591 const G4double pnew2 = kineticE*kineticE + 2.0*kineticE*mass;
592 return std::sqrt(pnew2)/std::sqrt(p2);
600 <<
"The Li�ge Intranuclear Cascade (INCL++) is a model for reactions induced\n"
601 <<
"by nucleons, pions and light ion on any nucleus. The reaction is\n"
602 <<
"described as an avalanche of binary nucleon-nucleon collisions, which can\n"
603 <<
"lead to the emission of energetic particles and to the formation of an\n"
604 <<
"excited thermalised nucleus (remnant). The de-excitation of the remnant is\n"
605 <<
"outside the scope of INCL++ and is typically described by another model.\n\n"
606 <<
"INCL++ has been reasonably well tested for nucleon (~50 MeV to ~15 GeV),\n"
607 <<
"pion (idem) and light-ion projectiles (up to A=18, ~10A MeV to 1A GeV).\n"
608 <<
"Most tests involved target nuclei close to the stability valley, with\n"
609 <<
"numbers between 4 and 250.\n\n"
610 <<
"Reference: D. Mancusi et al., Phys. Rev. C90 (2014) 054602\n\n";
double A(double temperature)
Header file for the G4INCLXXInterfaceStore class.
CLHEP::HepLorentzRotation G4LorentzRotation
std::vector< G4ReactionProduct * > G4ReactionProductVector
G4GLOB_DLL std::ostream G4cerr
HepLorentzRotation inverse() const
Hep3Vector boostVector() const
void setVect(const Hep3Vector &)
HepRotation inverse() const
HepRotation & rotateZ(double delta)
HepRotation & rotateY(double delta)
void SetEmissionStrategy(G4VEmissionProbability *aFissionProb)
void SetLevelDensityParameter(G4VLevelDensityParameter *aLevelDensity)
static G4Deuteron * Deuteron()
G4LorentzVector Get4Momentum() const
void Set4Momentum(const G4LorentzVector &momentum)
G4VEvaporation * GetEvaporation()
Revised level-density parameter for fission after INCL++.
void SetFissionLevelDensityParameter(G4VLevelDensityParameter *aLevelDensity)
void SetAngularMomentum(const G4ThreeVector &)
static G4GenericIon * GenericIon()
void SetStatusChange(G4HadFinalStateStatus aS)
void AddSecondary(G4DynamicParticle *aP, G4int mod=-1)
std::size_t GetNumberOfSecondaries() const
void SetEnergyChange(G4double anEnergy)
G4HadSecondary * GetSecondary(size_t i)
void SetMomentumChange(const G4ThreeVector &aV)
const G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
const G4LorentzVector & Get4Momentum() const
G4DynamicParticle * GetParticle()
G4HadronicInteraction * FindModel(const G4String &name)
static G4HadronicInteractionRegistry * Instance()
virtual G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &targetNucleus)
const G4String & GetModelName() const
Singleton class for configuring the INCL++ Geant4 interface.
void EmitWarning(const G4String &message)
Emit a warning to G4cout.
static G4INCLXXInterfaceStore * GetInstance()
Get the singleton instance.
G4int GetMaxProjMassINCL() const
Getter for theMaxProjMassINCL.
G4INCL::INCL * GetINCLModel()
Get the cached INCL model engine.
G4double GetConservationTolerance() const
Getter for conservationTolerance.
void EmitBigWarning(const G4String &message) const
Emit a BIG warning to G4cout.
G4double GetCascadeMinEnergyPerNucleon() const
Getter for cascadeMinEnergyPerNucleon.
G4INCLXXVInterfaceTally * GetTally() const
Getter for the interface tally.
G4bool GetAccurateProjectile() const
Getter for accurateProjectile.
virtual void ModelDescription(std::ostream &outFile) const
G4ReactionProductVector * Propagate(G4KineticTrackVector *theSecondaries, G4V3DNucleus *theNucleus)
G4INCLXXInterface(G4VPreCompoundModel *const aPreCompound=0)
G4String const & GetDeExcitationModelName() const
G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &theNucleus)
virtual void Tally(G4HadProjectile const &aTrack, G4Nucleus const &theNucleus, G4HadFinalState const &result)=0
const EventInfo & processEvent()
const G4String & GetIonName(G4int Z, G4int A, G4int lvl=0) const
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
G4double GetIonMass(G4int Z, G4int A, G4int L=0, G4int lvl=0) const
static G4KaonMinus * KaonMinus()
static G4KaonPlus * KaonPlus()
static G4KaonZeroLong * KaonZeroLong()
static G4KaonZeroShort * KaonZeroShort()
static G4Lambda * Lambda()
static G4Neutron * NeutronDefinition()
static G4Neutron * Neutron()
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4int GetAtomicNumber() const
const G4String & GetParticleType() const
G4double GetPDGMass() const
G4int GetAtomicMass() const
G4double GetPDGCharge() const
G4int GetBaryonNumber() const
const G4String & GetParticleName() const
static G4PionMinus * PionMinus()
static G4PionPlus * PionPlus()
static G4PionZero * PionZero()
static G4Proton * ProtonDefinition()
static G4Proton * Proton()
static G4SigmaMinus * SigmaMinus()
static G4SigmaPlus * SigmaPlus()
static G4SigmaZero * SigmaZero()
static G4Triton * Triton()
G4VEvaporationChannel * GetFissionChannel()
G4VPreCompoundModel * theDeExcitation
virtual G4ReactionProductVector * DeExcite(G4Fragment &aFragment)=0
G4ExcitationHandler * GetExcitationHandler() const
G4double energy(const ThreeVector &p, const G4double m)
Short_t nRemnants
Number of remnants.
Bool_t transparent
True if the event is transparent.
Short_t A[maxSizeParticles]
Particle mass number.
Float_t EKinRem[maxSizeRemnants]
Remnant kinetic energy [MeV].
Float_t jzRem[maxSizeRemnants]
Remnant angular momentum, z component [ ].
Float_t EStarRem[maxSizeRemnants]
Remnant excitation energy [MeV].
Short_t Z[maxSizeParticles]
Particle charge number.
Float_t EKin[maxSizeParticles]
Particle kinetic energy [MeV].
Short_t nParticles
Number of particles in the final state.
Float_t jxRem[maxSizeRemnants]
Remnant angular momentum, x component [ ].
Float_t px[maxSizeParticles]
Particle momentum, x component [MeV/c].
Float_t pxRem[maxSizeRemnants]
Remnant momentum, x component [MeV/c].
Float_t pyRem[maxSizeRemnants]
Remnant momentum, y component [MeV/c].
Float_t pzRem[maxSizeRemnants]
Remnant momentum, z component [MeV/c].
Float_t pz[maxSizeParticles]
Particle momentum, z component [MeV/c].
Int_t PDGCode[maxSizeParticles]
PDG numbering of the particles.
Float_t jyRem[maxSizeRemnants]
Remnant angular momentum, y component [ ].
Float_t py[maxSizeParticles]
Particle momentum, y component [MeV/c].
Short_t ARem[maxSizeRemnants]
Remnant mass number.
Short_t ZRem[maxSizeRemnants]
Remnant charge number.