source: trunk/examples/extended/radioactivedecay/exrdm/src/exrdmEventAction.cc@ 1330

Last change on this file since 1330 was 1230, checked in by garnier, 16 years ago

update to geant4.9.3

File size: 3.5 KB
Line 
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//
26// CHANGE HISTORY
27// --------------
28#include "G4ios.hh"
29#include "exrdmEventActionMessenger.hh"
30#include "exrdmEventAction.hh"
31#include "G4Event.hh"
32#include "G4EventManager.hh"
33#include "G4HCofThisEvent.hh"
34#include "G4TrajectoryContainer.hh"
35#include "G4Trajectory.hh"
36#include "G4VVisManager.hh"
37#include "G4UImanager.hh"
38#include "G4UnitsTable.hh"
39#include "exrdmAnalysisManager.hh"
40
41extern G4bool drawEvent;
42
43//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
44
45exrdmEventAction::exrdmEventAction()
46 : drawFlag("all")
47{
48 eventMessenger = new exrdmEventActionMessenger(this);
49}
50
51//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
52
53exrdmEventAction::~exrdmEventAction()
54{
55 delete eventMessenger;
56}
57
58//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
59
60void exrdmEventAction::BeginOfEventAction(const G4Event* )
61{
62 exrdmAnalysisManager::getInstance()->BeginOfEvent();
63}
64
65//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
66
67void exrdmEventAction::EndOfEventAction(const G4Event* evt)
68{
69 //analysis
70 exrdmAnalysisManager::getInstance()->EndOfEvent();
71 // visualisation
72#ifdef G4VIS_USE
73 G4int event_id = evt->GetEventID();
74 if (event_id < 100 && G4VVisManager::GetConcreteInstance()) {
75 G4TrajectoryContainer * trajectoryContainer = evt->GetTrajectoryContainer();
76 G4int n_trajectories = 0;
77 if (trajectoryContainer) n_trajectories = trajectoryContainer->entries();
78 for (G4int i=0; i<n_trajectories; i++) {
79 G4Trajectory* trj = (G4Trajectory *)
80 ((*(evt->GetTrajectoryContainer()))[i]);
81 if (drawFlag == "all") {
82 trj->DrawTrajectory(0);
83 } else if (drawFlag == "charged" && trj->GetCharge() != 0.) {
84 trj->DrawTrajectory(0);
85 }
86 }
87 }
88#endif
89}
90
91//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
Note: See TracBrowser for help on using the repository browser.