Import Geant4 10.5.0 source tree

This commit is contained in:
Gabriele Cosmo
2018-12-07 15:15:39 +01:00
parent 6aa23be517
commit db49709b53
11370 changed files with 187480 additions and 160142 deletions
@@ -23,7 +23,6 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: G4LevelManager.hh 88516 2015-02-25 11:00:16Z vnivanch $
//
// -------------------------------------------------------------------
//
@@ -60,7 +59,7 @@ public:
// energies - list of excitation energies of nuclear levels starting
// from the ground state with energy zero
// spin - 2J, where J is the full angular momentum of the state
explicit G4LevelManager(size_t ntrans,
explicit G4LevelManager(G4int Z, G4int A, size_t ntrans,
const std::vector<G4double>& energies,
const std::vector<G4int>& spin,
const std::vector<const G4NucLevel*>& levels);
@@ -98,6 +97,12 @@ public:
inline G4int FloatingLevel(size_t i) const;
inline G4double PairingCorrection() const;
inline G4double ShellCorrection() const;
inline G4double LevelDensity(G4double U) const;
const G4String& FloatingType(size_t i) const;
void StreamInfo(std::ostream& os) const;
@@ -116,6 +121,10 @@ private:
std::vector<G4double> fLevelEnergy;
std::vector<G4int> fSpin;
std::vector<const G4NucLevel*> fLevels;
G4double fPairingCorrection;
G4double fShellCorrection;
G4double fLevelDensity;
size_t nTransitions;
@@ -209,4 +218,19 @@ inline G4int G4LevelManager::FloatingLevel(size_t i) const
return fSpin[i]/100000;
}
inline G4double G4LevelManager::PairingCorrection() const
{
return fPairingCorrection;
}
inline G4double G4LevelManager::ShellCorrection() const
{
return fShellCorrection;
}
inline G4double G4LevelManager::LevelDensity(G4double) const
{
return fLevelDensity;
}
#endif