CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
TotemG4Hit Class Reference

#include <SimG4CMS/Forward/interface/TotemG4Hit.h>

Inheritance diagram for TotemG4Hit:

Public Member Functions

void addEnergyDeposit (double em, double hd)
 
void addEnergyDeposit (const TotemG4Hit &aHit)
 
void Draw () override
 
double getEM () const
 
double getEnergyDeposit () const
 
float getEnergyLoss () const
 
math::XYZPoint getEntry () const
 
double getHadr () const
 
double getIncidentEnergy () const
 
float getPabs () const
 
int getParentId () const
 
int getParticleType () const
 
float getPhiAtEntry () const
 
float getThetaAtEntry () const
 
double getTimeSlice () const
 
int getTimeSliceID () const
 
float getTof () const
 
int getTrackID () const
 
uint32_t getUnitID () const
 
float getVx () const
 
float getVy () const
 
float getVz () const
 
float getX () const
 
float getY () const
 
float getZ () const
 
const TotemG4Hitoperator= (const TotemG4Hit &right)
 
int operator== (const TotemG4Hit &)
 
void Print () override
 
void setEM (double e)
 
void setEnergyLoss (float e)
 
void setEntry (double x, double y, double z)
 
void setHadr (double e)
 
void setIncidentEnergy (double e)
 
void setPabs (float e)
 
void setParentId (int p)
 
void setParticleType (short i)
 
void setPhiAtEntry (float f)
 
void setThetaAtEntry (float t)
 
void setTimeSlice (double d)
 
void setTof (float e)
 
void setTrackID (int i)
 
void setUnitID (uint32_t i)
 
void setVx (float p)
 
void setVy (float p)
 
void setVz (float p)
 
void setX (float t)
 
void setY (float t)
 
void setZ (float t)
 
 TotemG4Hit ()
 
 TotemG4Hit (const TotemG4Hit &right)
 
 ~TotemG4Hit () override
 

Private Attributes

double elem
 
math::XYZPoint entry
 
double hadr
 
float theEnergyLoss
 
math::XYZPoint theEntryPoint
 
math::XYZPoint theExitPoint
 
double theIncidentEnergy
 
float thePabs
 
int theParentId
 
int theParticleType
 
float thePhiAtEntry
 
float theThetaAtEntry
 
double theTimeSlice
 
float theTof
 
int theTrackID
 
uint32_t theUnitID
 
float theVx
 
float theVy
 
float theVz
 
float theX
 
float theY
 
float theZ
 

Detailed Description

Description: Transient Hit class for Totem taken from those for Calorimeters

Usage: One Hit object should be created -for each new particle entering the calorimeter -for each detector unit (= cristal or fiber or scintillator layer) -for each nanosecond of the shower development

This implies that all hit objects created for a given shower have the same value for

Definition at line 39 of file TotemG4Hit.h.

Constructor & Destructor Documentation

TotemG4Hit::TotemG4Hit ( )

Definition at line 22 of file TotemG4Hit.cc.

References elem, hadr, setEntry(), theEnergyLoss, theEntryPoint, theExitPoint, theIncidentEnergy, thePabs, theParentId, theParticleType, thePhiAtEntry, theThetaAtEntry, theTimeSlice, theTof, theTrackID, theUnitID, theVx, theVy, theVz, theX, theY, and theZ.

22  {
23  setEntry(0., 0., 0.);
24  theEntryPoint.SetCoordinates(0., 0., 0.);
25  theExitPoint.SetCoordinates(0., 0., 0.);
26 
27  elem = 0.;
28  hadr = 0.;
29  theIncidentEnergy = 0.;
30  theTrackID = -1;
31  theUnitID = 0;
32  theTimeSlice = 0.;
33 
34  theX = 0.;
35  theY = 0.;
36  theZ = 0.;
37  thePabs = 0.;
38  theTof = 0.;
39  theEnergyLoss = 0.;
40  theParticleType = 0;
41  theThetaAtEntry = 0.;
42  thePhiAtEntry = 0.;
43  theParentId = 0;
44  theVx = 0.;
45  theVy = 0.;
46  theVz = 0.;
47 }
float theThetaAtEntry
Definition: TotemG4Hit.h:132
float theTof
Definition: TotemG4Hit.h:128
int theParentId
Definition: TotemG4Hit.h:137
void setEntry(double x, double y, double z)
Definition: TotemG4Hit.h:55
float theVx
Definition: TotemG4Hit.h:138
float theY
Definition: TotemG4Hit.h:125
int theTrackID
Definition: TotemG4Hit.h:119
float theZ
Definition: TotemG4Hit.h:126
uint32_t theUnitID
Definition: TotemG4Hit.h:121
double theTimeSlice
Definition: TotemG4Hit.h:122
float thePhiAtEntry
Definition: TotemG4Hit.h:133
float theX
Definition: TotemG4Hit.h:124
float theEnergyLoss
Definition: TotemG4Hit.h:129
float theVz
Definition: TotemG4Hit.h:140
int theParticleType
Definition: TotemG4Hit.h:130
math::XYZPoint theExitPoint
Definition: TotemG4Hit.h:135
float theVy
Definition: TotemG4Hit.h:139
math::XYZPoint theEntryPoint
Definition: TotemG4Hit.h:134
float thePabs
Definition: TotemG4Hit.h:127
double hadr
Definition: TotemG4Hit.h:117
double elem
Definition: TotemG4Hit.h:116
double theIncidentEnergy
Definition: TotemG4Hit.h:118
TotemG4Hit::~TotemG4Hit ( )
override

Definition at line 49 of file TotemG4Hit.cc.

49 {}
TotemG4Hit::TotemG4Hit ( const TotemG4Hit right)

Definition at line 51 of file TotemG4Hit.cc.

References elem, entry, hadr, theEnergyLoss, theEntryPoint, theExitPoint, theIncidentEnergy, thePabs, theParentId, theParticleType, thePhiAtEntry, theThetaAtEntry, theTimeSlice, theTof, theTrackID, theUnitID, theVx, theVy, theVz, theX, theY, and theZ.

51  {
52  entry = right.entry;
53  elem = right.elem;
54  hadr = right.hadr;
56  theTrackID = right.theTrackID;
57  theUnitID = right.theUnitID;
58  theTimeSlice = right.theTimeSlice;
59 
60  theX = right.theX;
61  theY = right.theY;
62  theZ = right.theZ;
63  thePabs = right.thePabs;
64  theTof = right.theTof;
67 
71  theExitPoint = right.theExitPoint;
72  theParentId = right.theParentId;
73  theVx = right.theVx;
74  theVy = right.theVy;
75  theVz = right.theVz;
76 }
float theThetaAtEntry
Definition: TotemG4Hit.h:132
float theTof
Definition: TotemG4Hit.h:128
int theParentId
Definition: TotemG4Hit.h:137
float theVx
Definition: TotemG4Hit.h:138
float theY
Definition: TotemG4Hit.h:125
int theTrackID
Definition: TotemG4Hit.h:119
float theZ
Definition: TotemG4Hit.h:126
uint32_t theUnitID
Definition: TotemG4Hit.h:121
double theTimeSlice
Definition: TotemG4Hit.h:122
float thePhiAtEntry
Definition: TotemG4Hit.h:133
float theX
Definition: TotemG4Hit.h:124
float theEnergyLoss
Definition: TotemG4Hit.h:129
float theVz
Definition: TotemG4Hit.h:140
int theParticleType
Definition: TotemG4Hit.h:130
math::XYZPoint theExitPoint
Definition: TotemG4Hit.h:135
float theVy
Definition: TotemG4Hit.h:139
math::XYZPoint theEntryPoint
Definition: TotemG4Hit.h:134
float thePabs
Definition: TotemG4Hit.h:127
double hadr
Definition: TotemG4Hit.h:117
double elem
Definition: TotemG4Hit.h:116
math::XYZPoint entry
Definition: TotemG4Hit.h:115
double theIncidentEnergy
Definition: TotemG4Hit.h:118

Member Function Documentation

void TotemG4Hit::addEnergyDeposit ( double  em,
double  hd 
)

Definition at line 135 of file TotemG4Hit.cc.

References elem, and hadr.

Referenced by setEntry().

135  {
136  elem += em;
137  hadr += hd;
138 }
double hadr
Definition: TotemG4Hit.h:117
double elem
Definition: TotemG4Hit.h:116
void TotemG4Hit::addEnergyDeposit ( const TotemG4Hit aHit)

Definition at line 107 of file TotemG4Hit.cc.

References elem, getEM(), getHadr(), and hadr.

107  {
108  elem += aHit.getEM();
109  hadr += aHit.getHadr();
110 }
double getHadr() const
Definition: TotemG4Hit.cc:119
double getEM() const
Definition: TotemG4Hit.cc:116
double hadr
Definition: TotemG4Hit.h:117
double elem
Definition: TotemG4Hit.h:116
void TotemG4Hit::Draw ( )
inlineoverride

Definition at line 51 of file TotemG4Hit.h.

References getEntry(), and Print().

51 {}
double TotemG4Hit::getEM ( ) const

Definition at line 116 of file TotemG4Hit.cc.

References elem.

Referenced by addEnergyDeposit(), and setEntry().

116 { return elem; }
double elem
Definition: TotemG4Hit.h:116
double TotemG4Hit::getEnergyDeposit ( ) const

Definition at line 140 of file TotemG4Hit.cc.

References elem, and hadr.

Referenced by setEntry().

140 { return elem + hadr; }
double hadr
Definition: TotemG4Hit.h:117
double elem
Definition: TotemG4Hit.h:116
float TotemG4Hit::getEnergyLoss ( ) const

Definition at line 144 of file TotemG4Hit.cc.

References theEnergyLoss.

Referenced by TotemSD::EndOfEvent(), TotemTestGem::fillEvent(), operator<<(), and setEntry().

144 { return theEnergyLoss; }
float theEnergyLoss
Definition: TotemG4Hit.h:129
math::XYZPoint TotemG4Hit::getEntry ( ) const

Definition at line 114 of file TotemG4Hit.cc.

References entry.

Referenced by Draw(), TotemSD::EndOfEvent(), TotemTestGem::fillEvent(), and operator<<().

114 { return entry; }
math::XYZPoint entry
Definition: TotemG4Hit.h:115
double TotemG4Hit::getHadr ( ) const

Definition at line 119 of file TotemG4Hit.cc.

References hadr.

Referenced by addEnergyDeposit(), and setEntry().

119 { return hadr; }
double hadr
Definition: TotemG4Hit.h:117
double TotemG4Hit::getIncidentEnergy ( ) const

Definition at line 122 of file TotemG4Hit.cc.

References theIncidentEnergy.

Referenced by operator<<(), and setEntry().

122 { return theIncidentEnergy; }
double theIncidentEnergy
Definition: TotemG4Hit.h:118
float TotemG4Hit::getPabs ( ) const

Definition at line 142 of file TotemG4Hit.cc.

References thePabs.

Referenced by TotemSD::EndOfEvent(), TotemTestGem::fillEvent(), and setEntry().

142 { return thePabs; }
float thePabs
Definition: TotemG4Hit.h:127
int TotemG4Hit::getParentId ( ) const

Definition at line 167 of file TotemG4Hit.cc.

References theParentId.

Referenced by TotemTestGem::fillEvent(), and setEntry().

167 { return theParentId; }
int theParentId
Definition: TotemG4Hit.h:137
int TotemG4Hit::getParticleType ( ) const

Definition at line 145 of file TotemG4Hit.cc.

References theParticleType.

Referenced by TotemSD::EndOfEvent(), TotemTestGem::fillEvent(), and setEntry().

145 { return theParticleType; }
int theParticleType
Definition: TotemG4Hit.h:130
float TotemG4Hit::getPhiAtEntry ( ) const

Definition at line 153 of file TotemG4Hit.cc.

References thePhiAtEntry.

Referenced by TotemSD::EndOfEvent(), and setEntry().

153 { return thePhiAtEntry; }
float thePhiAtEntry
Definition: TotemG4Hit.h:133
float TotemG4Hit::getThetaAtEntry ( ) const

Definition at line 152 of file TotemG4Hit.cc.

References theThetaAtEntry.

Referenced by TotemSD::EndOfEvent(), and setEntry().

152 { return theThetaAtEntry; }
float theThetaAtEntry
Definition: TotemG4Hit.h:132
double TotemG4Hit::getTimeSlice ( ) const

Definition at line 131 of file TotemG4Hit.cc.

References theTimeSlice.

Referenced by setEntry().

131 { return theTimeSlice; }
double theTimeSlice
Definition: TotemG4Hit.h:122
int TotemG4Hit::getTimeSliceID ( ) const

Definition at line 133 of file TotemG4Hit.cc.

References theTimeSlice.

Referenced by TotemSD::hitExists(), operator<<(), and setEntry().

133 { return (int)theTimeSlice; }
double theTimeSlice
Definition: TotemG4Hit.h:122
float TotemG4Hit::getTof ( ) const

Definition at line 143 of file TotemG4Hit.cc.

References theTof.

Referenced by TotemSD::EndOfEvent(), and setEntry().

143 { return theTof; }
float theTof
Definition: TotemG4Hit.h:128
int TotemG4Hit::getTrackID ( ) const

Definition at line 125 of file TotemG4Hit.cc.

References theTrackID.

Referenced by TotemSD::EndOfEvent(), TotemTestGem::fillEvent(), TotemSD::hitExists(), operator<<(), and setEntry().

125 { return theTrackID; }
int theTrackID
Definition: TotemG4Hit.h:119
uint32_t TotemG4Hit::getUnitID ( ) const

Definition at line 128 of file TotemG4Hit.cc.

References theUnitID.

Referenced by TotemSD::EndOfEvent(), TotemTestGem::fillEvent(), TotemSD::hitExists(), operator<<(), and setEntry().

128 { return theUnitID; }
uint32_t theUnitID
Definition: TotemG4Hit.h:121
float TotemG4Hit::getVx ( ) const

Definition at line 170 of file TotemG4Hit.cc.

References theVx.

Referenced by TotemTestGem::fillEvent(), and setEntry().

170 { return theVx; }
float theVx
Definition: TotemG4Hit.h:138
float TotemG4Hit::getVy ( ) const

Definition at line 173 of file TotemG4Hit.cc.

References theVy.

Referenced by TotemTestGem::fillEvent(), and setEntry().

173 { return theVy; }
float theVy
Definition: TotemG4Hit.h:139
float TotemG4Hit::getVz ( ) const

Definition at line 176 of file TotemG4Hit.cc.

References theVz.

Referenced by TotemTestGem::fillEvent(), and setEntry().

176 { return theVz; }
float theVz
Definition: TotemG4Hit.h:140
float TotemG4Hit::getX ( ) const

Definition at line 158 of file TotemG4Hit.cc.

References theX.

Referenced by setEntry().

158 { return theX; }
float theX
Definition: TotemG4Hit.h:124
float TotemG4Hit::getY ( ) const

Definition at line 161 of file TotemG4Hit.cc.

References theY.

Referenced by setEntry().

161 { return theY; }
float theY
Definition: TotemG4Hit.h:125
float TotemG4Hit::getZ ( ) const

Definition at line 164 of file TotemG4Hit.cc.

References theZ.

Referenced by setEntry().

164 { return theZ; }
float theZ
Definition: TotemG4Hit.h:126
const TotemG4Hit & TotemG4Hit::operator= ( const TotemG4Hit right)

Definition at line 78 of file TotemG4Hit.cc.

References elem, entry, hadr, theEnergyLoss, theEntryPoint, theExitPoint, theIncidentEnergy, thePabs, theParentId, theParticleType, thePhiAtEntry, theThetaAtEntry, theTimeSlice, theTof, theTrackID, theUnitID, theVx, theVy, theVz, theX, theY, and theZ.

78  {
79  entry = right.entry;
80  elem = right.elem;
81  hadr = right.hadr;
83  theTrackID = right.theTrackID;
84  theUnitID = right.theUnitID;
85  theTimeSlice = right.theTimeSlice;
86 
87  theX = right.theX;
88  theY = right.theY;
89  theZ = right.theZ;
90  thePabs = right.thePabs;
91  theTof = right.theTof;
94 
98  theExitPoint = right.theExitPoint;
99  theParentId = right.theParentId;
100  theVx = right.theVx;
101  theVy = right.theVy;
102  theVz = right.theVz;
103 
104  return *this;
105 }
float theThetaAtEntry
Definition: TotemG4Hit.h:132
float theTof
Definition: TotemG4Hit.h:128
int theParentId
Definition: TotemG4Hit.h:137
float theVx
Definition: TotemG4Hit.h:138
float theY
Definition: TotemG4Hit.h:125
int theTrackID
Definition: TotemG4Hit.h:119
float theZ
Definition: TotemG4Hit.h:126
uint32_t theUnitID
Definition: TotemG4Hit.h:121
double theTimeSlice
Definition: TotemG4Hit.h:122
float thePhiAtEntry
Definition: TotemG4Hit.h:133
float theX
Definition: TotemG4Hit.h:124
float theEnergyLoss
Definition: TotemG4Hit.h:129
float theVz
Definition: TotemG4Hit.h:140
int theParticleType
Definition: TotemG4Hit.h:130
math::XYZPoint theExitPoint
Definition: TotemG4Hit.h:135
float theVy
Definition: TotemG4Hit.h:139
math::XYZPoint theEntryPoint
Definition: TotemG4Hit.h:134
float thePabs
Definition: TotemG4Hit.h:127
double hadr
Definition: TotemG4Hit.h:117
double elem
Definition: TotemG4Hit.h:116
math::XYZPoint entry
Definition: TotemG4Hit.h:115
double theIncidentEnergy
Definition: TotemG4Hit.h:118
int TotemG4Hit::operator== ( const TotemG4Hit )
inline

Definition at line 48 of file TotemG4Hit.h.

48 { return 0; }
void TotemG4Hit::Print ( void  )
override

Definition at line 112 of file TotemG4Hit.cc.

References gather_cfg::cout.

Referenced by Draw().

112 { std::cout << (*this); }
void TotemG4Hit::setEM ( double  e)

Definition at line 117 of file TotemG4Hit.cc.

References MillePedeFileConverter_cfg::e, and elem.

Referenced by setEntry().

void TotemG4Hit::setEnergyLoss ( float  e)
void TotemG4Hit::setEntry ( double  x,
double  y,
double  z 
)
inline
void TotemG4Hit::setHadr ( double  e)

Definition at line 120 of file TotemG4Hit.cc.

References MillePedeFileConverter_cfg::e, and hadr.

Referenced by setEntry().

void TotemG4Hit::setIncidentEnergy ( double  e)
void TotemG4Hit::setPabs ( float  e)
void TotemG4Hit::setParentId ( int  p)
void TotemG4Hit::setParticleType ( short  i)

Definition at line 150 of file TotemG4Hit.cc.

References mps_fire::i, and theParticleType.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

150 { theParticleType = i; }
int theParticleType
Definition: TotemG4Hit.h:130
void TotemG4Hit::setPhiAtEntry ( float  f)

Definition at line 156 of file TotemG4Hit.cc.

References f, and thePhiAtEntry.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

156 { thePhiAtEntry = f; }
float thePhiAtEntry
Definition: TotemG4Hit.h:133
double f[11][100]
void TotemG4Hit::setThetaAtEntry ( float  t)

Definition at line 155 of file TotemG4Hit.cc.

References OrderedSet::t, and theThetaAtEntry.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

155 { theThetaAtEntry = t; }
float theThetaAtEntry
Definition: TotemG4Hit.h:132
void TotemG4Hit::setTimeSlice ( double  d)

Definition at line 132 of file TotemG4Hit.cc.

References ztail::d, and theTimeSlice.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

132 { theTimeSlice = d; }
double theTimeSlice
Definition: TotemG4Hit.h:122
d
Definition: ztail.py:151
void TotemG4Hit::setTof ( float  e)
void TotemG4Hit::setTrackID ( int  i)

Definition at line 126 of file TotemG4Hit.cc.

References mps_fire::i, and theTrackID.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

126 { theTrackID = i; }
int theTrackID
Definition: TotemG4Hit.h:119
void TotemG4Hit::setUnitID ( uint32_t  i)

Definition at line 129 of file TotemG4Hit.cc.

References mps_fire::i, and theUnitID.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

129 { theUnitID = i; }
uint32_t theUnitID
Definition: TotemG4Hit.h:121
void TotemG4Hit::setVx ( float  p)

Definition at line 171 of file TotemG4Hit.cc.

References OrderedSet::t, and theVx.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

171 { theVx = t; }
float theVx
Definition: TotemG4Hit.h:138
void TotemG4Hit::setVy ( float  p)

Definition at line 174 of file TotemG4Hit.cc.

References OrderedSet::t, and theVy.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

174 { theVy = t; }
float theVy
Definition: TotemG4Hit.h:139
void TotemG4Hit::setVz ( float  p)

Definition at line 177 of file TotemG4Hit.cc.

References OrderedSet::t, and theVz.

Referenced by TotemSD::createNewHit(), TotemSD::createNewHitEvo(), and setEntry().

177 { theVz = t; }
float theVz
Definition: TotemG4Hit.h:140
void TotemG4Hit::setX ( float  t)

Definition at line 159 of file TotemG4Hit.cc.

References OrderedSet::t, and theX.

Referenced by setEntry().

159 { theX = t; }
float theX
Definition: TotemG4Hit.h:124
void TotemG4Hit::setY ( float  t)

Definition at line 162 of file TotemG4Hit.cc.

References OrderedSet::t, and theY.

Referenced by setEntry().

162 { theY = t; }
float theY
Definition: TotemG4Hit.h:125
void TotemG4Hit::setZ ( float  t)

Definition at line 165 of file TotemG4Hit.cc.

References OrderedSet::t, and theZ.

Referenced by setEntry().

165 { theZ = t; }
float theZ
Definition: TotemG4Hit.h:126

Member Data Documentation

double TotemG4Hit::elem
private

Definition at line 116 of file TotemG4Hit.h.

Referenced by addEnergyDeposit(), getEM(), getEnergyDeposit(), operator=(), setEM(), and TotemG4Hit().

math::XYZPoint TotemG4Hit::entry
private

Definition at line 115 of file TotemG4Hit.h.

Referenced by getEntry(), operator=(), setEntry(), and TotemG4Hit().

double TotemG4Hit::hadr
private
float TotemG4Hit::theEnergyLoss
private

Definition at line 129 of file TotemG4Hit.h.

Referenced by getEnergyLoss(), operator=(), setEnergyLoss(), and TotemG4Hit().

math::XYZPoint TotemG4Hit::theEntryPoint
private

Definition at line 134 of file TotemG4Hit.h.

Referenced by operator=(), and TotemG4Hit().

math::XYZPoint TotemG4Hit::theExitPoint
private

Definition at line 135 of file TotemG4Hit.h.

Referenced by operator=(), and TotemG4Hit().

double TotemG4Hit::theIncidentEnergy
private

Definition at line 118 of file TotemG4Hit.h.

Referenced by getIncidentEnergy(), operator=(), setIncidentEnergy(), and TotemG4Hit().

float TotemG4Hit::thePabs
private

Definition at line 127 of file TotemG4Hit.h.

Referenced by getPabs(), operator=(), setPabs(), and TotemG4Hit().

int TotemG4Hit::theParentId
private

Definition at line 137 of file TotemG4Hit.h.

Referenced by getParentId(), operator=(), setParentId(), and TotemG4Hit().

int TotemG4Hit::theParticleType
private

Definition at line 130 of file TotemG4Hit.h.

Referenced by getParticleType(), operator=(), setParticleType(), and TotemG4Hit().

float TotemG4Hit::thePhiAtEntry
private

Definition at line 133 of file TotemG4Hit.h.

Referenced by getPhiAtEntry(), operator=(), setPhiAtEntry(), and TotemG4Hit().

float TotemG4Hit::theThetaAtEntry
private

Definition at line 132 of file TotemG4Hit.h.

Referenced by getThetaAtEntry(), operator=(), setThetaAtEntry(), and TotemG4Hit().

double TotemG4Hit::theTimeSlice
private

Definition at line 122 of file TotemG4Hit.h.

Referenced by getTimeSlice(), getTimeSliceID(), operator=(), setTimeSlice(), and TotemG4Hit().

float TotemG4Hit::theTof
private

Definition at line 128 of file TotemG4Hit.h.

Referenced by getTof(), operator=(), setTof(), and TotemG4Hit().

int TotemG4Hit::theTrackID
private

Definition at line 119 of file TotemG4Hit.h.

Referenced by getTrackID(), operator=(), setTrackID(), and TotemG4Hit().

uint32_t TotemG4Hit::theUnitID
private

Definition at line 121 of file TotemG4Hit.h.

Referenced by getUnitID(), operator=(), setUnitID(), and TotemG4Hit().

float TotemG4Hit::theVx
private

Definition at line 138 of file TotemG4Hit.h.

Referenced by getVx(), operator=(), setVx(), and TotemG4Hit().

float TotemG4Hit::theVy
private

Definition at line 139 of file TotemG4Hit.h.

Referenced by getVy(), operator=(), setVy(), and TotemG4Hit().

float TotemG4Hit::theVz
private

Definition at line 140 of file TotemG4Hit.h.

Referenced by getVz(), operator=(), setVz(), and TotemG4Hit().

float TotemG4Hit::theX
private

Definition at line 124 of file TotemG4Hit.h.

Referenced by getX(), operator=(), setX(), and TotemG4Hit().

float TotemG4Hit::theY
private

Definition at line 125 of file TotemG4Hit.h.

Referenced by getY(), operator=(), setY(), and TotemG4Hit().

float TotemG4Hit::theZ
private

Definition at line 126 of file TotemG4Hit.h.

Referenced by getZ(), operator=(), setZ(), and TotemG4Hit().