Geant4  10.02
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 //
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 
49  void IncEDep(G4double dep){fTotE+=dep;}
52  void IncHitCount(G4int i=1){fHitCount+=i;}
53 
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 
61  G4int GetHitCount()const {return fHitCount;}
62  G4double GetEDep()const {return fTotE;}
65 
72 
73  //Gets the total photon count produced
75 
78 
79  private:
80 
86 
88 
89  //These only have meaning if totE > 0
90  //If totE = 0 then these wont be set by EndOfEventAction
92  G4ThreeVector fReconPos; //Also relies on hitCount>0
93  G4ThreeVector fConvPos;//true (initial) converstion position
97 
99 
100 };
101 
102 #endif
CLHEP::Hep3Vector G4ThreeVector
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)