source: trunk/examples/advanced/human_phantom/src/G4HumanPhantomEventAction.cc@ 1313

Last change on this file since 1313 was 807, checked in by garnier, 17 years ago

update

File size: 5.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// Authors: S. Guatelli and M. G. Pia, INFN Genova, Italy
27//
28// Based on code developed by the undergraduate student G. Guerrieri
29// Note: this is a preliminary beta-version of the code; an improved
30// version will be distributed in the next Geant4 public release, compliant
31// with the design in a forthcoming publication, and subject to a
32// design and code review.
33//
34#include "G4HumanPhantomEventAction.hh"
35#include "G4HumanPhantomHit.hh"
36#include "G4Event.hh"
37#include "G4EventManager.hh"
38#include "G4TrajectoryContainer.hh"
39#include "G4Trajectory.hh"
40#include "G4VVisManager.hh"
41#include "G4ios.hh"
42#include "G4SDManager.hh"
43#include "G4UnitsTable.hh"
44#include "G4HumanPhantomRunAction.hh"
45#include "G4RunManager.hh"
46
47G4HumanPhantomEventAction::G4HumanPhantomEventAction():
48hitCollectionID(-1)
49{
50
51}
52
53G4HumanPhantomEventAction::~G4HumanPhantomEventAction()
54{
55}
56
57void G4HumanPhantomEventAction::BeginOfEventAction(const G4Event*)
58{
59 energyTotal["logicalHead"]=0.;
60 energyTotal["logicalTrunk"]=0.;
61 energyTotal["logicalLeftLeg"]=0.;
62 energyTotal["logicalRightLeg"]=0.;
63 energyTotal["logicalBrain"]=0.;
64 energyTotal["logicalLeftArmBone"]=0.;
65 energyTotal["logicalRightArmBone"]=0.;
66 energyTotal["logicalSkull"]=0.;
67 energyTotal["logicalUpperSpine"]=0.;
68 energyTotal["logicalMiddleLowerSpine"]=0.;
69 energyTotal["logicalPelvis"]=0.;
70 energyTotal["logicalStomach"]=0.;
71 energyTotal["logicalUpperLargeIntestine"]=0.;
72 energyTotal["logicalLowerLargeIntestine"]=0.;
73 energyTotal["logicalRibCage"]=0.;
74 energyTotal["logicalSpleen"]=0.;
75 energyTotal["logicalPancreas"]=0.;
76 energyTotal["logicalLeftKidney"]=0.;
77 energyTotal["logicalRightKidney"]=0.;
78 energyTotal["logicalUrinaryBladder"]=0.;
79 energyTotal["logicalUterus"]=0.;
80 energyTotal["logicalLeftLung"]=0.;
81 energyTotal["logicalRightLung"]=0.;
82 energyTotal["logicalLeftOvary"]=0.;
83 energyTotal["logicalRightOvary"]=0.;
84 energyTotal["logicalLeftLegBone"]=0.;
85 energyTotal["logicalRightLegBone"]=0.;
86 energyTotal["logicalLeftBreast"]=0.;
87 energyTotal["logicalRightBreast"]=0.;
88 energyTotal["logicalLeftScapula"]=0.;
89 energyTotal["logicalRightScapula"]=0.;
90 energyTotal["logicalLeftAdrenal"]=0.;
91 energyTotal["logicalRightADrenal"]=0.;
92 G4SDManager * SDman = G4SDManager::GetSDMpointer();
93
94 if (hitCollectionID==-1) {
95 hitCollectionID = SDman->GetCollectionID("HumanPhantomCollection");
96 }
97}
98
99void G4HumanPhantomEventAction::EndOfEventAction(const G4Event* evt)
100{
101
102 G4HCofThisEvent* HCE = evt->GetHCofThisEvent();
103
104 G4HumanPhantomHitsCollection* HC = 0;
105
106 if (HCE)
107 HC = (G4HumanPhantomHitsCollection*)(HCE->GetHC(hitCollectionID));
108
109 if (HC)
110 {
111 G4int hitNumber = HC->entries();
112 G4double edep =0;
113 G4String bodyPart;
114 for (G4int i=0;i<hitNumber;i++)
115 {
116 edep = (*HC)[i]->GetEdep();
117 bodyPart = (*HC)[i]->GetBodyPartID();
118 Fill(bodyPart, edep);
119 // if(edep !=0.) G4cout << bodyPart <<": "<< edep/MeV << G4endl;
120 }
121 }
122
123 totalEventEnergyDeposit();
124
125
126 // Visualization of particle tracks
127 G4TrajectoryContainer* trajectoryContainer = evt->GetTrajectoryContainer();
128 G4int n_trajectories = 0;
129 if (trajectoryContainer) n_trajectories = trajectoryContainer->entries();
130
131 if (G4VVisManager::GetConcreteInstance())
132 {
133 for (G4int i=0; i<n_trajectories; i++)
134 { G4Trajectory* trj = (G4Trajectory*)
135 ((*(evt->GetTrajectoryContainer()))[i]);
136 trj->DrawTrajectory(500);
137 }
138 }
139}
140
141void G4HumanPhantomEventAction:: Fill(G4String bodypartName,
142 G4double energyDeposit)
143
144{
145 energyTotal[bodypartName] += energyDeposit;
146}
147
148void G4HumanPhantomEventAction::totalEventEnergyDeposit()
149{
150
151 G4RunManager* runManager = G4RunManager::GetRunManager();
152 G4HumanPhantomRunAction* pointerRun = (G4HumanPhantomRunAction*)(runManager->GetUserRunAction());
153
154 std::map<std::string,G4double>::iterator i = energyTotal.begin();
155 std::map<std::string,G4double>::iterator end = energyTotal.end();
156
157 while(i!=end)
158 {
159
160 G4String bodypart = i->first;
161 G4double energyDep = i->second;
162
163 if(energyDep != 0.)
164 {
165 pointerRun->Fill(bodypart, energyDep);
166 }
167 i++;
168 }
169
170}
Note: See TracBrowser for help on using the repository browser.