Geant4  10.00.p01
EventAction.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
28 //
29 // $Id: EventAction.cc 77519 2013-11-25 10:54:57Z gcosmo $
30 //
32 //
33 // EventAction
34 //
35 // Created: 31.04.2006 V.Ivanchenko
36 //
37 // Modified:
38 // 04.06.2006 Adoptation of hadr01 (V.Ivanchenko)
39 //
41 //
42 
43 #include "EventAction.hh"
44 #include "G4Event.hh"
45 #include "HistoManager.hh"
46 #include "EventActionMessenger.hh"
47 #include "G4PhysicalConstants.hh"
48 #include "G4SystemOfUnits.hh"
49 
50 #include "G4UImanager.hh"
51 #include "G4ios.hh"
52 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
54 
56  printModulo(100),
57  nSelected(0),
58  drawFlag("all"),
59  debugStarted(false)
60 {
63  selectedEvents.clear();
64 }
65 
66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
67 
69 {
70  delete eventMessenger;
71 }
72 
73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
74 
76 {
77  // New event
78  G4int nEvt = evt->GetEventID();
79 
80  if(nSelected>0) {
81  for(G4int i=0; i<nSelected; i++) {
82  if(nEvt == selectedEvents[i]) {
83  UI->ApplyCommand("/random/saveThisEvent");
84  UI->ApplyCommand("/tracking/verbose 2");
85  debugStarted = true;
86  break;
87  }
88  }
89  }
90 
91  // Initialize user actions
93  man->BeginOfEvent();
94  if(man->GetVerbose() > 0 || G4int(nEvt/printModulo)*printModulo == nEvt)
95  G4cout << "EventAction: Event # "
96  << nEvt << " started" << G4endl;
97 
98 }
99 
100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
101 
103 {
104  if(debugStarted) {
105  UI->ApplyCommand("/tracking/verbose 0");
106  debugStarted = false;
107  }
108 
110  man->EndOfEvent();
111  if(man->GetVerbose() > 1)
112  G4cout << "EventAction: Event ended" << G4endl;
113 }
114 
115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
G4int nSelected
Definition: EventAction.hh:78
G4int printModulo
Definition: EventAction.hh:86
void BeginOfEventAction(const G4Event *)
Definition: EventAction.cc:66
void EndOfEvent()
G4bool debugStarted
Definition: EventAction.hh:82
G4UImanager * UI
Definition: EventAction.hh:74
int G4int
Definition: G4Types.hh:78
static G4UImanager * GetUIpointer()
Definition: G4UImanager.cc:58
G4int GetEventID() const
Definition: G4Event.hh:140
void EndOfEventAction(const G4Event *)
Definition: EventAction.cc:91
G4GLOB_DLL std::ostream G4cout
void BeginOfEvent()
EventActionMessenger * eventMessenger
Definition: EventAction.hh:87
G4int GetVerbose() const
#define G4endl
Definition: G4ios.hh:61
std::vector< G4int > selectedEvents
Definition: EventAction.hh:75
static HistoManager * GetPointer()
Definition: HistoManager.cc:58
G4int ApplyCommand(const char *aCommand)
Definition: G4UImanager.cc:419