Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // G4ExceptionHandler implementation << 27 // 23 // 28 // Author: M.Asai - August 2002 << 24 // $Id: G4ExceptionHandler.cc,v 1.3 2003/05/21 21:06:01 asaim Exp $ 29 // ------------------------------------------- << 25 // GEANT4 tag $Name: geant4-07-00-cand-01 $ >> 26 // >> 27 // >> 28 // ------------------------------------------------------------ >> 29 // GEANT 4 class implementation file >> 30 // >> 31 // ---------------- G4ExceptionHandler ---------------- >> 32 // by Makoto Asai (August 2002) >> 33 // ------------------------------------------------------------ 30 34 31 #include "G4ExceptionHandler.hh" 35 #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" 36 #include "G4StateManager.hh" 39 #include "G4Step.hh" << 37 #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" 38 #include "G4ios.hh" >> 39 #include <stdlib.h> >> 40 #include "G4String.hh" 49 41 50 #include <cstdlib> << 42 G4ExceptionHandler::G4ExceptionHandler() >> 43 { >> 44 } 51 45 52 // ------------------------------------------- << 46 G4ExceptionHandler::~G4ExceptionHandler() 53 G4bool G4ExceptionHandler::operator==(const G4 << 54 { 47 { 55 return (this == &right); << 56 } 48 } 57 49 58 // ------------------------------------------- << 50 G4ExceptionHandler::G4ExceptionHandler(const G4ExceptionHandler &) 59 G4bool G4ExceptionHandler::operator!=(const G4 << 51 :G4VExceptionHandler() 60 { 52 { 61 return (this != &right); << 62 } 53 } 63 54 64 // ------------------------------------------- << 55 G4ExceptionHandler& G4ExceptionHandler::operator=(const G4ExceptionHandler &) 65 G4bool G4ExceptionHandler::Notify(const char* << 66 G4ExceptionS << 67 { 56 { 68 static const G4String es_banner = << 57 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 } 58 } 124 59 125 // ------------------------------------------- << 60 G4int G4ExceptionHandler::operator==(const G4ExceptionHandler &right) const 126 void G4ExceptionHandler::DumpTrackInfo() << 127 { 61 { 128 const G4Track* theTrack = nullptr; << 62 return (this == &right); 129 const G4Step* theStep = nullptr; << 63 } 130 if (G4StateManager::GetStateManager()->GetCu << 131 G4SteppingManager* steppingMgr = << 132 G4RunManagerKernel::GetRunManagerKernel( << 133 theTrack = steppingMgr->GetfTrack(); << 134 theStep = steppingMgr->GetfStep(); << 135 } << 136 64 137 if (theTrack == nullptr) { << 65 G4int G4ExceptionHandler::operator!=(const G4ExceptionHandler &right) const 138 G4cerr << " **** Track information is not << 66 { 139 } << 67 return (this != &right); 140 else { << 68 } 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 69 155 if (theStep == nullptr) { << 70 G4bool G4ExceptionHandler::Notify(const char* originOfException, 156 G4cerr << " **** Step information is not a << 71 const char* exceptionCode, 157 } << 72 G4ExceptionSeverity severity, 158 else { << 73 const char* description) 159 G4cerr << " Step length : " << G4BestUnit( << 74 { 160 << " - total energy deposit : " << << 75 G4cerr << G4endl; 161 << G4endl; << 76 G4cerr << "*** G4Exception : " << exceptionCode << G4endl; 162 G4cerr << " Pre-step point : " << theStep- << 77 G4cerr << " issued by : " << originOfException << G4endl; 163 G4cerr << " - Physical volume : "; << 78 G4cerr << description << G4endl; 164 if (theStep->GetPreStepPoint()->GetPhysica << 79 G4bool abortionForCoreDump = false; 165 G4cerr << theStep->GetPreStepPoint()->Ge << 80 G4ApplicationState aps = G4StateManager::GetStateManager()->GetCurrentState(); 166 if (theStep->GetPreStepPoint()->GetMater << 81 switch(severity) 167 G4cerr << " (" << theStep->GetPreStepP << 82 { 168 } << 83 case FatalException: 169 else { << 84 G4cerr << "*** Fatal Exception *** core dump ***"; 170 G4cerr << " (material not available)"; << 85 abortionForCoreDump = true; 171 } << 86 break; 172 } << 87 case FatalErrorInArgument: 173 else { << 88 G4cerr << "*** Fatal Error In Argument *** core dump ***"; 174 G4cerr << "not available"; << 89 abortionForCoreDump = true; 175 } << 90 break; 176 G4cerr << G4endl; << 91 case RunMustBeAborted: 177 if (theStep->GetPreStepPoint()->GetProcess << 92 if(aps==G4State_GeomClosed || aps==G4State_EventProc) 178 G4cerr << " - defined by : " << 93 { 179 << theStep->GetPreStepPoint()->Ge << 94 G4cerr << "*** Run Must Be Aborted "; 180 << " - step status : " << theStep << 95 G4RunManager::GetRunManager()->AbortRun(false); 181 } << 96 } 182 else { << 97 abortionForCoreDump = false; 183 G4cerr << " - defined by : not available << 98 break; 184 } << 99 case EventMustBeAborted: 185 G4cerr << " Post-step point : " << theStep << 100 if(aps==G4State_EventProc) 186 G4cerr << " - Physical volume : "; << 101 { 187 if (theStep->GetPostStepPoint()->GetPhysic << 102 G4cerr << "*** Event Must Be Aborted "; 188 G4cerr << theStep->GetPostStepPoint()->G << 103 G4RunManager::GetRunManager()->AbortEvent(); 189 if (theStep->GetPostStepPoint()->GetMate << 104 } 190 G4cerr << " (" << theStep->GetPostStep << 105 abortionForCoreDump = false; 191 } << 106 break; 192 else { << 107 default: 193 G4cerr << " (material not available)"; << 108 G4cerr << "*** This is just a warning message."; 194 } << 109 abortionForCoreDump = false; 195 } << 110 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 } 111 } >> 112 G4cerr << G4endl; >> 113 return abortionForCoreDump; 210 } 114 } >> 115 >> 116 211 117