38 for(
G4int i = 0; i < nP; ++i )
40 std::pair<G4double, G4double> x;
41 x.first=aT[i]*millibarn;
42 x.second=aIn[i]*millibarn;
43 std::pair<G4double, std::pair<G4double, G4double > > aP;
51 }
else if (i+1 == nP) {
63 if (kineticEnergy <= fMinE) {
return fInel0; }
64 if (kineticEnergy >= fMaxE) {
return fInel1; }
66 G4PiData::iterator it=begin();
67 while(it!=end()&&kineticEnergy>(*it).first) {++it;}
71 ed <<
"This cross section is applied for E(MeV)= " << kineticEnergy
72 <<
" outside allowed energy interval" <<
G4endl;
78 x1=(*(it-1)).second.second;
80 x2=(*(it)).second.second;
81 return std::max(0., x1 + (kineticEnergy-e1)*(x2-x1)/(e2-e1));
88 if (kineticEnergy <= fMinE) {
return fTot0 - fInel0; }
89 if (kineticEnergy >= fMaxE) {
return fTot1 - fInel1; }
91 G4PiData::iterator it=begin();
92 while(it!=end()&&kineticEnergy>(*it).first) {it++;}
96 ed <<
"This cross section is applied for E(MeV)= " << kineticEnergy
97 <<
" outside allowed energy interval" <<
G4endl;
100 if(it==begin()) it++;
103 x1=(*(it-1)).second.first - (*(it-1)).second.second;
105 x2=(*(it)).second.first - (*(it)).second.second;
106 return std::max(0., x1 + (kineticEnergy-e1)*(x2-x1)/(e2-e1));
113 if (kineticEnergy <= fMinE) {
return fTot0; }
114 if (kineticEnergy >= fMaxE) {
return fTot1; }
116 G4PiData::iterator it=begin();
117 while(it!=end()&&kineticEnergy>(*it).first) {it++;}
121 ed <<
"This cross section is applied for E(MeV)= " << kineticEnergy
122 <<
" outside allowed energy interval" <<
G4endl;
125 if(it==begin()) it++;
128 x1=(*(it-1)).second.first;
130 x2=(*(it)).second.first;
131 return std::max(0., x1 + (kineticEnergy-e1)*(x2-x1)/(e2-e1));
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4double ReactionXSection(G4double kineticEnergy)
G4PiData(const G4double *aTotal, const G4double *aInelastic, const G4double *anEnergy, G4int nPoints)
G4double TotalXSection(G4double kineticEnergy)
G4double ElasticXSection(G4double kineticEnergy)