Geant4  10.00.p01
RunAction.hh
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: RunAction.hh 66241 2012-12-13 18:34:42Z gunter $
30 //
31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
33 
34 #ifndef RunAction_h
35 #define RunAction_h 1
36 
37 #include "DetectorConstruction.hh"
38 
39 #include "G4UserRunAction.hh"
40 #include "G4ThreeVector.hh"
41 #include "globals.hh"
42 
43 #include <vector>
44 
45 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46 
48 class RunActionMessenger;
49 class HistoManager;
50 class G4Track;
51 class G4Run;
52 
53 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
54 
55 class RunAction : public G4UserRunAction
56 {
57 public:
58 
60  ~RunAction();
61 
62  virtual void BeginOfRunAction(const G4Run*);
63  virtual void EndOfRunAction(const G4Run*);
64 
66 
67  void SumEnergyFlow(G4int plane, G4double Eflow)
68  {fEnergyFlow[plane] += Eflow;};
69  void SumLateralEleak(G4int cell, G4double Eflow)
70  {fLateralEleak[cell] += Eflow;};
71 
72  void AddChargedStep() { fChargedStep += 1.0; }
73  void AddNeutralStep() { fNeutralStep += 1.0; }
74 
75  void PrintDedxTables();
76 
77  void AddSecondaryTrack(const G4Track*);
78 
79  // Acceptance parameters
81  G4double GetAverageEdep(G4int i) const {return fEdeptrue[i];};
82  G4double GetRMSEdep(G4int i) const {return fRmstrue[i];};
83  G4double GetLimitEdep(G4int i) const {return fLimittrue[i];};
84  void SetApplyLimit(G4bool val) {fApplyLimit = val;};
85 
86 private:
87 
92 
95 
96  std::vector<G4double> fEnergyFlow;
97  std::vector<G4double> fLateralEleak;
98  std::vector<G4double> fEnergyDeposit[MaxAbsor];
99 
103 
106 
110 
112 };
113 
114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
115 
116 #endif
117 
G4double fSumEAbs
Definition: RunAction.hh:62
void BeginOfRunAction(const G4Run *)
Definition: RunAction.cc:57
void FillPerEvent(G4int, G4double, G4double)
Definition: RunAction.cc:125
G4double GetRMSEdep(G4int i) const
Definition: RunAction.hh:82
G4double fEnergyDeposit
Definition: RunAction.hh:89
RunActionMessenger * fRunMessenger
Definition: RunAction.hh:84
G4double fChargedStep
Definition: RunAction.hh:104
G4double fEdeptrue
Definition: RunAction.hh:92
void AddSecondaryTrack(const G4Track *)
Definition: RunAction.cc:395
G4double GetLimitEdep(G4int i) const
Definition: RunAction.hh:83
Definition of the DetectorConstruction class.
const G4int MaxAbsor
int G4int
Definition: G4Types.hh:78
void AddNeutralStep()
Definition: RunAction.hh:73
DetectorConstruction * fDetector
Definition: RunAction.hh:87
HistoManager * fHistoManager
Definition: RunAction.hh:60
G4double fSumLAbs
Definition: RunAction.hh:65
G4double fNeutralStep
Definition: RunAction.hh:105
G4int fN_elec
Definition: RunAction.hh:108
G4double fSum2LAbs
Definition: RunAction.hh:65
void SumLateralEleak(G4int cell, G4double Eflow)
Definition: RunAction.hh:69
bool G4bool
Definition: G4Types.hh:79
void SetApplyLimit(G4bool val)
Definition: RunAction.hh:84
void SetEdepAndRMS(G4ThreeVector)
Definition: RunAction.cc:189
void EndOfRunAction(const G4Run *)
Definition: RunAction.cc:260
Definition: G4Run.hh:46
void AddChargedStep()
Definition: RunAction.hh:72
~RunAction()
Definition: RunAction.cc:52
G4bool fApplyLimit
Definition: RunAction.hh:111
std::vector< G4double > fEnergyFlow
Definition: RunAction.hh:96
G4int fN_pos
Definition: RunAction.hh:109
G4double fLimittrue
Definition: RunAction.hh:94
G4int fN_gamma
Definition: RunAction.hh:107
Detector construction class to demonstrate various ways of placement.
G4double GetAverageEdep(G4int i) const
Definition: RunAction.hh:81
std::vector< G4double > fLateralEleak
Definition: RunAction.hh:97
double G4double
Definition: G4Types.hh:76
void PrintDedxTables()
Definition: RunAction.cc:306
G4double fRmstrue
Definition: RunAction.hh:93
G4double fSum2EAbs
Definition: RunAction.hh:62
PrimaryGeneratorAction * fPrimary
Definition: RunAction.hh:63
void SumEnergyFlow(G4int plane, G4double Eflow)
Definition: RunAction.hh:67