Import Geant4 11.3.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2024-06-28 13:08:51 +02:00
parent f7b23877ed
commit e58e650b32
5232 changed files with 239416 additions and 244360 deletions
@@ -243,3 +243,17 @@ G4String G4StateManager::GetStateString(const G4ApplicationState& aState) const
// --------------------------------------------------------------------
void G4StateManager::SetVerboseLevel(G4int val) { verboseLevel = val; }
// --------------------------------------------------------------------
void G4StateManager::NotifyDeletion(const G4Event* evt)
{
for(auto& d : theDependentsList)
{ d->NotifyDeletion(evt); }
}
// --------------------------------------------------------------------
void G4StateManager::NotifyDeletion(const G4Run* rn)
{
for(auto& d : theDependentsList)
{ d->NotifyDeletion(rn); }
}