Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
@@ -23,7 +23,7 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id$
// $Id: G4BGGNucleonElasticXS.hh 76889 2013-11-18 13:01:55Z gcosmo $
//
// -------------------------------------------------------------------
//
@@ -93,15 +93,22 @@ public:
void BuildPhysicsTable(const G4ParticleDefinition&);
virtual void CrossSectionDescription(std::ostream&) const;
inline void SetLowestCrossSection(G4double val);
private:
G4double CoulombFactor(G4double kinEnergy, G4int Z);
G4BGGNucleonElasticXS & operator=(const G4BGGNucleonElasticXS &right);
G4BGGNucleonElasticXS(const G4BGGNucleonElasticXS&);
G4double fGlauberEnergy;
G4double fPDGEnergy;
G4double fLowEnergy;
G4double fSAIDLowEnergyLimit;
G4double fSAIDHighEnergyLimit;
G4double fLowestXSection;
G4double theGlauberFac[93];
G4double theCoulombFac[93];
G4int theA[93];
@@ -116,4 +123,9 @@ private:
G4bool isInitialized;
};
inline void G4BGGNucleonElasticXS::SetLowestCrossSection(G4double val)
{
fLowestXSection = val;
}
#endif