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 77519 2013-11-25 10:54:57Z 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 printModulo(100), >> 57 nSelected(0), >> 58 drawFlag("all"), >> 59 debugStarted(false) 57 { 60 { 58 fEventMessenger = new EventActionMessenger(t << 61 eventMessenger = new EventActionMessenger(this); >> 62 UI = G4UImanager::GetUIpointer(); >> 63 selectedEvents.clear(); 59 } 64 } 60 65 61 //....oooOO0OOooo........oooOO0OOooo........oo 66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 62 67 63 EventAction::~EventAction() 68 EventAction::~EventAction() 64 { 69 { 65 delete fEventMessenger; << 70 delete eventMessenger; 66 } 71 } 67 72 68 //....oooOO0OOooo........oooOO0OOooo........oo 73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 69 74 70 void EventAction::BeginOfEventAction(const G4E 75 void EventAction::BeginOfEventAction(const G4Event* evt) 71 { 76 { 72 // New event 77 // New event 73 G4int nEvt = evt->GetEventID(); 78 G4int nEvt = evt->GetEventID(); 74 79 75 if (fNSelected > 0) { << 80 if(nSelected>0) { 76 for (G4int i = 0; i < fNSelected; i++) { << 81 for(G4int i=0; i<nSelected; i++) { 77 if (nEvt == fSelectedEvents[i]) { << 82 if(nEvt == selectedEvents[i]) { 78 G4UImanager::GetUIpointer()->ApplyComm << 83 UI->ApplyCommand("/random/saveThisEvent"); 79 G4UImanager::GetUIpointer()->ApplyComm << 84 UI->ApplyCommand("/tracking/verbose 2"); 80 fDebugStarted = true; << 85 debugStarted = true; 81 break; 86 break; 82 } 87 } 83 } 88 } 84 } 89 } 85 90 86 // Initialize user actions 91 // Initialize user actions 87 HistoManager* man = HistoManager::GetPointer 92 HistoManager* man = HistoManager::GetPointer(); 88 man->BeginOfEvent(); << 93 man->BeginOfEvent(); 89 if (man->GetVerbose() > 0) { << 94 if(man->GetVerbose() > 0 || G4int(nEvt/printModulo)*printModulo == nEvt) 90 G4cout << "EventAction: Event # " << nEvt << 95 G4cout << "EventAction: Event # " 91 } << 96 << nEvt << " started" << G4endl; >> 97 92 } 98 } 93 99 94 //....oooOO0OOooo........oooOO0OOooo........oo 100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 95 101 96 void EventAction::EndOfEventAction(const G4Eve 102 void EventAction::EndOfEventAction(const G4Event*) 97 { 103 { 98 if (fDebugStarted) { << 104 if(debugStarted) { 99 G4UImanager::GetUIpointer()->ApplyCommand( << 105 UI->ApplyCommand("/tracking/verbose 0"); 100 fDebugStarted = false; << 106 debugStarted = false; 101 } 107 } 102 108 103 HistoManager* man = HistoManager::GetPointer 109 HistoManager* man = HistoManager::GetPointer(); 104 man->EndOfEvent(); << 110 man->EndOfEvent(); 105 if (man->GetVerbose() > 1) G4cout << "EventA << 111 if(man->GetVerbose() > 1) 106 } << 112 G4cout << "EventAction: Event ended" << G4endl; 107 << 108 //....oooOO0OOooo........oooOO0OOooo........oo << 109 << 110 void EventAction::AddEventToDebug(G4int val) << 111 { << 112 fSelectedEvents.push_back(val); << 113 fNSelected++; << 114 } 113 } 115 114 116 //....oooOO0OOooo........oooOO0OOooo........oo 115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 117 116