62 constexpr G4int maxN = 1000;
63 constexpr G4double emin = 2*136.9*CLHEP::MeV;
68 fXSection(ptr), fXSWeightFactor(1.0)
70 lowEnergyLimit = 1.*CLHEP::MeV;
74 if (
nullptr != fXSection) {
75 fXSWeightFactor = 1.0/fXSection->GetCrossSectionFactor();
94 if (ekin <= lowEnergyLimit) {
99 G4int projPDG = part->GetPDGEncoding();
103 if (1 == Z && (211 == projPDG || 321 == projPDG)) {
A = 2; }
106 G4cout <<
"G4ChargeExchange for " << part->GetParticleName()
107 <<
" PDGcode= " << projPDG <<
" on nucleus Z= " << Z
108 <<
" A= " <<
A <<
" N= " <<
A - Z
117 fXSection->SampleSecondaryType(part, Z,
A);
121 G4bool isShortLived = (pdg == 223 || pdg == 225);
124 if (projPDG == -211) { --Z; }
125 else if (projPDG == 211) { ++Z; }
126 else if (projPDG == -321) { --Z; }
127 else if (projPDG == 321) { ++Z; }
128 else if (projPDG == 130) {
142 else if (Z == 2 &&
A == 3) { theRecoil =
G4He3::He3(); }
144 else if (nist->GetIsotopeAbundance(Z,
A) > 0.0) {
152 G4double mass3 = (
nullptr == theRecoil) ?
156 !SampleMass(mass2, theSecondary->
GetPDGWidth(), etot - mass3)) {
161 if (etot <= mass2 + mass3) {
172 G4double e2 = ss + mass2*mass2 - mass3*mass3;
173 G4double tmax = e2*e2/ss - 4*mass2*mass2;
180 if (cost > 1.0) { cost = 1.0; }
181 else if(cost < -1.0) { cost = -1.0; }
183 G4double sint = std::sqrt((1.0-cost)*(1.0+cost));
186 G4cout <<
" t= " << t <<
" tmax(GeV^2)= " << tmax/(GeV*GeV)
187 <<
" cos(t)=" << cost <<
" sin(t)=" << sint <<
G4endl;
189 G4double momentumCMS = 0.5*std::sqrt(tmax);
191 momentumCMS*sint*std::sin(phi),
193 std::sqrt(momentumCMS*momentumCMS + mass2*mass2));
197 if (lv2.
e() < mass2) {
201 if (lv.
e() < mass3) {
214 auto products = channel->
DecayIt(mass2);
216 G4int N = products->entries();
217 for (
G4int i=0; i<
N; ++i) {
218 auto p = (*products)[i];
219 auto lvp = p->Get4Momentum();
221 p->Set4Momentum(lvp);
228 if (
nullptr != theRecoil) {
234 auto products = fHandler->BreakItUp(frag);
235 for (
auto & prod : *products) {
251 aa = g4pow->
powZ(
A, 1.63);
252 bb = 14.5*g4pow->
powZ(
A, 0.66);
253 cc = 1.4*g4pow->
powZ(
A, 0.33);
256 aa = g4pow->
powZ(
A, 1.33);
257 bb = 60.*g4pow->
powZ(
A, 0.33);
258 cc = 0.4*g4pow->
powZ(
A, 0.40);
268 for (
G4int i=0; i<maxN; ++i) {
270 if (t <= tmax) {
return t; }
278 const G4double e1 = std::max(
M - 4*G, emin);
279 const G4double e2 = std::min(
M + 4*G, elim) - e1;
280 if (e2 <= 0.0) {
return false; }
285 for (
G4int i=0; i<maxN; ++i) {
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
G4double G4Log(G4double x)
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
Hep3Vector boostVector() const
HepLorentzVector & boost(double, double, double)
G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &targetNucleus) override
G4ChargeExchange(G4ChargeExchangeXS *)
G4double SampleT(const G4ParticleDefinition *theSec, const G4int A, const G4double tmax) const
~G4ChargeExchange() override
G4VDecayChannel * SelectADecayChannel(G4double parentMass=-1.)
static G4Deuteron * Deuteron()
const G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
const G4LorentzVector & Get4Momentum() const
G4HadFinalState theParticleChange
G4HadronicInteraction(const G4String &modelName="HadronicModel")
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
static G4Neutron * Neutron()
static G4NistManager * Instance()
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4double GetPDGMass() const
G4int GetPDGEncoding() const
G4double GetPDGWidth() const
G4double GetPDGCharge() const
G4DecayTable * GetDecayTable() const
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
static G4int GetModelID(const G4int modelIndex)
static G4Pow * GetInstance()
G4double powZ(G4int Z, G4double y) const
static G4Proton * Proton()
static G4Triton * Triton()
virtual G4DecayProducts * DecayIt(G4double parentMass=-1.0)=0