Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4ExceptionHandler implementation << 27 // 26 // 28 // Author: M.Asai - August 2002 << 27 // $Id: G4ExceptionHandler.cc,v 1.4 2006/06/29 21:13:40 gunter Exp $ 29 // ------------------------------------------- << 28 // GEANT4 tag $Name: geant4-09-00 $ >> 29 // >> 30 // >> 31 // ------------------------------------------------------------ >> 32 // GEANT 4 class implementation file >> 33 // >> 34 // ---------------- G4ExceptionHandler ---------------- >> 35 // by Makoto Asai (August 2002) >> 36 // ------------------------------------------------------------ 30 37 31 #include "G4ExceptionHandler.hh" 38 #include "G4ExceptionHandler.hh" 32 << 33 #include "G4EventManager.hh" << 34 #include "G4Material.hh" << 35 #include "G4ParticleDefinition.hh" << 36 #include "G4RunManager.hh" << 37 #include "G4RunManagerKernel.hh" << 38 #include "G4StateManager.hh" 39 #include "G4StateManager.hh" 39 #include "G4Step.hh" << 40 #include "G4RunManager.hh" 40 #include "G4StepPoint.hh" << 41 #include "G4SteppingManager.hh" << 42 #include "G4String.hh" << 43 #include "G4Track.hh" << 44 #include "G4TrackingManager.hh" << 45 #include "G4UnitsTable.hh" << 46 #include "G4VPhysicalVolume.hh" << 47 #include "G4VProcess.hh" << 48 #include "G4ios.hh" 41 #include "G4ios.hh" >> 42 #include <stdlib.h> >> 43 #include "G4String.hh" 49 44 50 #include <cstdlib> << 45 G4ExceptionHandler::G4ExceptionHandler() >> 46 { >> 47 } 51 48 52 // ------------------------------------------- << 49 G4ExceptionHandler::~G4ExceptionHandler() 53 G4bool G4ExceptionHandler::operator==(const G4 << 54 { 50 { 55 return (this == &right); << 56 } 51 } 57 52 58 // ------------------------------------------- << 53 G4ExceptionHandler::G4ExceptionHandler(const G4ExceptionHandler &) 59 G4bool G4ExceptionHandler::operator!=(const G4 << 54 :G4VExceptionHandler() 60 { 55 { 61 return (this != &right); << 62 } 56 } 63 57 64 // ------------------------------------------- << 58 G4ExceptionHandler& G4ExceptionHandler::operator=(const G4ExceptionHandler &) 65 G4bool G4ExceptionHandler::Notify(const char* << 66 G4ExceptionS << 67 { 59 { 68 static const G4String es_banner = << 60 return *this; 69 "\n-------- EEEE ------- G4Exception-START << 70 static const G4String ee_banner = << 71 "\n-------- EEEE -------- G4Exception-END << 72 static const G4String ws_banner = << 73 "\n-------- WWWW ------- G4Exception-START << 74 static const G4String we_banner = << 75 "\n-------- WWWW -------- G4Exception-END << 76 std::ostringstream message; << 77 message << "*** G4Exception : " << exception << 78 << " issued by : " << originOfE << 79 G4bool abortionForCoreDump = false; << 80 G4ApplicationState aps = G4StateManager::Get << 81 switch (severity) { << 82 case FatalException: << 83 G4cerr << es_banner << message.str() << << 84 DumpTrackInfo(); << 85 G4cerr << ee_banner << G4endl; << 86 abortionForCoreDump = true; << 87 break; << 88 case FatalErrorInArgument: << 89 G4cerr << es_banner << message.str() << << 90 << G4endl; << 91 DumpTrackInfo(); << 92 G4cerr << ee_banner << G4endl; << 93 abortionForCoreDump = true; << 94 break; << 95 case RunMustBeAborted: << 96 if (aps == G4State_GeomClosed || aps == << 97 G4cerr << es_banner << message.str() < << 98 DumpTrackInfo(); << 99 G4cerr << ee_banner << G4endl; << 100 G4RunManager::GetRunManager()->AbortRu << 101 } << 102 abortionForCoreDump = false; << 103 break; << 104 case EventMustBeAborted: << 105 if (aps == G4State_EventProc) { << 106 G4cerr << es_banner << message.str() < << 107 DumpTrackInfo(); << 108 G4cerr << ee_banner << G4endl; << 109 G4RunManager::GetRunManager()->AbortEv << 110 } << 111 abortionForCoreDump = false; << 112 break; << 113 case JustWarning: << 114 G4cout << ws_banner << message.str() << << 115 << G4endl; << 116 abortionForCoreDump = false; << 117 break; << 118 default: << 119 abortionForCoreDump = false; << 120 break; << 121 } << 122 return abortionForCoreDump; << 123 } 61 } 124 62 125 // ------------------------------------------- << 63 G4int G4ExceptionHandler::operator==(const G4ExceptionHandler &right) const 126 void G4ExceptionHandler::DumpTrackInfo() << 127 { 64 { 128 const G4Track* theTrack = nullptr; << 65 return (this == &right); 129 const G4Step* theStep = nullptr; << 66 } 130 if (G4StateManager::GetStateManager()->GetCu << 131 G4SteppingManager* steppingMgr = << 132 G4RunManagerKernel::GetRunManagerKernel( << 133 theTrack = steppingMgr->GetfTrack(); << 134 theStep = steppingMgr->GetfStep(); << 135 } << 136 67 137 if (theTrack == nullptr) { << 68 G4int G4ExceptionHandler::operator!=(const G4ExceptionHandler &right) const 138 G4cerr << " **** Track information is not << 69 { 139 } << 70 return (this != &right); 140 else { << 71 } 141 G4cerr << "G4Track (" << theTrack << ") - << 142 << ", parent ID = " << theTrack->Ge << 143 G4cerr << " Particle type : " << theTrack- << 144 if (theTrack->GetCreatorProcess() != nullp << 145 G4cerr << " - creator process : " << the << 146 << ", creator model : " << theTra << 147 } << 148 else { << 149 G4cerr << " - creator process : not avai << 150 } << 151 G4cerr << " Kinetic energy : " << G4BestUn << 152 << " - Momentum direction : " << th << 153 } << 154 72 155 if (theStep == nullptr) { << 73 G4bool G4ExceptionHandler::Notify(const char* originOfException, 156 G4cerr << " **** Step information is not a << 74 const char* exceptionCode, 157 } << 75 G4ExceptionSeverity severity, 158 else { << 76 const char* description) 159 G4cerr << " Step length : " << G4BestUnit( << 77 { 160 << " - total energy deposit : " << << 78 G4cerr << G4endl; 161 << G4endl; << 79 G4cerr << "*** G4Exception : " << exceptionCode << G4endl; 162 G4cerr << " Pre-step point : " << theStep- << 80 G4cerr << " issued by : " << originOfException << G4endl; 163 G4cerr << " - Physical volume : "; << 81 G4cerr << description << G4endl; 164 if (theStep->GetPreStepPoint()->GetPhysica << 82 G4bool abortionForCoreDump = false; 165 G4cerr << theStep->GetPreStepPoint()->Ge << 83 G4ApplicationState aps = G4StateManager::GetStateManager()->GetCurrentState(); 166 if (theStep->GetPreStepPoint()->GetMater << 84 switch(severity) 167 G4cerr << " (" << theStep->GetPreStepP << 85 { 168 } << 86 case FatalException: 169 else { << 87 G4cerr << "*** Fatal Exception *** core dump ***"; 170 G4cerr << " (material not available)"; << 88 abortionForCoreDump = true; 171 } << 89 break; 172 } << 90 case FatalErrorInArgument: 173 else { << 91 G4cerr << "*** Fatal Error In Argument *** core dump ***"; 174 G4cerr << "not available"; << 92 abortionForCoreDump = true; 175 } << 93 break; 176 G4cerr << G4endl; << 94 case RunMustBeAborted: 177 if (theStep->GetPreStepPoint()->GetProcess << 95 if(aps==G4State_GeomClosed || aps==G4State_EventProc) 178 G4cerr << " - defined by : " << 96 { 179 << theStep->GetPreStepPoint()->Ge << 97 G4cerr << "*** Run Must Be Aborted "; 180 << " - step status : " << theStep << 98 G4RunManager::GetRunManager()->AbortRun(false); 181 } << 99 } 182 else { << 100 abortionForCoreDump = false; 183 G4cerr << " - defined by : not available << 101 break; 184 } << 102 case EventMustBeAborted: 185 G4cerr << " Post-step point : " << theStep << 103 if(aps==G4State_EventProc) 186 G4cerr << " - Physical volume : "; << 104 { 187 if (theStep->GetPostStepPoint()->GetPhysic << 105 G4cerr << "*** Event Must Be Aborted "; 188 G4cerr << theStep->GetPostStepPoint()->G << 106 G4RunManager::GetRunManager()->AbortEvent(); 189 if (theStep->GetPostStepPoint()->GetMate << 107 } 190 G4cerr << " (" << theStep->GetPostStep << 108 abortionForCoreDump = false; 191 } << 109 break; 192 else { << 110 default: 193 G4cerr << " (material not available)"; << 111 G4cerr << "*** This is just a warning message."; 194 } << 112 abortionForCoreDump = false; 195 } << 113 break; 196 else { << 197 G4cerr << "not available"; << 198 } << 199 G4cerr << G4endl; << 200 if (theStep->GetPostStepPoint()->GetProces << 201 G4cerr << " - defined by : " << 202 << theStep->GetPostStepPoint()->G << 203 << " - step status : " << theStep << 204 } << 205 else { << 206 G4cerr << " - defined by : not available << 207 } << 208 G4cerr << " *** Note: Step information mig << 209 } 114 } >> 115 G4cerr << G4endl; >> 116 return abortionForCoreDump; 210 } 117 } >> 118 >> 119 211 120