Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
B4bRunData.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 //
26 // $Id: B4bRunData.hh 69223 2013-04-23 12:36:10Z gcosmo $
27 //
28 /// \file B4bRunData.hh
29 /// \brief Definition of the B4bRunData class
30 
31 #ifndef B4bRunData_h
32 #define B4bRunData_h 1
33 
34 #include "G4Run.hh"
35 #include "globals.hh"
36 
37 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
38 
39 enum {
40  kAbs = 0,
41  kGap = 1,
42  kDim = 2
43 };
44 
45 /// Run data class
46 ///
47 /// It defines data members to hold the energy deposit and track lengths
48 /// of charged particles in Absober and Gap layers.
49 ///
50 /// In order to reduce the number of data members a 2-dimensions array
51 /// is introduced for each quantity:
52 /// - fEdep[], fTrackLength[].
53 ///
54 /// The data are collected step by step in B4bSteppingAction, and
55 /// the accumulated values are filled in histograms and entuple
56 /// event by event in B4EventAction.
57 
58 class B4bRunData : public G4Run
59 {
60 public:
61  B4bRunData();
62  virtual ~B4bRunData();
63 
64  void Add(G4int id, G4double de, G4double dl);
65  void FillPerEvent();
66 
67  void Reset();
68 
69  // Get methods
70  G4String GetVolumeName(G4int id) const;
71  G4double GetEdep(G4int id) const;
72  G4double GetTrackLength(G4int id) const;
73 
74 private:
75  G4String fVolumeNames[kDim];
76  G4double fEdep[kDim];
77  G4double fTrackLength[kDim];
78 };
79 
80 // inline functions
81 
82 inline void B4bRunData::Add(G4int id, G4double de, G4double dl) {
83  fEdep[id] += de;
84  fTrackLength[id] += dl;
85 }
86 
88  return fVolumeNames[id];
89 }
90 
92  return fEdep[id];
93 }
94 
96  return fTrackLength[id];
97 }
98 
99 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
100 
101 #endif
102 
G4double GetEdep(G4int id) const
Definition: B4bRunData.hh:91
void Add(G4int id, G4double de, G4double dl)
Definition: B4bRunData.hh:82
int G4int
Definition: G4Types.hh:78
void FillPerEvent()
Definition: B4bRunData.cc:57
G4String GetVolumeName(G4int id) const
Definition: B4bRunData.hh:87
Definition: G4Run.hh:46
virtual ~B4bRunData()
Definition: B4bRunData.cc:52
void Reset()
Definition: B4bRunData.cc:79
double G4double
Definition: G4Types.hh:76
G4double GetTrackLength(G4int id) const
Definition: B4bRunData.hh:95