Geant4  10.02.p01
EventAction.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 //
28 //
29 // $Id: EventAction.cc 76293 2013-11-08 13:11:23Z gcosmo $
30 //
31 
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
34 
35 #include "EventAction.hh"
36 
37 #include "Run.hh"
38 #include "HistoManager.hh"
39 
40 #include "G4Event.hh"
41 #include "G4RunManager.hh"
42 #include "G4UnitsTable.hh"
43 
44 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
45 
48  fTotalEnergyDeposit(0.), fTotalEnergyFlow(0.)
49 { }
50 
51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
52 
54 { }
55 
56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57 
59 {
61  fTotalEnergyFlow = 0.;
62 }
63 
64 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
65 
67 {
68  fTotalEnergyDeposit += Edep;
69 }
70 
71 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
72 
74 {
75  fTotalEnergyFlow += Eflow;
76 }
77 
78 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
79 
81 {
82  Run* run = static_cast<Run*>(
84 
87 
88  G4AnalysisManager::Instance()->FillH1(1,fTotalEnergyDeposit);
89  G4AnalysisManager::Instance()->FillH1(3,fTotalEnergyFlow);
90 }
91 
92 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
93 
94 
void AddEflow(G4double Eflow)
Definition: EventAction.cc:73
void AddEdep(G4double Edep)
Definition: EventAction.hh:53
void BeginOfEventAction(const G4Event *)
Definition: EventAction.cc:61
void EndOfEventAction(const G4Event *)
Definition: EventAction.cc:95
void AddEdep(G4double val)
Definition: Run.hh:61
G4double fTotalEnergyFlow
Definition: EventAction.hh:58
G4double fTotalEnergyDeposit
Definition: EventAction.hh:54
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:79
double G4double
Definition: G4Types.hh:76
Definition: Run.hh:46
G4Run * GetNonConstCurrentRun() const
void AddEflow(G4double eflow)
Definition: Run.cc:109