--------------------------------------------------------------------
| 721 | |
| 722 | // -------------------------------------------------------------------- |
| 723 | void G4RunManager::AbortEvent() |
| 724 | { |
| 725 | // This method is valid only for EventProc state |
| 726 | G4ApplicationState currentState = G4StateManager::GetStateManager()->GetCurrentState(); |
| 727 | if (currentState == G4State_EventProc) { |
| 728 | currentEvent->SetEventAborted(); |
| 729 | eventManager->AbortCurrentEvent(); |
| 730 | } |
| 731 | else { |
| 732 | G4cerr << "Event is not in progress. AbortEevnt() ignored." << G4endl; |
| 733 | } |
| 734 | } |
| 735 | |
| 736 | // -------------------------------------------------------------------- |
| 737 | void G4RunManager::DefineWorldVolume(G4VPhysicalVolume* worldVol, G4bool topologyIsChanged) |
no test coverage detected