40: fUpperLimit( 10000 * GeV ),
41 fLowerLimit( 0.03 * MeV ),
42 fTotalXsc(0.0), fElasticXsc(0.0), fInelasticXsc(0.0), fHadronNucleonXsc(0.0)
84 outFile <<
"G4HadronNucleonXsc calculates the total, inelastic and elastic\n"
85 <<
"hadron-nucleon cross sections using several different\n"
86 <<
"parameterizations within the Glauber-Gribov approach. It is\n"
87 <<
"valid for all incident gammas and long-lived hadrons at\n"
88 <<
"energies above 30 keV. This is a cross section component which\n"
89 <<
"is to be used to build a cross section data set.\n";
108 G4bool applicable =
false;
114 if ( ( kineticEnergy >= fLowerLimit &&
116 ( theParticle == theAProton ||
117 theParticle == theGamma ||
118 theParticle == theKPlus ||
119 theParticle == theKMinus ||
120 theParticle == theSMinus) ) ||
122 ( kineticEnergy >= 0.1*fLowerLimit &&
124 ( theParticle == theProton ||
125 theParticle == theNeutron ||
126 theParticle == thePiPlus ||
127 theParticle == thePiMinus ) ) ) applicable =
true;
154 proj_momentum /= GeV;
158 G4bool pORn = (nucleon == theProton || nucleon == theNeutron );
161 if(theParticle == theGamma && pORn )
163 xsection = (0.0677*std::pow(sMand,0.0808) + 0.129*std::pow(sMand,-0.4525));
165 else if(theParticle == theNeutron && pORn )
167 xsection = (21.70*std::pow(sMand,0.0808) + 56.08*std::pow(sMand,-0.4525));
169 else if(theParticle == theProton && pORn )
171 xsection = (21.70*std::pow(sMand,0.0808) + 56.08*std::pow(sMand,-0.4525));
176 else if(theParticle == theAProton && pORn )
178 xsection = ( 21.70*std::pow(sMand,0.0808) + 98.39*std::pow(sMand,-0.4525));
180 else if(theParticle == thePiPlus && pORn )
182 xsection = (13.63*std::pow(sMand,0.0808) + 27.56*std::pow(sMand,-0.4525));
184 else if(theParticle == thePiMinus && pORn )
187 xsection = (13.63*std::pow(sMand,0.0808) + 36.02*std::pow(sMand,-0.4525));
189 else if(theParticle == theKPlus && pORn )
191 xsection = (11.82*std::pow(sMand,0.0808) + 8.15*std::pow(sMand,-0.4525));
193 else if(theParticle == theKMinus && pORn )
195 xsection = (11.82*std::pow(sMand,0.0808) + 26.36*std::pow(sMand,-0.4525));
199 xsection = (21.70*std::pow(sMand,0.0808) + 56.08*std::pow(sMand,-0.4525));
201 xsection *= millibarn;
203 fTotalXsc = xsection;
204 fInelasticXsc = 0.83*xsection;
205 fElasticXsc = fTotalXsc - fInelasticXsc;
206 if (fElasticXsc < 0.)fElasticXsc = 0.;
223 G4int Zt=1, Nt=1, At=1;
243 G4bool pORn = (nucleon == theProton || nucleon == theNeutron );
244 G4bool proton = (nucleon == theProton);
247 if(theParticle == theNeutron)
251 xsection = Zt*( 35.80 + B*std::pow(std::log(sMand/s0),2.)
252 + 40.15*std::pow(sMand,-eta1) - 30.*std::pow(sMand,-eta2));
256 xsection = Nt*( 35.45 + B*std::pow(std::log(sMand/s0),2.)
257 + 42.53*std::pow(sMand,-eta1) - 33.34*std::pow(sMand,-eta2));
260 else if(theParticle == theProton)
264 xsection = Zt*( 35.45 + B*std::pow(std::log(sMand/s0),2.)
265 + 42.53*std::pow(sMand,-eta1) - 33.34*std::pow(sMand,-eta2));
269 xsection = Nt*( 35.80 + B*std::pow(std::log(sMand/s0),2.)
270 + 40.15*std::pow(sMand,-eta1) - 30.*std::pow(sMand,-eta2));
273 else if(theParticle == theAProton)
277 xsection = Zt*( 35.45 + B*std::pow(std::log(sMand/s0),2.)
278 + 42.53*std::pow(sMand,-eta1) + 33.34*std::pow(sMand,-eta2));
282 xsection = Nt*( 35.80 + B*std::pow(std::log(sMand/s0),2.)
283 + 40.15*std::pow(sMand,-eta1) + 30.*std::pow(sMand,-eta2));
286 else if(theParticle == thePiPlus && pORn )
288 xsection = At*( 20.86 + B*std::pow(std::log(sMand/s0),2.)
289 + 19.24*std::pow(sMand,-eta1) - 6.03*std::pow(sMand,-eta2));
291 else if(theParticle == thePiMinus && pORn )
293 xsection = At*( 20.86 + B*std::pow(std::log(sMand/s0),2.)
294 + 19.24*std::pow(sMand,-eta1) + 6.03*std::pow(sMand,-eta2));
296 else if(theParticle == theKPlus)
300 xsection = Zt*( 17.91 + B*std::pow(std::log(sMand/s0),2.)
301 + 7.14*std::pow(sMand,-eta1) - 13.45*std::pow(sMand,-eta2));
305 xsection = Nt*( 17.87 + B*std::pow(std::log(sMand/s0),2.)
306 + 5.17*std::pow(sMand,-eta1) - 7.23*std::pow(sMand,-eta2));
309 else if(theParticle == theKMinus)
313 xsection = Zt*( 17.91 + B*std::pow(std::log(sMand/s0),2.)
314 + 7.14*std::pow(sMand,-eta1) + 13.45*std::pow(sMand,-eta2));
318 xsection = Nt*( 17.87 + B*std::pow(std::log(sMand/s0),2.)
319 + 5.17*std::pow(sMand,-eta1) + 7.23*std::pow(sMand,-eta2) );
322 else if(theParticle == theSMinus && pORn )
324 xsection = At*( 35.20 + B*std::pow(std::log(sMand/s0),2.)
325 - 199.*std::pow(sMand,-eta1) + 264.*std::pow(sMand,-eta2) );
327 else if(theParticle == theGamma && pORn )
329 xsection = At*( 0.0 + B*std::pow(std::log(sMand/s0),2.)
330 + 0.032*std::pow(sMand,-eta1) - 0.0*std::pow(sMand,-eta2) );
337 xsection = Zt*( 35.45 + B*std::pow(std::log(sMand/s0),2.)
338 + 42.53*std::pow(sMand,-eta1) - 33.34*std::pow(sMand,-eta2) );
342 xsection = Nt*( 35.80 + B*std::pow(std::log(sMand/s0),2.)
343 + 40.15*std::pow(sMand,-eta1) - 30.*std::pow(sMand,-eta2));
346 xsection *= millibarn;
348 fTotalXsc = xsection;
349 fInelasticXsc = 0.75*xsection;
350 fElasticXsc = fTotalXsc - fInelasticXsc;
351 if (fElasticXsc < 0.) fElasticXsc = 0.;
399 G4bool pORn = (nucleon == theProton || nucleon == theNeutron );
400 G4bool proton = (nucleon == theProton);
403 if( theParticle == theNeutron && pORn )
409 fElasticXsc = 6.5 + 0.308*std::pow(std::log(sMand/400.),1.65) + 9.19*std::pow(sMand,-0.458);
411 fTotalXsc = xsection;
414 else if( pLab >= 100.)
417 A0 = 100. - B0*std::log(3.0e7);
419 xsection = A0 + B0*std::log(pE) - 11
421 + 103*std::pow(sMand,-0.165);
423 fElasticXsc = 5.53 + 0.308*std::pow(std::log(sMand/28.9),1.1) + 9.19*std::pow(sMand,-0.458);
425 fTotalXsc = xsection;
427 else if( pLab >= 10.)
430 A0 = 100. - B0*std::log(3.0e7);
432 xsection = A0 + B0*std::log(pE) - 11
433 + 103*std::pow(2*0.93827*pE + pM*pM+
434 0.93827*0.93827,-0.165);
435 fTotalXsc = xsection;
436 fElasticXsc = 6 + 20/( (logP-0.182)*(logP-0.182) + 1.0 );
444 hnXsc = 23 + 50*( std::pow( std::log(0.73/pLab), 3.5 ) );
447 else if( pLab < 0.73 )
449 hnXsc = 23 + 50*( std::pow( std::log(0.73/pLab), 3.5 ) );
452 else if( pLab < 1.05 )
454 hnXsc = 23 + 40*(std::log(pLab/0.73))*
455 (std::log(pLab/0.73));
456 fElasticXsc = 23 + 20*(std::log(pLab/0.73))*
457 (std::log(pLab/0.73));
461 hnXsc = 39.0+75*(pLab - 1.2)/(std::pow(pLab,3.0) + 0.15);
463 fElasticXsc = 6 + 20/( (logP-0.182)*(logP-0.182) + 1.0 );
471 hpXsc = 4100+30*std::pow(std::log(1.3/pLab),3.6);
474 else if( pLab < 0.8 )
476 hpXsc = 33+30*std::pow(std::log(pLab/1.3),4.0);
479 else if( pLab < 1.05 )
481 hpXsc = 33+30*std::pow(std::log(pLab/0.95),2.0);
482 fElasticXsc = 6 + 52/( std::log(0.511/pLab)*std::log(0.511/pLab) + 1.6 );
484 else if( pLab < 1.4 )
486 hpXsc = 33+30*std::pow(std::log(pLab/0.95),2.0);
487 fElasticXsc = 6 + 52/( std::log(0.511/pLab)*std::log(0.511/pLab) + 1.6 );
491 hpXsc = 33.3 + 20.8*(std::pow(pLab,2.0) - 1.35)/(std::pow(pLab,2.50) + 0.95);
493 fElasticXsc = 6 + 20/( (logP-0.182)*(logP-0.182) + 1.0 );
499 else if( theParticle == theProton && pORn )
505 fElasticXsc = 6.5 + 0.308*std::pow(std::log(sMand/400.),1.65) + 9.19*std::pow(sMand,-0.458);
507 fTotalXsc = xsection;
509 else if( pLab >= 100.)
512 A0 = 100. - B0*std::log(3.0e7);
514 xsection = A0 + B0*std::log(pE) - 11 + 103*std::pow(sMand,-0.165);
516 fElasticXsc = 5.53 + 0.308*std::pow(std::log(sMand/28.9),1.1) + 9.19*std::pow(sMand,-0.458);
518 fTotalXsc = xsection;
520 else if( pLab >= 10.)
523 A0 = 100. - B0*std::log(3.0e7);
525 xsection = A0 + B0*std::log(pE) - 11 + 103*std::pow(sMand,-0.165);
527 fElasticXsc = 6 + 20/( (logP-0.182)*(logP-0.182) + 1.0 );
529 fTotalXsc = xsection;
539 hpXsc = 23 + 50*( std::pow( std::log(0.73/pLab), 3.5 ) );
542 else if( pLab < 0.73 )
544 hpXsc = 23 + 50*( std::pow( std::log(0.73/pLab), 3.5 ) );
547 else if( pLab < 1.05 )
549 hpXsc = 23 + 40*(std::log(pLab/0.73))*
550 (std::log(pLab/0.73));
551 fElasticXsc = 23 + 20*(std::log(pLab/0.73))*
552 (std::log(pLab/0.73));
556 hpXsc = 39.0+75*(pLab - 1.2)/(std::pow(pLab,3.0) + 0.15);
558 fElasticXsc = 6 + 20/( (logP-0.182)*(logP-0.182) + 1.0 );
566 hnXsc = 4100+30*std::pow(std::log(1.3/pLab),3.6);
569 else if( pLab < 0.8 )
571 hnXsc = 33+30*std::pow(std::log(pLab/1.3),4.0);
574 else if( pLab < 1.05 )
576 hnXsc = 33+30*std::pow(std::log(pLab/0.95),2.0);
577 fElasticXsc = 6 + 52/( std::log(0.511/pLab)*std::log(0.511/pLab) + 1.6 );
579 else if( pLab < 1.4 )
581 hnXsc = 33+30*std::pow(std::log(pLab/0.95),2.0);
582 fElasticXsc = 6 + 52/( std::log(0.511/pLab)*std::log(0.511/pLab) + 1.6 );
586 hnXsc = 33.3 + 20.8*(std::pow(pLab,2.0) - 1.35)/(std::pow(pLab,2.50) + 0.95);
588 fElasticXsc = 6 + 20/( (logP-0.182)*(logP-0.182) + 1.0 );
594 else if( theParticle == theAProton && pORn )
598 xsection = 35.45 + B*std::pow(std::log(sMand/s0),2.)
599 + 42.53*std::pow(sMand,-eta1) + 33.34*std::pow(sMand,-eta2);
603 xsection = 35.80 + B*std::pow(std::log(sMand/s0),2.)
604 + 40.15*std::pow(sMand,-eta1) + 30.*std::pow(sMand,-eta2);
606 fTotalXsc = xsection;
608 else if( theParticle == thePiPlus && pORn )
614 hpXsc = 10./((logP + 1.273)*(logP + 1.273) + 0.05);
617 else if( pLab < 0.4 )
619 hpXsc = 14./( (logP + 1.273)*(logP + 1.273) + 0.07);
622 else if( pLab < 0.68 )
624 hpXsc = 14./( (logP + 1.273)*(logP + 1.273) + 0.07);
627 else if( pLab < 0.85 )
629 G4double Ex4 = 88*(std::log(pLab/0.77))*(std::log(pLab/0.77));
631 fElasticXsc = hpXsc*std::exp(-3.*(pLab - 0.68));
633 else if( pLab < 1.15 )
635 G4double Ex4 = 88*(std::log(pLab/0.77))*(std::log(pLab/0.77));
638 fElasticXsc = 6.0 + 1.4/(( pLab - 1.4)*( pLab - 1.4) + 0.1);
642 G4double Ex1 = 3.2*std::exp(-(pLab-2.55)*(pLab-2.55)/0.55/0.55);
643 G4double Ex2 = 12*std::exp(-(pLab-1.47)*(pLab-1.47)/0.225/0.225);
644 hpXsc = Ex1 + Ex2 + 27.5;
645 fElasticXsc = 6.0 + 1.4/(( pLab - 1.4)*( pLab - 1.4) + 0.1);
647 else if( pLab < 2.0 )
649 G4double Ex1 = 3.2*std::exp(-(pLab-2.55)*(pLab-2.55)/0.55/0.55);
650 G4double Ex2 = 12*std::exp(-(pLab-1.47)*(pLab-1.47)/0.225/0.225);
651 hpXsc = Ex1 + Ex2 + 27.5;
652 fElasticXsc = 3.0 + 1.36/( (logP - 0.336)*(logP - 0.336) + 0.08);
654 else if( pLab < 3.5 )
656 G4double Ex1 = 3.2*std::exp(-(pLab-2.55)*(pLab-2.55)/0.55/0.55);
657 G4double Ex2 = 12*std::exp(-(pLab-1.47)*(pLab-1.47)/0.225/0.225);
658 hpXsc = Ex1 + Ex2 + 27.5;
659 fElasticXsc = 3.0 + 6.20/( (logP - 0.336)*(logP - 0.336) + 0.8);
661 else if( pLab < 200. )
663 hpXsc = 10.6 + 2.*std::log(pE) + 25*std::pow(pE, -0.43 );
665 fElasticXsc = 3.0 + 6.20/( (logP - 0.336)*(logP - 0.336) + 0.8);
670 fElasticXsc = 3.0 + 6.20/( (logP - 0.336)*(logP - 0.336) + 0.8);
678 hnXsc = 0.288/((pLab - 0.28)*(pLab - 0.28) + 0.004);
679 fElasticXsc = 1.8/((logP + 1.273)*(logP + 1.273) + 0.07);
681 else if( pLab < 0.395676 )
683 hnXsc = 0.648/((pLab - 0.28)*(pLab - 0.28) + 0.009);
684 fElasticXsc = 0.257/((pLab - 0.28)*(pLab - 0.28) + 0.01);
686 else if( pLab < 0.5 )
688 hnXsc = 26 + 110*(std::log(pLab/0.48))*(std::log(pLab/0.48));
689 fElasticXsc = 0.37*hnXsc;
691 else if( pLab < 0.65 )
693 hnXsc = 26 + 110*(std::log(pLab/0.48))*(std::log(pLab/0.48));
694 fElasticXsc = 0.95/((pLab - 0.72)*(pLab - 0.72) + 0.049);
696 else if( pLab < 0.72 )
698 hnXsc = 36.1 + 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
699 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
700 fElasticXsc = 0.95/((pLab - 0.72)*(pLab - 0.72) + 0.049);
702 else if( pLab < 0.88 )
704 hnXsc = 36.1 + 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
705 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
706 fElasticXsc = 0.95/((pLab - 0.72)*(pLab - 0.72) + 0.049);
708 else if( pLab < 1.03 )
710 hnXsc = 36.1 + 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
711 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
712 fElasticXsc = 2.0 + 0.4/((pLab - 1.03)*(pLab - 1.03) + 0.016);
714 else if( pLab < 1.15 )
716 hnXsc = 36.1 + 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
717 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
718 fElasticXsc = 2.0 + 0.4/((pLab - 1.03)*(pLab - 1.03) + 0.016);
720 else if( pLab < 1.3 )
722 hnXsc = 36.1 + 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
723 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
724 fElasticXsc = 3. + 13./pLab;
726 else if( pLab < 2.6 )
728 hnXsc = 36.1 + 0.079-4.313*std::log(pLab)+
729 3*std::exp(-(pLab-2.1)*(pLab-2.1)/0.4/0.4)+
730 1.5*std::exp(-(pLab-1.4)*(pLab-1.4)/0.12/0.12);
731 fElasticXsc = 3. + 13./pLab;
733 else if( pLab < 20. )
735 hnXsc = 36.1 + 0.079 - 4.313*std::log(pLab)+
736 3*std::exp(-(pLab-2.1)*(pLab-2.1)/0.4/0.4)+
737 1.5*std::exp(-(pLab-1.4)*(pLab-1.4)/0.12/0.12);
738 fElasticXsc = 3. + 13./pLab;
743 fElasticXsc = 3. + 13./pLab;
748 else if( theParticle == thePiMinus && pORn )
754 hnXsc = 10./((logP + 1.273)*(logP + 1.273) + 0.05);
757 else if( pLab < 0.4 )
759 hnXsc = 14./( (logP + 1.273)*(logP + 1.273) + 0.07);
762 else if( pLab < 0.68 )
764 hnXsc = 14./( (logP + 1.273)*(logP + 1.273) + 0.07);
767 else if( pLab < 0.85 )
769 G4double Ex4 = 88*(std::log(pLab/0.77))*(std::log(pLab/0.77));
771 fElasticXsc = hnXsc*std::exp(-3.*(pLab - 0.68));
773 else if( pLab < 1.15 )
775 G4double Ex4 = 88*(std::log(pLab/0.77))*(std::log(pLab/0.77));
778 fElasticXsc = 6.0 + 1.4/(( pLab - 1.4)*( pLab - 1.4) + 0.1);
782 G4double Ex1 = 3.2*std::exp(-(pLab-2.55)*(pLab-2.55)/0.55/0.55);
783 G4double Ex2 = 12*std::exp(-(pLab-1.47)*(pLab-1.47)/0.225/0.225);
784 hnXsc = Ex1 + Ex2 + 27.5;
785 fElasticXsc = 6.0 + 1.4/(( pLab - 1.4)*( pLab - 1.4) + 0.1);
787 else if( pLab < 2.0 )
789 G4double Ex1 = 3.2*std::exp(-(pLab-2.55)*(pLab-2.55)/0.55/0.55);
790 G4double Ex2 = 12*std::exp(-(pLab-1.47)*(pLab-1.47)/0.225/0.225);
791 hnXsc = Ex1 + Ex2 + 27.5;
792 fElasticXsc = 3.0 + 1.36/( (logP - 0.336)*(logP - 0.336) + 0.08);
794 else if( pLab < 3.5 )
796 G4double Ex1 = 3.2*std::exp(-(pLab-2.55)*(pLab-2.55)/0.55/0.55);
797 G4double Ex2 = 12*std::exp(-(pLab-1.47)*(pLab-1.47)/0.225/0.225);
798 hnXsc = Ex1 + Ex2 + 27.5;
799 fElasticXsc = 3.0 + 6.20/( (logP - 0.336)*(logP - 0.336) + 0.8);
801 else if( pLab < 200. )
803 hnXsc = 10.6 + 2.*std::log(pE) + 25*std::pow(pE, -0.43 );
804 fElasticXsc = 3.0 + 6.20/( (logP - 0.336)*(logP - 0.336) + 0.8);
809 fElasticXsc = 3.0 + 6.20/( (logP - 0.336)*(logP - 0.336) + 0.8);
817 hpXsc = 0.288/((pLab - 0.28)*(pLab - 0.28) + 0.004);
818 fElasticXsc = 1.8/((logP + 1.273)*(logP + 1.273) + 0.07);
820 else if( pLab < 0.395676 )
822 hpXsc = 0.648/((pLab - 0.28)*(pLab - 0.28) + 0.009);
823 fElasticXsc = 0.257/((pLab - 0.28)*(pLab - 0.28) + 0.01);
825 else if( pLab < 0.5 )
827 hpXsc = 26 + 110*(std::log(pLab/0.48))*(std::log(pLab/0.48));
828 fElasticXsc = 0.37*hpXsc;
830 else if( pLab < 0.65 )
832 hpXsc = 26 + 110*(std::log(pLab/0.48))*(std::log(pLab/0.48));
833 fElasticXsc = 0.95/((pLab - 0.72)*(pLab - 0.72) + 0.049);
835 else if( pLab < 0.72 )
838 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
839 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
840 fElasticXsc = 0.95/((pLab - 0.72)*(pLab - 0.72) + 0.049);
842 else if( pLab < 0.88 )
845 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
846 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
847 fElasticXsc = 0.95/((pLab - 0.72)*(pLab - 0.72) + 0.049);
849 else if( pLab < 1.03 )
852 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
853 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
854 fElasticXsc = 2.0 + 0.4/((pLab - 1.03)*(pLab - 1.03) + 0.016);
856 else if( pLab < 1.15 )
859 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
860 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
861 fElasticXsc = 2.0 + 0.4/((pLab - 1.03)*(pLab - 1.03) + 0.016);
863 else if( pLab < 1.3 )
866 10*std::exp(-(pLab-0.72)*(pLab-0.72)/0.06/0.06)+
867 24*std::exp(-(pLab-1.015)*(pLab-1.015)/0.075/0.075);
868 fElasticXsc = 3. + 13./pLab;
870 else if( pLab < 2.6 )
872 hpXsc = 36.1+0.079-4.313*std::log(pLab)+
873 3*std::exp(-(pLab-2.1)*(pLab-2.1)/0.4/0.4)+
874 1.5*std::exp(-(pLab-1.4)*(pLab-1.4)/0.12/0.12);
875 fElasticXsc = 3. +13./pLab;
880 fElasticXsc = 3. + 13./pLab;
885 else if( theParticle == theKPlus && pORn )
889 xsection = 17.91 + B*std::pow(std::log(sMand/s0),2.)
890 + 7.14*std::pow(sMand,-eta1) - 13.45*std::pow(sMand,-eta2);
894 xsection = 17.87 + B*std::pow(std::log(sMand/s0),2.)
895 + 5.17*std::pow(sMand,-eta1) - 7.23*std::pow(sMand,-eta2);
897 fTotalXsc = xsection;
899 else if( theParticle == theKMinus && pORn )
903 xsection = 17.91 + B*std::pow(std::log(sMand/s0),2.)
904 + 7.14*std::pow(sMand,-eta1) + 13.45*std::pow(sMand,-eta2);
908 xsection = 17.87 + B*std::pow(std::log(sMand/s0),2.)
909 + 5.17*std::pow(sMand,-eta1) + 7.23*std::pow(sMand,-eta2);
911 fTotalXsc = xsection;
913 else if( theParticle == theSMinus && pORn )
915 xsection = 35.20 + B*std::pow(std::log(sMand/s0),2.)
916 - 199.*std::pow(sMand,-eta1) + 264.*std::pow(sMand,-eta2);
918 else if( theParticle == theGamma && pORn )
920 xsection = 0.0 + B*std::pow(std::log(sMand/s0),2.)
921 + 0.032*std::pow(sMand,-eta1) - 0.0*std::pow(sMand,-eta2);
922 fTotalXsc = xsection;
928 xsection = 35.45 + B*std::pow(std::log(sMand/s0),2.)
929 + 42.53*std::pow(sMand,-eta1) - 33.34*std::pow(sMand,-eta2);
933 xsection += 35.80 + B*std::pow(std::log(sMand/s0),2.)
934 + 40.15*std::pow(sMand,-eta1) - 30.*std::pow(sMand,-eta2);
936 fTotalXsc = xsection;
938 fTotalXsc *= millibarn;
939 fElasticXsc *= millibarn;
947 fInelasticXsc = fTotalXsc - fElasticXsc;
948 if( fInelasticXsc < 0. ) fInelasticXsc = 0.;
965 G4int absPDGcode = std::abs(PDGcode);
974 G4double LogPlab = std::log( Plab );
975 G4double sqrLogPlab = LogPlab * LogPlab;
977 G4bool pORn = (nucleon == theProton || nucleon == theNeutron );
978 G4bool proton = (nucleon == theProton);
982 if( absPDGcode > 1000 && pORn )
986 fTotalXsc = 48.0 + 0. *std::pow(Plab, 0. ) + 0.522*sqrLogPlab - 4.51*LogPlab;
987 fElasticXsc = 11.9 + 26.9*std::pow(Plab,-1.21) + 0.169*sqrLogPlab - 1.85*LogPlab;
991 fTotalXsc = 47.3 + 0. *std::pow(Plab, 0. ) + 0.513*sqrLogPlab - 4.27*LogPlab;
992 fElasticXsc = 11.9 + 26.9*std::pow(Plab,-1.21) + 0.169*sqrLogPlab - 1.85*LogPlab;
995 else if( PDGcode == 211 && pORn )
999 fTotalXsc = 16.4 + 19.3 *std::pow(Plab,-0.42) + 0.19 *sqrLogPlab - 0.0 *LogPlab;
1000 fElasticXsc = 0.0 + 11.4*std::pow(Plab,-0.40) + 0.079*sqrLogPlab - 0.0 *LogPlab;
1004 fTotalXsc = 33.0 + 14.0 *std::pow(Plab,-1.36) + 0.456*sqrLogPlab - 4.03*LogPlab;
1005 fElasticXsc = 1.76 + 11.2*std::pow(Plab,-0.64) + 0.043*sqrLogPlab - 0.0 *LogPlab;
1008 else if( PDGcode == -211 && pORn )
1012 fTotalXsc = 33.0 + 14.0 *std::pow(Plab,-1.36) + 0.456*sqrLogPlab - 4.03*LogPlab;
1013 fElasticXsc = 1.76 + 11.2*std::pow(Plab,-0.64) + 0.043*sqrLogPlab - 0.0 *LogPlab;
1017 fTotalXsc = 16.4 + 19.3 *std::pow(Plab,-0.42) + 0.19 *sqrLogPlab - 0.0 *LogPlab;
1018 fElasticXsc = 0.0 + 11.4*std::pow(Plab,-0.40) + 0.079*sqrLogPlab - 0.0 *LogPlab;
1021 else if( PDGcode == 111 && pORn )
1025 fTotalXsc = (16.4 + 19.3 *std::pow(Plab,-0.42) + 0.19 *sqrLogPlab - 0.0 *LogPlab +
1026 33.0 + 14.0 *std::pow(Plab,-1.36) + 0.456*sqrLogPlab - 4.03*LogPlab)/2;
1028 fElasticXsc = ( 0.0 + 11.4*std::pow(Plab,-0.40) + 0.079*sqrLogPlab - 0.0 *LogPlab +
1029 1.76 + 11.2*std::pow(Plab,-0.64) + 0.043*sqrLogPlab - 0.0 *LogPlab)/2;
1034 fTotalXsc = (33.0 + 14.0 *std::pow(Plab,-1.36) + 0.456*sqrLogPlab - 4.03*LogPlab +
1035 16.4 + 19.3 *std::pow(Plab,-0.42) + 0.19 *sqrLogPlab - 0.0 *LogPlab)/2;
1036 fElasticXsc = ( 1.76 + 11.2*std::pow(Plab,-0.64) + 0.043*sqrLogPlab - 0.0 *LogPlab +
1037 0.0 + 11.4*std::pow(Plab,-0.40) + 0.079*sqrLogPlab - 0.0 *LogPlab)/2;
1040 else if( PDGcode == 321 && pORn )
1044 fTotalXsc = 18.1 + 0. *std::pow(Plab, 0. ) + 0.26 *sqrLogPlab - 1.0 *LogPlab;
1045 fElasticXsc = 5.0 + 8.1*std::pow(Plab,-1.8 ) + 0.16 *sqrLogPlab - 1.3 *LogPlab;
1049 fTotalXsc = 18.7 + 0. *std::pow(Plab, 0. ) + 0.21 *sqrLogPlab - 0.89*LogPlab;
1050 fElasticXsc = 7.3 + 0. *std::pow(Plab,-0. ) + 0.29 *sqrLogPlab - 2.4 *LogPlab;
1053 else if( PDGcode ==-321 && pORn )
1057 fTotalXsc = 32.1 + 0. *std::pow(Plab, 0. ) + 0.66*sqrLogPlab - 5.6*LogPlab;
1058 fElasticXsc = 7.3 + 0. *std::pow(Plab,-0. ) + 0.29*sqrLogPlab - 2.4*LogPlab;
1062 fTotalXsc = 25.2 + 0. *std::pow(Plab, 0. ) + 0.38*sqrLogPlab - 2.9*LogPlab;
1063 fElasticXsc = 5.0 + 8.1*std::pow(Plab,-1.8 ) + 0.16*sqrLogPlab - 1.3*LogPlab;
1066 else if( PDGcode == 311 && pORn )
1070 fTotalXsc = ( 18.1 + 0. *std::pow(Plab, 0. ) + 0.26 *sqrLogPlab - 1.0 *LogPlab +
1071 32.1 + 0. *std::pow(Plab, 0. ) + 0.66 *sqrLogPlab - 5.6 *LogPlab)/2;
1072 fElasticXsc = ( 5.0 + 8.1*std::pow(Plab,-1.8 ) + 0.16 *sqrLogPlab - 1.3 *LogPlab +
1073 7.3 + 0. *std::pow(Plab,-0. ) + 0.29 *sqrLogPlab - 2.4 *LogPlab)/2;
1077 fTotalXsc = ( 18.7 + 0. *std::pow(Plab, 0. ) + 0.21 *sqrLogPlab - 0.89*LogPlab +
1078 25.2 + 0. *std::pow(Plab, 0. ) + 0.38 *sqrLogPlab - 2.9 *LogPlab)/2;
1079 fElasticXsc = ( 7.3 + 0. *std::pow(Plab,-0. ) + 0.29 *sqrLogPlab - 2.4 *LogPlab +
1080 5.0 + 8.1*std::pow(Plab,-1.8 ) + 0.16 *sqrLogPlab - 1.3 *LogPlab)/2;
1087 fTotalXsc = 48.0 + 0. *std::pow(Plab, 0. ) + 0.522*sqrLogPlab - 4.51*LogPlab;
1088 fElasticXsc = 11.9 + 26.9*std::pow(Plab,-1.21) + 0.169*sqrLogPlab - 1.85*LogPlab;
1092 fTotalXsc = 47.3 + 0. *std::pow(Plab, 0. ) + 0.513*sqrLogPlab - 4.27*LogPlab;
1093 fElasticXsc = 11.9 + 26.9*std::pow(Plab,-1.21) + 0.169*sqrLogPlab - 1.85*LogPlab;
1096 fTotalXsc *= millibarn;
1097 fElasticXsc *= millibarn;
1098 fInelasticXsc = fTotalXsc - fElasticXsc;
1099 if (fInelasticXsc < 0.) fInelasticXsc = 0.;
1112 G4double Elab = std::sqrt ( mp * mp + Plab * Plab );
1113 G4double Ecm = std::sqrt ( mp * mp + mt * mt + 2 * Elab * mt );
1129 G4double Elab = std::sqrt ( mp * mp + Plab * Plab );
1130 G4double sMand = mp*mp + mt*mt + 2*Elab*mt ;
1147 if ( aParticle->
GetDefinition() == theProton ) pR = 0.895*fermi;
1148 else if( aParticle->
GetDefinition() == thePiPlus ) pR = 0.663*fermi;
1149 else if( aParticle->
GetDefinition() == theKPlus ) pR = 0.340*fermi;
1150 else pR = 0.500*fermi;
1162 G4double totEcm = std::sqrt(pM*pM + tM*tM + 2.*pElab*tM);
1166 G4double bC = fine_structure_const*hbarc*pZ*tZ;
1173 if( totTcm <= bC ) ratio = 0.;
1174 else ratio = 1. - bC/totTcm;
1177 if( ratio < 0.) ratio = 0.;
1200 fKpProtonTotXscVector =
G4LPhysicsFreeVector(iMax, fKpProtonTotTkin[0], fKpProtonTotTkin[iMax-1]);
1203 for( i = 0; i < iMax; i++)
1207 if( i == 0 || i == iMax-1 ) tmpxsc[i] = fKpProtonTotXsc[i];
1208 else tmpxsc[i] = 0.5*(fKpProtonTotXsc[i-1]+fKpProtonTotXsc[i+1]);
1210 fKpProtonTotXscVector.
PutValues(
size_t(i), fKpProtonTotTkin[i], tmpxsc[i]*millibarn);
1216 fKpNeutronTotXscVector =
G4LPhysicsFreeVector(iMax, fKpNeutronTotTkin[0], fKpNeutronTotTkin[iMax-1]);
1219 for( i = 0; i < iMax; i++)
1222 if( i == 0 || i == iMax-1 ) tmpxsc[i] = fKpNeutronTotXsc[i];
1223 else tmpxsc[i] = 0.5*(fKpNeutronTotXsc[i-1]+fKpNeutronTotXsc[i+1]);
1225 fKpNeutronTotXscVector.
PutValues(
size_t(i), fKpNeutronTotTkin[i], tmpxsc[i]*millibarn);
1231 fKmProtonTotXscVector =
G4LPhysicsFreeVector(iMax, fKmProtonTotTkin[0], fKmProtonTotTkin[iMax-1]);
1234 for( i = 0; i < iMax; i++)
1238 if( i == 0 || i == iMax-1 ) tmpxsc[i] = fKmProtonTotXsc[i];
1239 else tmpxsc[i] = 0.5*(fKmProtonTotXsc[i-1]+fKmProtonTotXsc[i+1]);
1241 fKmProtonTotXscVector.
PutValues(
size_t(i), fKmProtonTotTkin[i], tmpxsc[i]*millibarn);
1247 fKmNeutronTotXscVector =
G4LPhysicsFreeVector(iMax, fKmNeutronTotTkin[0], fKmNeutronTotTkin[iMax-1]);
1250 for( i = 0; i < iMax; i++)
1253 if( i == 0 || i == iMax-1 ) tmpxsc[i] = fKmNeutronTotXsc[i];
1254 else tmpxsc[i] = 0.5*(fKmNeutronTotXsc[i-1]+fKmNeutronTotXsc[i+1]);
1256 fKmNeutronTotXscVector.
PutValues(
size_t(i), fKmNeutronTotTkin[i], tmpxsc[i]*millibarn);
1264const G4double G4HadronNucleonXsc::fKpProtonTotXsc[66] = {
12650.000000e+00, 1.592400e-01, 3.184700e-01, 7.961800e-01, 1.433120e+00, 2.070060e+00,
12662.866240e+00, 3.582800e+00, 4.378980e+00, 5.015920e+00, 5.573250e+00, 6.449040e+00,
12677.404460e+00, 8.200640e+00, 8.837580e+00, 9.713380e+00, 1.027070e+01, 1.090764e+01,
12681.130573e+01, 1.170382e+01, 1.242038e+01, 1.281847e+01, 1.321656e+01, 1.337580e+01,
12691.345541e+01, 1.329618e+01, 1.265924e+01, 1.242038e+01, 1.250000e+01, 1.305732e+01,
12701.369427e+01, 1.425159e+01, 1.544586e+01, 1.648089e+01, 1.751592e+01, 1.791401e+01,
12711.791401e+01, 1.775478e+01, 1.751592e+01, 1.735669e+01, 1.719745e+01, 1.711783e+01,
12721.703822e+01, 1.695860e+01, 1.695860e+01, 1.695860e+01, 1.695860e+01, 1.687898e+01,
12731.687898e+01, 1.703822e+01, 1.719745e+01, 1.735669e+01, 1.751592e+01, 1.767516e+01,
12741.783439e+01, 1.799363e+01, 1.815287e+01, 1.839172e+01, 1.855095e+01, 1.871019e+01,
12751.886943e+01, 1.918790e+01, 1.942675e+01, 1.966561e+01, 2.006369e+01, 2.054140e+01
1279const G4double G4HadronNucleonXsc::fKpProtonTotTkin[66] = {
12802.100000e+00, 2.180770e+00, 2.261540e+00, 2.396150e+00, 2.476920e+00, 2.557690e+00,
12812.557690e+00, 2.584620e+00, 2.638460e+00, 2.665380e+00, 2.719230e+00, 2.746150e+00,
12822.800000e+00, 2.853850e+00, 2.934620e+00, 3.042310e+00, 3.150000e+00, 3.311540e+00,
12833.446150e+00, 3.607690e+00, 3.930770e+00, 4.226920e+00, 4.361540e+00, 4.846150e+00,
12844.980770e+00, 5.088460e+00, 5.465380e+00, 5.653850e+00, 5.950000e+00, 6.084620e+00,
12856.246150e+00, 6.300000e+00, 6.380770e+00, 6.515380e+00, 6.730770e+00, 6.838460e+00,
12867.000000e+00, 7.161540e+00, 7.323080e+00, 7.457690e+00, 7.619230e+00, 7.780770e+00,
12877.915380e+00, 8.130770e+00, 8.265380e+00, 8.453850e+00, 8.642310e+00, 8.803850e+00,
12889.019230e+00, 9.234620e+00, 9.530770e+00, 9.773080e+00, 1.001538e+01, 1.017692e+01,
12891.033846e+01, 1.058077e+01, 1.082308e+01, 1.098462e+01, 1.114615e+01, 1.138846e+01,
12901.160385e+01, 1.173846e+01, 1.192692e+01, 1.216923e+01, 1.238461e+01, 1.257308e+01
1293const G4double G4HadronNucleonXsc::fKpNeutronTotXsc[75] = {
12943.980900e-01, 3.184700e-01, 3.184700e-01, 3.980900e-01, 3.980900e-01, 3.980900e-01,
12953.980900e-01, 3.980900e-01, 3.980900e-01, 4.777100e-01, 3.980900e-01, 3.980900e-01,
12964.777100e-01, 5.573200e-01, 1.035030e+00, 1.512740e+00, 2.149680e+00, 2.786620e+00,
12973.503180e+00, 4.219750e+00, 5.015920e+00, 5.652870e+00, 6.289810e+00, 7.245220e+00,
12988.121020e+00, 8.837580e+00, 9.633760e+00, 1.042994e+01, 1.114650e+01, 1.194268e+01,
12991.265924e+01, 1.329618e+01, 1.393312e+01, 1.449045e+01, 1.496815e+01, 1.552548e+01,
13001.592357e+01, 1.664013e+01, 1.727707e+01, 1.783439e+01, 1.831210e+01, 1.902866e+01,
13011.902866e+01, 1.878981e+01, 1.847134e+01, 1.831210e+01, 1.807325e+01, 1.791401e+01,
13021.783439e+01, 1.767516e+01, 1.759554e+01, 1.743631e+01, 1.743631e+01, 1.751592e+01,
13031.743631e+01, 1.735669e+01, 1.751592e+01, 1.759554e+01, 1.767516e+01, 1.783439e+01,
13041.783439e+01, 1.791401e+01, 1.815287e+01, 1.823248e+01, 1.847134e+01, 1.878981e+01,
13051.894905e+01, 1.902866e+01, 1.934713e+01, 1.966561e+01, 1.990446e+01, 2.014331e+01,
13062.030255e+01, 2.046178e+01, 2.085987e+01
1309const G4double G4HadronNucleonXsc::fKpNeutronTotTkin[75] = {
13102.692000e-02, 1.615400e-01, 2.961500e-01, 4.576900e-01, 6.461500e-01, 7.538500e-01,
13118.884600e-01, 1.103850e+00, 1.211540e+00, 1.400000e+00, 1.561540e+00, 1.776920e+00,
13121.992310e+00, 2.126920e+00, 2.342310e+00, 2.423080e+00, 2.557690e+00, 2.692310e+00,
13132.800000e+00, 2.988460e+00, 3.203850e+00, 3.365380e+00, 3.500000e+00, 3.688460e+00,
13143.850000e+00, 4.011540e+00, 4.173080e+00, 4.415380e+00, 4.630770e+00, 4.873080e+00,
13155.061540e+00, 5.276920e+00, 5.492310e+00, 5.707690e+00, 5.896150e+00, 6.030770e+00,
13166.138460e+00, 6.219230e+00, 6.273080e+00, 6.326920e+00, 6.407690e+00, 6.650000e+00,
13176.784620e+00, 7.026920e+00, 7.242310e+00, 7.350000e+00, 7.484620e+00, 7.619230e+00,
13187.807690e+00, 7.915380e+00, 8.050000e+00, 8.211540e+00, 8.453850e+00, 8.588460e+00,
13198.830770e+00, 9.073080e+00, 9.288460e+00, 9.476920e+00, 9.665380e+00, 9.826920e+00,
13201.004231e+01, 1.031154e+01, 1.052692e+01, 1.071538e+01, 1.095769e+01, 1.120000e+01,
13211.138846e+01, 1.155000e+01, 1.176538e+01, 1.190000e+01, 1.214231e+01, 1.222308e+01,
13221.238461e+01, 1.246538e+01, 1.265385e+01
1325const G4double G4HadronNucleonXsc::fKmProtonTotXsc[106] = {
13261.136585e+02, 9.749129e+01, 9.275262e+01, 8.885017e+01, 8.334146e+01, 7.955401e+01,
13277.504530e+01, 7.153658e+01, 6.858537e+01, 6.674913e+01, 6.525784e+01, 6.448781e+01,
13286.360279e+01, 6.255401e+01, 6.127526e+01, 6.032404e+01, 5.997910e+01, 5.443554e+01,
13295.376307e+01, 5.236934e+01, 5.113937e+01, 5.090941e+01, 4.967944e+01, 4.844948e+01,
13304.705575e+01, 4.638327e+01, 4.571080e+01, 4.475958e+01, 4.397213e+01, 4.257840e+01,
13314.102090e+01, 4.090592e+01, 3.906969e+01, 3.839721e+01, 3.756097e+01, 3.644599e+01,
13323.560976e+01, 3.533101e+01, 3.533101e+01, 3.644599e+01, 3.811847e+01, 3.839721e+01,
13333.979094e+01, 4.090592e+01, 4.257840e+01, 4.341463e+01, 4.425087e+01, 4.564460e+01,
13344.759582e+01, 4.703833e+01, 4.843206e+01, 4.787457e+01, 4.452962e+01, 4.202090e+01,
13354.034843e+01, 3.839721e+01, 3.616725e+01, 3.365854e+01, 3.170732e+01, 3.087108e+01,
13363.170732e+01, 3.254355e+01, 3.310104e+01, 3.254355e+01, 3.142857e+01, 3.059233e+01,
13372.947735e+01, 2.891986e+01, 2.836237e+01, 2.752613e+01, 2.696864e+01, 2.641115e+01,
13382.501742e+01, 2.473868e+01, 2.418118e+01, 2.362369e+01, 2.334495e+01, 2.278746e+01,
13392.250871e+01, 2.222997e+01, 2.167247e+01, 2.139373e+01, 2.139373e+01, 2.139373e+01,
13402.111498e+01, 2.083624e+01, 2.055749e+01, 2.083624e+01, 2.055749e+01, 2.083624e+01,
13412.083624e+01, 2.055749e+01, 2.055749e+01, 2.055749e+01, 2.027875e+01, 2.000000e+01,
13422.055749e+01, 2.027875e+01, 2.083624e+01, 2.083624e+01, 2.055749e+01, 2.083624e+01,
13432.083624e+01, 2.083624e+01, 2.139373e+01, 2.139373e+01
1346const G4double G4HadronNucleonXsc::fKmProtonTotTkin[106] = {
13474.017980e+00, 4.125840e+00, 4.179780e+00, 4.251690e+00, 4.287640e+00, 4.341570e+00,
13484.395510e+00, 4.467420e+00, 4.503370e+00, 4.575280e+00, 4.683150e+00, 4.737080e+00,
13494.773030e+00, 4.826970e+00, 4.880900e+00, 4.916850e+00, 4.952810e+00, 4.988760e+00,
13504.988760e+00, 5.006740e+00, 5.006740e+00, 5.042700e+00, 5.078650e+00, 5.114610e+00,
13515.132580e+00, 5.150560e+00, 5.186520e+00, 5.204490e+00, 5.276400e+00, 5.348310e+00,
13525.366290e+00, 5.384270e+00, 5.456180e+00, 5.564040e+00, 5.600000e+00, 5.671910e+00,
13535.743820e+00, 5.833710e+00, 5.905620e+00, 5.977530e+00, 6.085390e+00, 6.085390e+00,
13546.157300e+00, 6.175280e+00, 6.211240e+00, 6.229210e+00, 6.247190e+00, 6.337080e+00,
13556.391010e+00, 6.516850e+00, 6.462920e+00, 6.498880e+00, 6.570790e+00, 6.606740e+00,
13566.660670e+00, 6.678650e+00, 6.696630e+00, 6.732580e+00, 6.804490e+00, 6.876400e+00,
13576.948310e+00, 7.020220e+00, 7.074160e+00, 7.182020e+00, 7.235960e+00, 7.289890e+00,
13587.397750e+00, 7.523600e+00, 7.631460e+00, 7.757300e+00, 7.901120e+00, 8.062920e+00,
13598.260670e+00, 8.386520e+00, 8.530340e+00, 8.674160e+00, 8.817980e+00, 8.943820e+00,
13609.087640e+00, 9.267420e+00, 9.429210e+00, 9.573030e+00, 9.698880e+00, 9.896630e+00,
13611.002247e+01, 1.016629e+01, 1.031011e+01, 1.048989e+01, 1.063371e+01, 1.077753e+01,
13621.095730e+01, 1.108315e+01, 1.120899e+01, 1.135281e+01, 1.149663e+01, 1.162247e+01,
13631.174831e+01, 1.187416e+01, 1.200000e+01, 1.212584e+01, 1.221573e+01, 1.234157e+01,
13641.239551e+01, 1.250337e+01, 1.261124e+01, 1.273708e+01
1367const G4double G4HadronNucleonXsc::fKmNeutronTotXsc[68] = {
13682.621810e+01, 2.741123e+01, 2.868413e+01, 2.963889e+01, 3.067343e+01, 3.178759e+01,
13693.282148e+01, 3.417466e+01, 3.536778e+01, 3.552620e+01, 3.544576e+01, 3.496756e+01,
13703.433030e+01, 3.401166e+01, 3.313537e+01, 3.257772e+01, 3.178105e+01, 3.138264e+01,
13713.074553e+01, 2.970952e+01, 2.891301e+01, 2.827542e+01, 2.787700e+01, 2.715978e+01,
13722.660181e+01, 2.612394e+01, 2.564574e+01, 2.516721e+01, 2.421098e+01, 2.365235e+01,
13732.317366e+01, 2.261437e+01, 2.237389e+01, 2.205427e+01, 2.181395e+01, 2.165357e+01,
13742.149335e+01, 2.133297e+01, 2.109232e+01, 2.093128e+01, 2.069030e+01, 2.052992e+01,
13752.028927e+01, 2.012824e+01, 1.996737e+01, 1.996590e+01, 1.988530e+01, 1.964432e+01,
13761.948361e+01, 1.940236e+01, 1.940040e+01, 1.931882e+01, 1.947593e+01, 1.947429e+01,
13771.939320e+01, 1.939157e+01, 1.946922e+01, 1.962715e+01, 1.970481e+01, 1.970301e+01,
13781.993958e+01, 2.009669e+01, 2.025380e+01, 2.033178e+01, 2.049003e+01, 2.064747e+01,
13792.080540e+01, 2.096333e+01
1382const G4double G4HadronNucleonXsc::fKmNeutronTotTkin[68] = {
13835.708500e+00, 5.809560e+00, 5.896270e+00, 5.954120e+00, 5.997630e+00, 6.041160e+00,
13846.142160e+00, 6.171410e+00, 6.272470e+00, 6.344390e+00, 6.416230e+00, 6.459180e+00,
13856.487690e+00, 6.501940e+00, 6.544740e+00, 6.573280e+00, 6.616110e+00, 6.644710e+00,
13866.658840e+00, 6.744700e+00, 6.773150e+00, 6.830410e+00, 6.859010e+00, 6.916240e+00,
13876.973530e+00, 6.987730e+00, 7.030670e+00, 7.102360e+00, 7.173880e+00, 7.288660e+00,
13887.374720e+00, 7.547000e+00, 7.690650e+00, 7.791150e+00, 7.920420e+00, 8.020980e+00,
13898.107160e+00, 8.207720e+00, 8.365740e+00, 8.523790e+00, 8.710560e+00, 8.811110e+00,
13908.969140e+00, 9.127190e+00, 9.270860e+00, 9.400230e+00, 9.486440e+00, 9.673210e+00,
13919.802510e+00, 9.946220e+00, 1.011870e+01, 1.029116e+01, 1.047808e+01, 1.062181e+01,
13921.075114e+01, 1.089488e+01, 1.106739e+01, 1.118244e+01, 1.135496e+01, 1.151307e+01,
13931.171439e+01, 1.190130e+01, 1.208822e+01, 1.223199e+01, 1.231829e+01, 1.247646e+01,
13941.259150e+01, 1.270655e+01
static G4AntiLambda * AntiLambda()
static G4AntiNeutron * AntiNeutron()
static G4AntiOmegaMinus * AntiOmegaMinus()
static G4AntiProton * AntiProton()
static G4AntiSigmaMinus * AntiSigmaMinus()
static G4AntiSigmaPlus * AntiSigmaPlus()
static G4AntiSigmaZero * AntiSigmaZero()
static G4AntiXiMinus * AntiXiMinus()
static G4AntiXiZero * AntiXiZero()
static G4Deuteron * Deuteron()
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
G4double GetTotalEnergy() const
G4ThreeVector GetMomentum() const
virtual G4bool IsApplicable(const G4DynamicParticle *aDP, const G4Element *)
virtual G4bool IsIsoApplicable(const G4DynamicParticle *aDP, G4int Z, G4int A)
G4double CalcMandelstamS(const G4double, const G4double, const G4double)
G4double GetHadronNucleonXscNS(const G4DynamicParticle *, const G4ParticleDefinition *)
void CrossSectionDescription(std::ostream &) const
G4double GetHadronNucleonXscPDG(const G4DynamicParticle *, const G4ParticleDefinition *)
void InitialiseKaonNucleonTotXsc()
G4double GetHadronNucleonXscVU(const G4DynamicParticle *, const G4ParticleDefinition *)
G4double CalculateEcmValue(const G4double, const G4double, const G4double)
virtual ~G4HadronNucleonXsc()
G4double GetHadronNucleonXscEL(const G4DynamicParticle *, const G4ParticleDefinition *)
G4double GetCoulombBarrier(const G4DynamicParticle *aParticle, const G4ParticleDefinition *nucleon)
static G4KaonMinus * KaonMinus()
static G4KaonPlus * KaonPlus()
static G4KaonZeroLong * KaonZeroLong()
static G4KaonZeroShort * KaonZeroShort()
void PutValues(size_t binNumber, G4double binValue, G4double dataValue)
static G4Lambda * Lambda()
static G4Neutron * Neutron()
static G4OmegaMinus * OmegaMinus()
G4double GetPDGMass() const
G4int GetPDGEncoding() const
G4double GetPDGCharge() const
static G4PionMinus * PionMinus()
static G4PionPlus * PionPlus()
static G4PionZero * PionZero()
static G4Proton * Proton()
static G4SigmaMinus * SigmaMinus()
static G4SigmaPlus * SigmaPlus()
static G4SigmaZero * SigmaZero()
static G4Triton * Triton()
static G4XiMinus * XiMinus()
static G4XiZero * XiZero()