Geant4  10.02
B3aEventAction.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 //
26 // $Id$
27 //
30 
31 #include "B3aEventAction.hh"
32 #include "B3aRunAction.hh"
33 
34 #include "G4RunManager.hh"
35 #include "G4Event.hh"
36 
37 #include "G4SDManager.hh"
38 #include "G4HCofThisEvent.hh"
39 #include "G4THitsMap.hh"
40 #include "G4UnitsTable.hh"
41 #include "G4SystemOfUnits.hh"
42 
43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
44 
46  : G4UserEventAction(),
47  fRunAction(runAction),
48  fCollID_cryst(0),
49  fCollID_patient(0)
50 {}
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53 
55 { }
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58 
60 {
61  G4int evtNb = evt->GetEventID();
62 
63  if (evtNb == 0) {
65  fCollID_cryst = SDMan->GetCollectionID("crystal/edep");
66  fCollID_patient = SDMan->GetCollectionID("patient/dose");
67  }
68 }
69 
70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
71 
73 {
74  //Hits collections
75  //
76  G4HCofThisEvent* HCE = evt->GetHCofThisEvent();
77  if(!HCE) return;
78 
79  //Energy in crystals : identify 'good events'
80  //
81  const G4double eThreshold = 500*keV;
82  G4int nbOfFired = 0;
83 
84  G4THitsMap<G4double>* evtMap =
86 
87  std::map<G4int,G4double*>::iterator itr;
88  for (itr = evtMap->GetMap()->begin(); itr != evtMap->GetMap()->end(); itr++) {
90  G4double edep = *(itr->second);
91  if (edep > eThreshold) nbOfFired++;
93  }
94  if (nbOfFired == 2) fRunAction->CountEvent();
95 
96  //Dose deposit in patient
97  //
98  G4double dose = 0.;
99 
100  evtMap = (G4THitsMap<G4double>*)(HCE->GetHC(fCollID_patient));
101 
102  for (itr = evtMap->GetMap()->begin(); itr != evtMap->GetMap()->end(); itr++) {
104  dose = *(itr->second);
105  }
106  if (dose > 0.) fRunAction->SumDose(dose);
107 }
108 
109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4VHitsCollection * GetHC(G4int i)
G4int GetCollectionID(G4String colName)
Definition: G4SDManager.cc:131
Definition of the B3aRunAction class.
Definition of the B3aEventAction class.
int G4int
Definition: G4Types.hh:78
G4int GetEventID() const
Definition: G4Event.hh:151
void SumDose(G4double dose)
Definition: B3aRunAction.hh:50
void CountEvent()
Definition: B3aRunAction.hh:49
virtual void EndOfEventAction(const G4Event *)
virtual ~B3aEventAction()
B3aRunAction * fRunAction
static G4SDManager * GetSDMpointer()
Definition: G4SDManager.cc:40
B3aEventAction(B3aRunAction *runAction)
Run action class.
Definition: B3aRunAction.hh:40
std::map< G4int, T * > * GetMap() const
Definition: G4THitsMap.hh:68
virtual void BeginOfEventAction(const G4Event *)
static const double keV
Definition: G4SIunits.hh:213
G4HCofThisEvent * GetHCofThisEvent() const
Definition: G4Event.hh:185
double G4double
Definition: G4Types.hh:76