Import Geant4 11.3.0 source tree

This commit is contained in:
Gabriele Cosmo
2024-12-06 11:11:40 +01:00
parent e58e650b32
commit 32390e802b
1984 changed files with 98713 additions and 83996 deletions
+2 -1
View File
@@ -96,10 +96,11 @@ class G4Run
// Returns random number status at the beginning of this run.
inline const G4String& GetRandomNumberStatus() const { return randomNumberStatus; }
// Returns the event vector.
// Returns the event vector and related numbers.
inline std::vector<const G4Event*>* GetEventVector() const { return eventVector; }
inline G4int GetEventVectorSize() const
{ return (eventVector!=nullptr) ? (G4int)(eventVector->size()) : 0; }
G4int GetNumberOfKeptEvents() const;
inline void SetRunID(G4int id) { runID = id; }
inline void SetNumberOfEventToBeProcessed(G4int n_ev) { numberOfEventToBeProcessed = n_ev; }