53G4double G4BGGNucleonElasticXS::theGlauberFacP[93] = {0.0};
54G4double G4BGGNucleonElasticXS::theCoulombFacP[93] = {0.0};
55G4double G4BGGNucleonElasticXS::theGlauberFacN[93] = {0.0};
56G4double G4BGGNucleonElasticXS::theCoulombFacN[93] = {0.0};
57G4int G4BGGNucleonElasticXS::theA[93] = {0};
63 fGlauberEnergy = 91.*GeV;
64 fLowEnergy = 14.0*MeV;
70 isProton = (theProton == p);
73 if (0 == theA[0]) { Initialise(); }
111 G4int Z = std::min(ZZ, 92);
116 if(ekin <= fLowEnergy) {
117 cross = (isProton) ? theCoulombFacP[Z] : theCoulombFacN[Z];
118 cross *= CoulombFactor(ekin, Z);
119 }
else if(ekin > fGlauberEnergy) {
120 cross = (isProton) ? theGlauberFacP[Z] : theGlauberFacN[Z];
121 cross *= fGlauber->GetElasticGlauberGribov(dp, Z, theA[Z]);
123 cross = fNucleon->GetElasticCrossSection(dp, Z);
128 G4cout <<
"G4BGGNucleonElasticXS::GetElementCrossSection for "
131 <<
" in nucleus Z= " << Z <<
" A= " << theA[Z]
132 <<
" XS(b)= " << cross/barn
151 G4double cross =
A*fHadron->GetElasticHadronNucleonXsc();
155 G4cout <<
"G4BGGNucleonElasticXS::GetIsoCrossSection for "
158 <<
" in nucleus Z=1 A=" <<
A
159 <<
" XS(b)= " << cross/barn
171 isProton = (theProton == &p);
175 ed <<
"This BGG cross section is applicable only to nucleons and not to "
177 G4Exception(
"G4BGGNucleonElasticXS::BuildPhysicsTable",
"had001",
184void G4BGGNucleonElasticXS::Initialise()
186 theA[0] = theA[1] = 1;
193 for (
G4int iz=2; iz<93; ++iz) {
199 theGlauberFacP[iz] = csdn/csup;
203 for (
G4int iz=2; iz<93; ++iz) {
204 csup = fGlauber->GetElasticGlauberGribov(&dp, iz, theA[iz]);
205 csdn = fNucleon->GetElasticCrossSection(&dp, iz);
206 theGlauberFacN[iz] = csdn/csup;
209 G4cout <<
"G4BGGNucleonElasticXS::Initialise Z=" << iz <<
" A=" << theA[iz]
210 <<
" GFactorP=" << theGlauberFacP[iz]
211 <<
" GFactorN=" << theGlauberFacN[iz] <<
G4endl;
215 theCoulombFacP[0] = theCoulombFacP[1] =
216 theCoulombFacN[0] = theCoulombFacN[1] = 1.0;
217 dp.SetDefinition(theProton);
218 dp.SetKineticEnergy(fLowEnergy);
219 for (
G4int iz=2; iz<93; ++iz) {
220 theCoulombFacP[iz] = fNucleon->GetElasticCrossSection(&dp, iz)
221 /CoulombFactor(fLowEnergy, iz);
224 for(
G4int iz=2; iz<93; ++iz) {
225 theCoulombFacN[iz] = fNucleon->GetElasticCrossSection(&dp, iz)
226 /CoulombFactor(fLowEnergy, iz);
229 G4cout <<
"G4BGGNucleonElasticXS::Initialise Z=" << iz <<
" A=" << theA[iz]
230 <<
" CFactorP=" << theCoulombFacP[iz]
231 <<
" CFactorN=" << theCoulombFacN[iz] <<
G4endl;
248 outFile <<
"The Barashenkov-Glauber-Gribov cross section handles elastic\n"
249 <<
"scattering of protons and neutrons from nuclei using the\n"
250 <<
"Barashenkov parameterization below 91 GeV and the Glauber-Gribov\n"
251 <<
"parameterization above 91 GeV. n";
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
~G4BGGNucleonElasticXS() final
void CrossSectionDescription(std::ostream &) const final
G4double GetIsoCrossSection(const G4DynamicParticle *, G4int Z, G4int A, const G4Isotope *iso=nullptr, const G4Element *elm=nullptr, const G4Material *mat=nullptr) final
G4double GetElementCrossSection(const G4DynamicParticle *, G4int Z, const G4Material *mat) final
G4BGGNucleonElasticXS(const G4ParticleDefinition *)
void BuildPhysicsTable(const G4ParticleDefinition &) final
G4bool IsIsoApplicable(const G4DynamicParticle *, G4int Z, G4int A, const G4Element *elm, const G4Material *mat) final
G4bool IsElementApplicable(const G4DynamicParticle *, G4int Z, const G4Material *mat) final
G4double GetElasticGlauberGribov(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 GetElasticCrossSection(const G4DynamicParticle *aParticle, G4int Z)
const G4String & GetParticleName() const
static G4Proton * Proton()
G4VCrossSectionDataSet(const G4String &nam="")
void SetForAllAtomsAndEnergies(G4bool val)