65G4double G4BGGNucleonInelasticXS::theGlauberFacP[93] = {0.0};
66G4double G4BGGNucleonInelasticXS::theCoulombFacP[93] = {0.0};
67G4double G4BGGNucleonInelasticXS::theGlauberFacN[93] = {0.0};
68G4double G4BGGNucleonInelasticXS::theCoulombFacN[93] = {0.0};
69G4int G4BGGNucleonInelasticXS::theA[93] = {0};
75 fGlauberEnergy = 91.*CLHEP::GeV;
76 fLowEnergy = 14.*CLHEP::MeV;
83 isProton = (theProton == p);
86 if (0 == theA[0]) { Initialise(); }
122 G4int Z = std::min(ZZ, 92);
126 if (ekin <= fLowEnergy) {
127 cross = CoulombFactor(ekin, Z);
128 cross *= (isProton) ? theCoulombFacP[Z] : theCoulombFacN[Z];
129 }
else if (ekin > fGlauberEnergy) {
130 cross = fGlauber->GetInelasticGlauberGribov(dp, Z, theA[Z]);
131 cross *= (isProton) ? theGlauberFacP[Z] : theGlauberFacN[Z];
133 cross = fNucleon->GetElementCrossSection(dp, Z);
139 G4cout <<
"G4BGGNucleonInelasticXS::GetCrossSection for "
142 <<
" in nucleus Z= " << Z <<
" A= " << theA[Z]
143 <<
" XS(b)= " << cross/barn
162 G4double cross =
A*fHadron->GetInelasticHadronNucleonXsc();
166 G4cout <<
"G4BGGNucleonInelasticXS::GetIsoCrossSection for "
169 <<
" in nucleus Z=1 A=" <<
A
170 <<
" XS(b)= " << cross/barn
182 isProton = (theProton == &p);
185 ed <<
"This BGG cross section is applicable only to nucleons and not to "
187 G4Exception(
"G4BGGNucleonInelasticXS::BuildPhysicsTable",
"had001",
195void G4BGGNucleonInelasticXS::Initialise()
197 theA[0] = theA[1] = 1;
204 for (
G4int iz=2; iz<93; ++iz) {
211 theGlauberFacP[iz] = csdn/csup;
215 for (
G4int iz=2; iz<93; ++iz) {
216 csup = fGlauber->GetInelasticGlauberGribov(&dp, iz, theA[iz]);
217 csdn = fNucleon->GetElementCrossSection(&dp, iz);
218 theGlauberFacN[iz] = csdn/csup;
221 G4cout <<
"G4BGGNucleonInelasticXS::Initialise Z= " << iz <<
" A= " << theA[iz]
222 <<
" GFactorP= " << theGlauberFacP[iz]
223 <<
" GFactorN= " << theGlauberFacN[iz] <<
G4endl;
227 theCoulombFacP[1] = theCoulombFacN[1] = 1.0;
228 dp.SetDefinition(theProton);
229 dp.SetKineticEnergy(fLowEnergy);
230 for (
G4int iz=2; iz<93; ++iz) {
231 theCoulombFacP[iz] = fNucleon->GetElementCrossSection(&dp, iz)
232 /CoulombFactor(fLowEnergy, iz);
235 for (
G4int iz=2; iz<93; ++iz) {
236 theCoulombFacN[iz] = fNucleon->GetElementCrossSection(&dp, iz)
237 /CoulombFactor(fLowEnergy, iz);
240 G4cout <<
"G4BGGNucleonInelasticXS::Initialise Z= " << iz <<
" A= " << theA[iz]
241 <<
" CFactorP= " << theCoulombFacP[iz]
242 <<
" CFactorN= " << theCoulombFacN[iz] <<
G4endl;
253 if(kinEnergy <= 0.0) {
return res; }
266 G4double ff3 = 0.8 + 18./aa - 0.002*aa;
267 res *= (1.0 + ff3*(1.0 - (1.0/(1+
G4Exp(-ff1*(elog + ff2))))));
268 ff1 = 8. - 8./aa - 0.008*aa;
269 ff2 = 2.34 - 5.4/aa - 0.0028*aa;
270 res /= (1.0 +
G4Exp(-ff1*(elog + ff2)));
274 G4double p3 = 0.6 + 13./aa - 0.0005*aa;
276 G4double p5 = 1.36 + 1.8/aa + 0.0005*aa;
277 G4double p6 = 1. + 200./aa + 0.02*aa;
278 G4double p7 = 3.0 - (aa-70.)*(aa-200.)/11000.;
283 res = (1. + p3*firstexp/(1. + firstexp))/(1. + secondexp);
292 outFile <<
"The Barashenkov-Glauber-Gribov cross section calculates inelastic\n"
293 <<
"scattering of protons and neutrons from nuclei using the\n"
294 <<
"Barashenkov parameterization below 91 GeV and the Glauber-Gribov\n"
295 <<
"parameterization above 91 GeV. It uses the G4HadronNucleonXsc\n"
296 <<
"cross section component for hydrogen targets, and the\n"
297 <<
"G4ComponentGGHadronNucleusXsc component for other targets.\n";
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
G4double G4Log(G4double x)
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
G4bool IsElementApplicable(const G4DynamicParticle *, G4int Z, const G4Material *mat) override
G4bool IsIsoApplicable(const G4DynamicParticle *, G4int Z, G4int A, const G4Element *elm, const G4Material *mat) override
~G4BGGNucleonInelasticXS() override
G4double GetElementCrossSection(const G4DynamicParticle *, G4int Z, const G4Material *mat) override
G4BGGNucleonInelasticXS(const G4ParticleDefinition *)
void CrossSectionDescription(std::ostream &) const override
void BuildPhysicsTable(const G4ParticleDefinition &) override
G4double GetIsoCrossSection(const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr) override
G4double GetInelasticGlauberGribov(const G4DynamicParticle *, G4int Z, G4int A)
G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
static G4Neutron * Neutron()
static G4NistManager * Instance()
G4double GetAtomicMassAmu(const G4String &symb) const
static G4double CoulombFactor(const G4ParticleDefinition *theParticle, const G4ParticleDefinition *nucleon, G4double ekin)
G4double GetElementCrossSection(const G4DynamicParticle *aParticle, G4int Z, const G4Material *mat=nullptr) final
const G4String & GetParticleName() const
static G4Proton * Proton()
G4VCrossSectionDataSet(const G4String &nam="")
void SetForAllAtomsAndEnergies(G4bool val)