QwGeant4
QweakSimUserTungstenPlug_DetectorEvent.cc
Go to the documentation of this file.
1 
2 // QweakSimUserTungstenPlug_DetectorEvent.cc
3 // Martin McHugh
4 // 2015-05-04
5 
6 /////// --------------------------------------------------------------------
7 
9 
10 /////// --------------------------------------------------------------------
11 
13 
14 /////// --------------------------------------------------------------------
15 
17 {
18  SecondaryElectronCount = 0;
19  Initialize();
20 }
21 
22 
23 
24 /////// --------------------------------------------------------------------
25 
27 {
28 }
29 
30 
31 
32 /////// --------------------------------------------------------------------
33 
35 {
36  //DetectorID = 0.0;
37 
39 
40  TrackID.clear();
41 
42  ParticleName.clear();
43  ParticleType.clear();
44 
45  GlobalTimeOfHit.clear();
46 
47  HasBeenHit = 0;
48  EdgeEventFlag.clear();
49  NbOfHits = 0;
50 
51  HitGlobalPositionX.clear();
52  HitGlobalPositionY.clear();
53  HitGlobalPositionZ.clear();
54 
55  HitLocalPositionX.clear();
56  HitLocalPositionY.clear();
57  HitLocalPositionZ.clear();
58 
59  HitLocalExitPositionX.clear();
60  HitLocalExitPositionY.clear();
61  HitLocalExitPositionZ.clear();
62 
63  OriginVertexPositionX.clear();
64  OriginVertexPositionY.clear();
65  OriginVertexPositionZ.clear();
66 
70 
74 
75  OriginVertexThetaAngle.clear();
76  OriginVertexPhiAngle.clear();
77 
79  OriginVertexTotalEnergy.clear();
80 
81  LocalVertexKineticEnergy.clear();
82  LocalVertexTotalEnergy.clear();
83 
84  GlobalPhiAngle.clear();
85  GlobalThetaAngle.clear();
86 
87  //--- deposited energy in the TungstenPlug in one step
88  DepositedEnergy.clear();
89  //--- total deposited energy in the TungstenPlug in one event
91 }
92 
93 
94