56 const G4double piA[5] = {430., 36., 1.37, 2.0, 60.};
57 const G4double pAP[5] = {1.04, 1.26, 1.35, 0.94, 0.94};
58 const G4double pC0[5] = {12.7, 6.0, 6.84, 6.5, 8.0};
59 const G4double pC1[5] = {1.57, 1.6, 1.7, 1.23, 2.6};
60 const G4double pG0[5] = {2.55, 4.6, 3.7, 5.5, 4.6};
61 const G4double pG1[5] = {-0.23, -0.5, 0., 0., -2.};
63 const G4double beta_prime_pi = 0.0410;
69 G4cout <<
"G4ChargeExchangeXS::G4ChargeExchangeXS" <<
G4endl;
73 const G4String nam[5] = {
"pi0",
"eta",
"eta_prime",
"omega",
"f2(1270)"};
74 for (
G4int i=0; i<5; ++i) {
75 fPionSecPD[i] = table->FindParticle(nam[i]);
76 if (
nullptr == fPionSecPD[i]) {
78 ed <<
"### meson " << nam[i] <<
" is not found out in the particle table";
79 G4Exception(
"G4ChargeExchangeXS::G4ChargeExchangeXS()",
"had044",
88 outFile <<
"G4ChargeExchangeXS calculates charge exchange cross section for "
89 <<
"pi+, pi-, K+, K-, KL\n";
104 if (pE <= fEnergyLimit) {
return result; }
107 G4int pdg = part->GetPDGEncoding();
110 G4double tM = CLHEP::proton_mass_c2;
112 G4double lorentz_s = tM*tM + 2*tM*pE + pM*pM;
113 if (lorentz_s <= (tM + pM)*(tM + pM)) {
return result; }
115 const G4int Z = std::min(ZZ, ZMAXNUCLEARDATA);
119 G4cout <<
"### G4ChargeExchangeXS: " << part->GetParticleName()
120 <<
" Z=" << Z <<
" A=" <<
A <<
" Etot(GeV)=" << pE/CLHEP::GeV
121 <<
" s(GeV^2)=" << lorentz_s/(CLHEP::GeV*CLHEP::GeV) <<
G4endl;
125 const G4double inv1e7 = 0.1/(CLHEP::GeV*CLHEP::GeV);
126 const G4double fact = 1e-30*CLHEP::cm2;
127 const G4double pfact = 0.1/CLHEP::GeV;
141 G4double xf = g4calc->powZ(
A, -beta_prime_pi*logA);
143 for (
G4int i=0; i<5; ++i) {
144 G4double xg = std::max(1.0 + pG0[i] + pG1[i]*logX, 0.0);
145 G4double xc = std::max(pC0[i] + pC1[i]*logX, csmax);
146 G4double xs = z23*piA[i]*g4calc->powA(x, -pAP[i])*xf*xg/xc;
154 else if (pdg == 211) {
159 G4double xf = g4calc->powZ(
A, -beta_prime_pi*logA);
163 if (1 == Z) { n23 = ComputeDeuteronFraction(mat); }
165 for (
G4int i=0; i<5; ++i) {
166 G4double xg = std::max(1.0 + pG0[i] + pG1[i]*logX, 0.0);
167 G4double xc = std::max(pC0[i] + pC1[i]*logX, csmax);
168 G4double xs = n23*piA[i]*g4calc->powA(x, -pAP[i])*xf*xg/xc;
177 else if (pdg == -321) {
178 G4double p_momentum = std::sqrt(pE*pE - pM*pM)*pfact;
179 result = g4calc->Z23(Z)*g4calc->powA(p_momentum, -1.60)*kfact;
183 else if (pdg == 321) {
184 G4double p_momentum = std::sqrt(pE*pE - pM*pM)*pfact;
188 if (1 == Z) { n23 = ComputeDeuteronFraction(mat); }
189 result = n23*g4calc->powA(p_momentum, -1.60)*kfact;
193 else if (pdg == 130) {
195 const G4double p_momentum = std::sqrt(pE*pE - pM*pM)*pfact;
196 result = 0.5*(g4calc->Z23(Z) + g4calc->Z23(
A-Z))*
197 g4calc->powA(p_momentum, -1.60)*kfact;
201 G4cout <<
" Done for " << part->GetParticleName() <<
" Etot(GeV)=" << pE/CLHEP::GeV
202 <<
" res(mb)=" << result/CLHEP::millibarn <<
G4endl;
218 for (
G4int i=0; i<5; ++i) {
219 if (x <= fXSecPion[i]) {
228 else if (pdg == 321) {
238 else if (pdg == 130) {
252G4ChargeExchangeXS::ComputeDeuteronFraction(
const G4Material* mat)
255 if (1 == elm->GetZasInt()) {
257 const G4int nIso = (
G4int)elm->GetNumberOfIsotopes();
258 const G4double* abu = elm->GetRelativeAbundanceVector();
259 for (
G4int j = 0; j < nIso; ++j) {
260 auto const iso = elm->GetIsotope(j);
261 ab += (iso->GetN() - iso->GetZ())*abu[j];
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4double G4Log(G4double x)
G4GLOB_DLL std::ostream G4cout
G4bool IsElementApplicable(const G4DynamicParticle *, G4int Z, const G4Material *) final
const G4ParticleDefinition * SampleSecondaryType(const G4ParticleDefinition *, const G4int Z, const G4int A)
void CrossSectionDescription(std::ostream &) const final
G4double GetElementCrossSection(const G4DynamicParticle *, G4int Z, const G4Material *) final
G4ParticleDefinition * GetDefinition() const
G4double GetTotalEnergy() const
static G4KaonMinus * KaonMinus()
static G4KaonPlus * KaonPlus()
static G4KaonZeroLong * KaonZeroLong()
static G4KaonZeroShort * KaonZeroShort()
const G4ElementVector * GetElementVector() const
G4int GetPDGEncoding() const
static G4ParticleTable * GetParticleTable()
static G4Pow * GetInstance()