Geant4  10.03.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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(-1),
49  fCollID_patient(-1)
50 {}
51 
52 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
53 
55 { }
56 
57 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
58 
60 { }
61 
62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63 
65 {
66  //Hits collections
67  //
68  G4HCofThisEvent* HCE = evt->GetHCofThisEvent();
69  if(!HCE) return;
70 
71  // Get hits collections IDs
72  if (fCollID_cryst < 0) {
74  fCollID_cryst = SDMan->GetCollectionID("crystal/edep");
75  fCollID_patient = SDMan->GetCollectionID("patient/dose");
76  }
77 
78  //Energy in crystals : identify 'good events'
79  //
80  const G4double eThreshold = 500*keV;
81  G4int nbOfFired = 0;
82 
83  G4THitsMap<G4double>* evtMap =
84  (G4THitsMap<G4double>*)(HCE->GetHC(fCollID_cryst));
85 
86  std::map<G4int,G4double*>::iterator itr;
87  for (itr = evtMap->GetMap()->begin(); itr != evtMap->GetMap()->end(); itr++) {
89  G4double edep = *(itr->second);
90  if (edep > eThreshold) nbOfFired++;
92  }
93  if (nbOfFired == 2) fRunAction->CountEvent();
94 
95  //Dose deposit in patient
96  //
97  G4double dose = 0.;
98 
99  evtMap = (G4THitsMap<G4double>*)(HCE->GetHC(fCollID_patient));
100 
101  for (itr = evtMap->GetMap()->begin(); itr != evtMap->GetMap()->end(); itr++) {
103  dose = *(itr->second);
104  }
105  if (dose > 0.) fRunAction->SumDose(dose);
106 }
107 
108 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
G4VHitsCollection * GetHC(G4int i)
G4int GetCollectionID(G4String colName)
Definition: G4SDManager.cc:135
Definition of the B3aRunAction class.
Definition of the B3aEventAction class.
int G4int
Definition: G4Types.hh:78
void SumDose(G4double dose)
Definition: B3aRunAction.hh:50
void CountEvent()
Definition: B3aRunAction.hh:49
virtual void EndOfEventAction(const G4Event *)
virtual ~B3aEventAction()
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:99
virtual void BeginOfEventAction(const G4Event *)
G4HCofThisEvent * GetHCofThisEvent() const
Definition: G4Event.hh:185
double G4double
Definition: G4Types.hh:76
static constexpr double keV
Definition: G4SIunits.hh:216