Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LXeUserEventInformation.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: LXeUserEventInformation.hh 68752 2013-04-05 10:23:47Z gcosmo $
27 //
28 /// \file optical/LXe/include/LXeUserEventInformation.hh
29 /// \brief Definition of the LXeUserEventInformation class
30 //
32 #include "G4ThreeVector.hh"
33 #include "globals.hh"
34 
35 #ifndef LXeUserEventInformation_h
36 #define LXeUserEventInformation_h 1
37 
39 {
40  public:
41 
43  virtual ~LXeUserEventInformation();
44 
45  inline virtual void Print()const{};
46 
47  void IncPhotonCount_Scint(){fPhotonCount_Scint++;}
48  void IncPhotonCount_Ceren(){fPhotonCount_Ceren++;}
49  void IncEDep(G4double dep){fTotE+=dep;}
50  void IncAbsorption(){fAbsorptionCount++;}
51  void IncBoundaryAbsorption(){fBoundaryAbsorptionCount++;}
52  void IncHitCount(G4int i=1){fHitCount+=i;}
53 
54  void SetEWeightPos(const G4ThreeVector& p){fEWeightPos=p;}
55  void SetReconPos(const G4ThreeVector& p){fReconPos=p;}
56  void SetConvPos(const G4ThreeVector& p){fConvPos=p;fConvPosSet=true;}
57  void SetPosMax(const G4ThreeVector& p,G4double edep){fPosMax=p;fEdepMax=edep;}
58 
59  G4int GetPhotonCount_Scint()const {return fPhotonCount_Scint;}
60  G4int GetPhotonCount_Ceren()const {return fPhotonCount_Ceren;}
61  G4int GetHitCount()const {return fHitCount;}
62  G4double GetEDep()const {return fTotE;}
63  G4int GetAbsorptionCount()const {return fAbsorptionCount;}
64  G4int GetBoundaryAbsorptionCount() const {return fBoundaryAbsorptionCount;}
65 
66  G4ThreeVector GetEWeightPos(){return fEWeightPos;}
67  G4ThreeVector GetReconPos(){return fReconPos;}
68  G4ThreeVector GetConvPos(){return fConvPos;}
69  G4ThreeVector GetPosMax(){return fPosMax;}
70  G4double GetEDepMax(){return fEdepMax;}
71  G4double IsConvPosSet(){return fConvPosSet;}
72 
73  //Gets the total photon count produced
74  G4int GetPhotonCount(){return fPhotonCount_Scint+fPhotonCount_Ceren;}
75 
76  void IncPMTSAboveThreshold(){fPMTsAboveThreshold++;}
77  G4int GetPMTSAboveThreshold(){return fPMTsAboveThreshold;}
78 
79  private:
80 
81  G4int fHitCount;
82  G4int fPhotonCount_Scint;
83  G4int fPhotonCount_Ceren;
84  G4int fAbsorptionCount;
85  G4int fBoundaryAbsorptionCount;
86 
87  G4double fTotE;
88 
89  //These only have meaning if totE > 0
90  //If totE = 0 then these wont be set by EndOfEventAction
91  G4ThreeVector fEWeightPos;
92  G4ThreeVector fReconPos; //Also relies on hitCount>0
93  G4ThreeVector fConvPos;//true (initial) converstion position
94  G4bool fConvPosSet;
95  G4ThreeVector fPosMax;
96  G4double fEdepMax;
97 
98  G4int fPMTsAboveThreshold;
99 
100 };
101 
102 #endif
const char * p
Definition: xmltok.h:285
void SetConvPos(const G4ThreeVector &p)
int G4int
Definition: G4Types.hh:78
bool G4bool
Definition: G4Types.hh:79
void SetReconPos(const G4ThreeVector &p)
double G4double
Definition: G4Types.hh:76
void SetEWeightPos(const G4ThreeVector &p)
void SetPosMax(const G4ThreeVector &p, G4double edep)