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 /// \file hadronic/Hadr02/src/EventAction.cc 26 /// \file hadronic/Hadr02/src/EventAction.cc 27 /// \brief Implementation of the EventAction c 27 /// \brief Implementation of the EventAction class 28 // 28 // >> 29 // $Id: EventAction.cc 81932 2014-06-06 15:39:45Z gcosmo $ 29 // 30 // 30 ////////////////////////////////////////////// 31 ///////////////////////////////////////////////////////////////////////// 31 // 32 // 32 // EventAction 33 // EventAction 33 // 34 // 34 // Created: 31.04.2006 V.Ivanchenko 35 // Created: 31.04.2006 V.Ivanchenko 35 // 36 // 36 // Modified: 37 // Modified: 37 // 04.06.2006 Adoptation of hadr01 (V.Ivanchen 38 // 04.06.2006 Adoptation of hadr01 (V.Ivanchenko) 38 // 39 // 39 ////////////////////////////////////////////// 40 //////////////////////////////////////////////////////////////////////// 40 // << 41 // 41 42 42 #include "EventAction.hh" 43 #include "EventAction.hh" 43 << 44 #include "EventActionMessenger.hh" << 45 #include "HistoManager.hh" << 46 << 47 #include "G4Event.hh" 44 #include "G4Event.hh" >> 45 #include "HistoManager.hh" >> 46 #include "EventActionMessenger.hh" 48 #include "G4PhysicalConstants.hh" 47 #include "G4PhysicalConstants.hh" 49 #include "G4SystemOfUnits.hh" 48 #include "G4SystemOfUnits.hh" >> 49 50 #include "G4UImanager.hh" 50 #include "G4UImanager.hh" 51 #include "G4ios.hh" 51 #include "G4ios.hh" 52 52 53 //....oooOO0OOooo........oooOO0OOooo........oo 53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 54 54 55 EventAction::EventAction() 55 EventAction::EventAction() 56 : G4UserEventAction(), fEventMessenger(0), f << 56 : G4UserEventAction(), >> 57 fEventMessenger(0), >> 58 fSelectedEvents(), >> 59 fNSelected(0), >> 60 fDebugStarted(false) 57 { 61 { 58 fEventMessenger = new EventActionMessenger(t 62 fEventMessenger = new EventActionMessenger(this); 59 } 63 } 60 64 61 //....oooOO0OOooo........oooOO0OOooo........oo 65 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 62 66 63 EventAction::~EventAction() 67 EventAction::~EventAction() 64 { 68 { 65 delete fEventMessenger; 69 delete fEventMessenger; 66 } 70 } 67 71 68 //....oooOO0OOooo........oooOO0OOooo........oo 72 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 69 73 70 void EventAction::BeginOfEventAction(const G4E 74 void EventAction::BeginOfEventAction(const G4Event* evt) 71 { 75 { 72 // New event 76 // New event 73 G4int nEvt = evt->GetEventID(); 77 G4int nEvt = evt->GetEventID(); 74 78 75 if (fNSelected > 0) { << 79 if (fNSelected>0) { 76 for (G4int i = 0; i < fNSelected; i++) { << 80 for(G4int i=0; i<fNSelected; i++) { 77 if (nEvt == fSelectedEvents[i]) { 81 if (nEvt == fSelectedEvents[i]) { 78 G4UImanager::GetUIpointer()->ApplyComm 82 G4UImanager::GetUIpointer()->ApplyCommand("/random/saveThisEvent"); 79 G4UImanager::GetUIpointer()->ApplyComm 83 G4UImanager::GetUIpointer()->ApplyCommand("/tracking/verbose 2"); 80 fDebugStarted = true; 84 fDebugStarted = true; 81 break; 85 break; 82 } 86 } 83 } 87 } 84 } 88 } 85 89 86 // Initialize user actions 90 // Initialize user actions 87 HistoManager* man = HistoManager::GetPointer 91 HistoManager* man = HistoManager::GetPointer(); 88 man->BeginOfEvent(); << 92 man->BeginOfEvent(); 89 if (man->GetVerbose() > 0) { << 93 if ( man->GetVerbose() > 0 ) { 90 G4cout << "EventAction: Event # " << nEvt 94 G4cout << "EventAction: Event # " << nEvt << " started" << G4endl; 91 } << 95 } 92 } 96 } 93 97 94 //....oooOO0OOooo........oooOO0OOooo........oo 98 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 95 99 96 void EventAction::EndOfEventAction(const G4Eve 100 void EventAction::EndOfEventAction(const G4Event*) 97 { 101 { 98 if (fDebugStarted) { 102 if (fDebugStarted) { 99 G4UImanager::GetUIpointer()->ApplyCommand( 103 G4UImanager::GetUIpointer()->ApplyCommand("/tracking/verbose 0"); 100 fDebugStarted = false; 104 fDebugStarted = false; 101 } 105 } 102 106 103 HistoManager* man = HistoManager::GetPointer 107 HistoManager* man = HistoManager::GetPointer(); 104 man->EndOfEvent(); << 108 man->EndOfEvent(); 105 if (man->GetVerbose() > 1) G4cout << "EventA << 109 if(man->GetVerbose() > 1) >> 110 G4cout << "EventAction: Event ended" << G4endl; 106 } 111 } 107 112 108 //....oooOO0OOooo........oooOO0OOooo........oo 113 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 109 114 110 void EventAction::AddEventToDebug(G4int val) << 115 void EventAction::AddEventToDebug(G4int val) 111 { 116 { 112 fSelectedEvents.push_back(val); 117 fSelectedEvents.push_back(val); 113 fNSelected++; 118 fNSelected++; 114 } 119 } 115 120 116 //....oooOO0OOooo........oooOO0OOooo........oo 121 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 117 122