source: trunk/examples/extended/hadronic/Hadr01/src/EventAction.cc@ 1330

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

update to geant4.9.3

  • Property svn:executable set to *
File size: 4.7 KB
RevLine 
[807]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// $Id: EventAction.cc,v 1.4 2007/05/16 11:43:30 vnivanch Exp $
[1230]27// GEANT4 tag $Name: geant4-09-03-cand-01 $
[807]28//
29/////////////////////////////////////////////////////////////////////////
30//
31// EventAction
32//
33// Created: 31.04.2006 V.Ivanchenko
34//
35// Modified:
36// 04.06.2006 Adoptation of hadr01 (V.Ivanchenko)
37//
38////////////////////////////////////////////////////////////////////////
39//
40
41#include "EventAction.hh"
42#include "G4Event.hh"
43#include "HistoManager.hh"
44#include "EventActionMessenger.hh"
45
46#include "G4UImanager.hh"
47#include "G4TrajectoryContainer.hh"
48#include "G4Trajectory.hh"
49#include "G4VVisManager.hh"
50#include "G4ios.hh"
51
52//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
53
54EventAction::EventAction():
55 printModulo(100),
56 nSelected(0),
57 drawFlag("all"),
58 debugStarted(false)
59{
60 eventMessenger = new EventActionMessenger(this);
61 UI = G4UImanager::GetUIpointer();
62 selectedEvents.clear();
63}
64
65//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
66
67EventAction::~EventAction()
68{
69 delete eventMessenger;
70}
71
72//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
73
74void EventAction::BeginOfEventAction(const G4Event* evt)
75{
76 // New event
77 G4int nEvt = evt->GetEventID();
78
79 if(nSelected>0) {
80 for(G4int i=0; i<nSelected; i++) {
81 if(nEvt == selectedEvents[i]) {
82 UI->ApplyCommand("/random/saveThisEvent");
83 UI->ApplyCommand("/tracking/verbose 2");
84 debugStarted = true;
85 break;
86 }
87 }
88 }
89
90 // Initialize user actions
91 HistoManager* man = HistoManager::GetPointer();
92 man->BeginOfEvent();
93 if(man->GetVerbose() > 0 || G4int(nEvt/printModulo)*printModulo == nEvt)
94 G4cout << "EventAction: Event # "
95 << nEvt << " started" << G4endl;
96
97}
98
99//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
100
101void EventAction::EndOfEventAction(const G4Event* evt)
102{
103 G4VVisManager* pVVisManager = G4VVisManager::GetConcreteInstance();
104
105 if(pVVisManager) {
106 G4TrajectoryContainer* trjc = evt->GetTrajectoryContainer();
107 G4int n_trajectories = 0;
108 if (trjc) n_trajectories = trjc->entries();
109
110 for(G4int i=0; i<n_trajectories; i++) {
111 G4Trajectory* t = (G4Trajectory*)((*(evt->GetTrajectoryContainer()))[i]);
112 if (drawFlag == "all") t->DrawTrajectory(1000);
113 else if ((drawFlag == "charged")&&(t->GetCharge() != 0.))
114 t->DrawTrajectory(1000);
115 else if ((drawFlag == "neutral")&&(t->GetCharge() == 0.))
116 t->DrawTrajectory(1000);
117 else if ((drawFlag == "charged+n")&&((t->GetCharge() != 0.)||
118 (t->GetCharge()==0.&&t->GetParticleName()=="neutron")))
119 t->DrawTrajectory(1000);
120 }
121 }
122
123 if(debugStarted) {
124 UI->ApplyCommand("/tracking/verbose 0");
125 debugStarted = false;
126 }
127
128 HistoManager* man = HistoManager::GetPointer();
129 man->EndOfEvent();
130 if(man->GetVerbose() > 1)
131 G4cout << "EventAction: Event ended" << G4endl;
132}
133
134//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
Note: See TracBrowser for help on using the repository browser.