Import Geant4 11.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2021-12-10 14:46:44 +01:00
committed by Ben Morgan
parent 6399a014b6
commit 80e2389dd8
3932 changed files with 202519 additions and 246221 deletions
@@ -123,6 +123,8 @@ class G4KineticTrack : public G4VKineticNucleon
void SetProjectilePotential(const G4double aPotential);
G4double GetProjectilePotential() const;
void SetCreatorModelID(G4int id);
G4int GetCreatorModelID() const;
private:
@@ -186,6 +188,8 @@ public:
CascadeState theStateToNucleus;
G4double theProjectilePotential;
G4int theCreatorModel;
};
// extern G4Allocator<G4KineticTrack> theKTAllocator;
@@ -422,6 +426,17 @@ G4double G4KineticTrack::GetProjectilePotential() const
return theProjectilePotential;
}
inline
void G4KineticTrack::SetCreatorModelID(G4int id)
{
theCreatorModel = id;
}
inline
G4int G4KineticTrack::GetCreatorModelID() const
{
return theCreatorModel;
}
#endif