Import Geant4 10.3.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2016-06-30 14:12:05 +02:00
parent a654a7ab1f
commit 4ec577e5c4
2021 changed files with 100995 additions and 78277 deletions
+3 -3
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4Track.hh 91231 2015-06-26 10:40:45Z gcosmo $
// $Id: G4Track.hh 94983 2016-01-13 11:02:33Z gcosmo $
//
//
//---------------------------------------------------------------
@@ -258,7 +258,7 @@ public: // With description
// User information
G4VUserTrackInformation* GetUserInformation() const;
void SetUserInformation(G4VUserTrackInformation* aValue);
void SetUserInformation(G4VUserTrackInformation* aValue) const;
// Velocity table
static void SetVelocityTableProperties(G4double t_max, G4double t_min, G4int nbin);
@@ -312,7 +312,7 @@ public: // With description
const G4VProcess* fpCreatorProcess; // Process which created the track
G4int fCreatorModelIndex; // Index of the physics model which created the track
G4VUserTrackInformation* fpUserInformation;
mutable G4VUserTrackInformation* fpUserInformation;
// cached values for CalculateVelocity
mutable G4Material* prev_mat;
+2 -2
View File
@@ -24,7 +24,7 @@
// ********************************************************************
//
//
// $Id: G4Track.icc 83388 2014-08-21 14:29:33Z gcosmo $
// $Id: G4Track.icc 94983 2016-01-13 11:02:33Z gcosmo $
//
//-----------------------------------------------------------------
// Definitions of inline functions
@@ -310,7 +310,7 @@ extern G4TRACK_DLL G4ThreadLocal G4Allocator<G4Track> *aTrackAllocator;
// user information
inline G4VUserTrackInformation* G4Track::GetUserInformation() const
{ return fpUserInformation; }
inline void G4Track::SetUserInformation(G4VUserTrackInformation* aValue)
inline void G4Track::SetUserInformation(G4VUserTrackInformation* aValue) const
{ fpUserInformation = aValue; }
inline const G4Step* G4Track::GetStep() const