Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
@@ -69,12 +69,17 @@ public:
virtual G4ReactionProductVector*
Propagate(G4KineticTrackVector* theSecondaries, G4V3DNucleus* theNucleus);
virtual G4ReactionProductVector* // Uzhi Nov. 2012
virtual G4ReactionProductVector*
PropagateNuclNucl(G4KineticTrackVector* theSecondaries, G4V3DNucleus* theNucleus,
G4V3DNucleus* theProjectileNucleus);
inline void SetCaptureThreshold(G4double);
inline void SetDeltaM(G4double);
inline void SetDeltaR(G4double);
void MakeCoalescence(G4KineticTrackVector* theSecondaries);
virtual void PropagateModelDescription(std::ostream&) const;
private:
@@ -85,6 +90,9 @@ private:
G4bool operator!=(G4GeneratorPrecompoundInterface& right) {return (this != &right);}
G4double CaptureThreshold;
G4double DeltaM;
G4double DeltaR;
const G4ParticleDefinition* proton;
const G4ParticleDefinition* neutron;
@@ -105,9 +113,20 @@ private:
inline
void G4GeneratorPrecompoundInterface::SetCaptureThreshold(G4double value)
{
CaptureThreshold=value;
CaptureThreshold = value;
}
inline
void G4GeneratorPrecompoundInterface::SetDeltaM(G4double value)
{
DeltaM = value;
}
inline
void G4GeneratorPrecompoundInterface::SetDeltaR(G4double value)
{
DeltaR = value;
}
#endif // G4GeneratorPrecompoundInterface_h