101{
104 if (pE <= fEnergyLimit) { return result; }
105
108
109
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; }
114
115 const G4int Z = std::min(ZZ, ZMAXNUCLEARDATA);
117
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;
122 }
123
124
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;
130
131
132
133
134
135
136 if (pdg == -211) {
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;
147 sum += xs;
148 fXSecPion[i] = sum;
149 }
150 result = sum*fact;
151 }
152
153
154 else if (pdg == 211) {
159 G4double xf = g4calc->powZ(
A, -beta_prime_pi*logA);
160
161
162
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;
169 sum += xs;
170 fXSecPion[i] = sum;
171 }
172 result = sum*fact;
173 }
174
175
176
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;
180 }
181
182
183 else if (pdg == 321) {
184 G4double p_momentum = std::sqrt(pE*pE - pM*pM)*pfact;
186
187
188 if (1 == Z) { n23 = ComputeDeuteronFraction(mat); }
189 result = n23*g4calc->powA(p_momentum, -1.60)*kfact;
190 }
191
192
193 else if (pdg == 130) {
194
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;
198 }
199 result *= fFactor;
201 G4cout <<
" Done for " << part->GetParticleName() <<
" Etot(GeV)=" << pE/CLHEP::GeV
202 <<
" res(mb)=" << result/CLHEP::millibarn <<
G4endl;
203 }
204 return result;
205}
G4double G4Log(G4double x)
G4ParticleDefinition * GetDefinition() const
G4double GetTotalEnergy() const
G4int GetPDGEncoding() const