127{
128
130
131
132
133
141
143
146
147
148
152 pT += pP;
153 G4double E_cm = (pT.mag()-mT-pP.m())/MeV;
154
155
156
157
158
159
160 if (E_cm <= 0.0) { return 0.; }
161 if (E_cm <= (0.8 + 0.04*ZT)*xAP && !lowEnergyCheck) { return 0.; }
162
164
165
166
167
170
173
174 G4double Radius = (r_p + r_t)/fermi + 1.2*(AT13 + AP13)/E_cm13;
175
176 G4double B = 1.44 * ZP * ZT / Radius;
177
178
179
180
184
185 if ((AT==1 && ZT==1) || (AP==1 && ZP==1)) {
186 T1 = 23.0;
187 D = 1.85 + 0.16/(1+std::exp((500.0-E)/200.0));
188
189 } else if ((AT==1 && ZT==0) || (AP==1 && ZP==0)) {
190 T1 = 18.0;
191 D = 1.85 + 0.16/(1+std::exp((500.0-E)/200.0));
192
193 } else if ((AT==2 && ZT==1) || (AP==2 && ZP==1)) {
194 T1 = 23.0;
195 D = 1.65 + 0.1/(1+std::exp((500.0-E)/200.0));
196
197 } else if ((AT==3 && ZT==2) || (AP==3 && ZP==2)) {
198 T1 = 40.0;
199 D = 1.55;
200
201 } else if (AP==4 && ZP==2) {
202 if (AT==4 && ZT==2) {T1 = 40.0; G = 300.0;}
203 else if (ZT==4) {T1 = 25.0; G = 300.0;}
204 else if (ZT==7) {T1 = 40.0; G = 500.0;}
205 else if (ZT==13) {T1 = 25.0; G = 300.0;}
206 else if (ZT==26) {T1 = 40.0; G = 300.0;}
207 else {T1 = 40.0; G = 75.0;}
208 D = 2.77 - 8.0E-3*AT + 1.8E-5*AT*AT-0.8/(1.0+std::exp((250.0-E)/G));
209 }
210 else if (AT==4 && ZT==2) {
211 if (AP==4 && ZP==2) {T1 = 40.0; G = 300.0;}
212 else if (ZP==4) {T1 = 25.0; G = 300.0;}
213 else if (ZP==7) {T1 = 40.0; G = 500.0;}
214 else if (ZP==13) {T1 = 25.0; G = 300.0;}
215 else if (ZP==26) {T1 = 40.0; G = 300.0;}
216 else {T1 = 40.0; G = 75.0;}
217 D = 2.77 - 8.0E-3*AP + 1.8E-5*AP*AP-0.8/(1.0+std::exp((250.0-E)/G));
218 }
219
220
221
222
223
224 G4double C_E = D*(1.0-std::exp(-E/T1)) -
225 0.292*std::exp(-E/792.0)*std::cos(0.229*std::pow(E,0.453));
226
227 G4double S = AP13*AT13/(AP13 + AT13);
228
231 if (AT >= AP)
232 {
233 deltaE = 1.85*S + 0.16*S/E_cm13 - C_E + 0.91*(AT-2*ZT)*ZP/(xAT*xAP);
234 X1 = 2.83 - 3.1E-2*AT + 1.7E-4*AT*AT;
235 }
236 else
237 {
238 deltaE = 1.85*S + 0.16*S/E_cm13 - C_E + 0.91*(AP-2*ZP)*ZT/(xAT*xAP);
239 X1 = 2.83 - 3.1E-2*AP + 1.7E-4*AP*AP;
240 }
241 G4double S_L = 1.2 + 1.6*(1.0-std::exp(-E/15.0));
242
243 G4double X_m = 1.0 - X1*std::exp(-E/(X1*S_L));
244
245
246
247
248
249
251 if (AP==1 && ZP==1)
252 {
253 if (AT==2 && ZT==1) R_c = 13.5;
254 else if (AT==3 && ZT==2) R_c = 21.0;
255 else if (AT==4 && ZT==2) R_c = 27.0;
256 else if (ZT==3) R_c = 2.2;
257 }
258 else if (AT==1 && ZT==1)
259 {
260 if (AP==2 && ZP==1) R_c = 13.5;
261 else if (AP==3 && ZP==2) R_c = 21.0;
262 else if (AP==4 && ZP==2) R_c = 27.0;
263 else if (ZP==3) R_c = 2.2;
264 }
265 else if (AP==2 && ZP==1)
266 {
267 if (AT==2 && ZT==1) R_c = 13.5;
268 else if (AT==4 && ZT==2) R_c = 13.5;
269 else if (AT==12 && ZT==6) R_c = 6.0;
270 }
271 else if (AT==2 && ZT==1)
272 {
273 if (AP==2 && ZP==1) R_c = 13.5;
274 else if (AP==4 && ZP==2) R_c = 13.5;
275 else if (AP==12 && ZP==6) R_c = 6.0;
276 }
277 else if ((AP==4 && ZP==2 && (ZT==73 || ZT==79)) ||
278 (AT==4 && ZT==2 && (ZP==73 || ZP==79))) R_c = 0.6;
279
280
281
282
283
284
285
286 G4double xr = r_0*(AT13 + AP13 + deltaE);
287 result =
pi * xr * xr * (1.0 - R_c*B/E_cm) * X_m;
288
289 if (result < 0.0) {
290 result = 0.0;
291
292 } else if (!lowEnergyCheck && E < 6.0) {
296
297 G4bool savelowenergy = lowEnergyCheck;
301
302 if (resultp > result) { result = 0.0; }
303 }
304
305 return result;
306}
G4ParticleDefinition * GetDefinition() const
G4LorentzVector Get4Momentum() const
G4double GetKineticEnergy() const
void SetKineticEnergy(G4double aEnergy)
static G4NistManager * Instance()
G4double GetAtomicMassAmu(const G4String &symb) const
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4double GetPDGCharge() const
G4int GetBaryonNumber() const
static G4Pow * GetInstance()
void SetLowEnergyCheck(G4bool)
virtual G4double GetElementCrossSection(const G4DynamicParticle *theProjectile, G4int Z, const G4Material *mat=0)
G4double GetWilsonRMSRadius(G4double A)