CMS 3D CMS Logo

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

#include <FP420G4Hit.h>

Inheritance diagram for FP420G4Hit:

Public Member Functions

void addEnergyDeposit (double em, double hd)
 
void addEnergyDeposit (const FP420G4Hit &aHit)
 
void addEnergyLoss (float e)
 
void Draw () override
 
 FP420G4Hit ()
 
 FP420G4Hit (const FP420G4Hit &right)
 
double getEM () const
 
double getEnergyDeposit () const
 
float getEnergyLoss () const
 
G4ThreeVector getEntry () const
 
G4ThreeVector getEntryLocalP () const
 
G4ThreeVector getExitLocalP () 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
 
unsigned int getTrackID () const
 
unsigned int getUnitID () const
 
float getVx () const
 
float getVy () const
 
float getVz () const
 
float getX () const
 
float getY () const
 
float getZ () const
 
const FP420G4Hitoperator= (const FP420G4Hit &right)
 
int operator== (const FP420G4Hit &)
 
void Print () override
 
void setEM (double e)
 
void setEnergyLoss (float e)
 
void setEntry (const G4ThreeVector &xyz)
 
void setEntryLocalP (const G4ThreeVector &xyz1)
 
void setExitLocalP (const G4ThreeVector &xyz1)
 
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 (unsigned int 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)
 
 ~FP420G4Hit () override
 

Private Attributes

double elem
 
G4ThreeVector entry
 
G4ThreeVector entrylp
 
G4ThreeVector exitlp
 
double hadr
 
float theEnergyLoss
 
double theIncidentEnergy
 
float thePabs
 
int theParentId
 
int theParticleType
 
float thePhiAtEntry
 
float theThetaAtEntry
 
double theTimeSlice
 
float theTof
 
G4int theTrackID
 
int theUnitID
 
float theVx
 
float theVy
 
float theVz
 
float theX
 
float theY
 
float theZ
 

Detailed Description

Definition at line 19 of file FP420G4Hit.h.

Constructor & Destructor Documentation

FP420G4Hit::FP420G4Hit ( )

Definition at line 9 of file FP420G4Hit.cc.

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

9  : entry(0) {
10  entrylp(0);
11  exitlp(0);
12  elem = 0.;
13  hadr = 0.;
14  theIncidentEnergy = 0.;
15  theTimeSlice = 0.;
16  theTrackID = -1;
17  theUnitID = 0;
18  thePabs = 0.;
19  theTof = 0.;
20  theEnergyLoss = 0.;
21  theParticleType = 0;
22  theUnitID = 0;
23  theTrackID = -1;
24  theThetaAtEntry = -10000.;
25  thePhiAtEntry = -10000.;
26  theParentId = 0;
27 
28  theX = 0.;
29  theY = 0.;
30  theZ = 0.;
31  theVx = 0.;
32  theVy = 0.;
33  theVz = 0.;
34 }
float theTof
Definition: FP420G4Hit.h:116
double theIncidentEnergy
Definition: FP420G4Hit.h:105
G4ThreeVector entrylp
Definition: FP420G4Hit.h:101
double theTimeSlice
Definition: FP420G4Hit.h:108
int theParentId
Definition: FP420G4Hit.h:123
int theParticleType
Definition: FP420G4Hit.h:118
double elem
Definition: FP420G4Hit.h:103
double hadr
Definition: FP420G4Hit.h:104
G4int theTrackID
Definition: FP420G4Hit.h:106
G4ThreeVector exitlp
Definition: FP420G4Hit.h:102
float theVy
Definition: FP420G4Hit.h:125
float theThetaAtEntry
Definition: FP420G4Hit.h:120
float thePabs
Definition: FP420G4Hit.h:115
float theY
Definition: FP420G4Hit.h:113
int theUnitID
Definition: FP420G4Hit.h:110
G4ThreeVector entry
Definition: FP420G4Hit.h:100
float theZ
Definition: FP420G4Hit.h:114
float theVx
Definition: FP420G4Hit.h:124
float theEnergyLoss
Definition: FP420G4Hit.h:117
float thePhiAtEntry
Definition: FP420G4Hit.h:121
float theX
Definition: FP420G4Hit.h:112
float theVz
Definition: FP420G4Hit.h:126
FP420G4Hit::~FP420G4Hit ( )
override

Definition at line 36 of file FP420G4Hit.cc.

36 {}
FP420G4Hit::FP420G4Hit ( const FP420G4Hit right)

Definition at line 38 of file FP420G4Hit.cc.

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

38  {
39  theUnitID = right.theUnitID;
40 
41  theTrackID = right.theTrackID;
42  theTof = right.theTof;
45  thePabs = right.thePabs;
46  elem = right.elem;
47  hadr = right.hadr;
49  theTimeSlice = right.theTimeSlice;
50  entry = right.entry;
51  entrylp = right.entrylp;
52  exitlp = right.exitlp;
55  theParentId = right.theParentId;
56 
57  theX = right.theX;
58  theY = right.theY;
59  theZ = right.theZ;
60 
61  theVx = right.theVx;
62  theVy = right.theVy;
63  theVz = right.theVz;
64 }
float theTof
Definition: FP420G4Hit.h:116
double theIncidentEnergy
Definition: FP420G4Hit.h:105
G4ThreeVector entrylp
Definition: FP420G4Hit.h:101
double theTimeSlice
Definition: FP420G4Hit.h:108
int theParentId
Definition: FP420G4Hit.h:123
int theParticleType
Definition: FP420G4Hit.h:118
double elem
Definition: FP420G4Hit.h:103
double hadr
Definition: FP420G4Hit.h:104
G4int theTrackID
Definition: FP420G4Hit.h:106
G4ThreeVector exitlp
Definition: FP420G4Hit.h:102
float theVy
Definition: FP420G4Hit.h:125
float theThetaAtEntry
Definition: FP420G4Hit.h:120
float thePabs
Definition: FP420G4Hit.h:115
float theY
Definition: FP420G4Hit.h:113
int theUnitID
Definition: FP420G4Hit.h:110
G4ThreeVector entry
Definition: FP420G4Hit.h:100
float theZ
Definition: FP420G4Hit.h:114
float theVx
Definition: FP420G4Hit.h:124
float theEnergyLoss
Definition: FP420G4Hit.h:117
float thePhiAtEntry
Definition: FP420G4Hit.h:121
float theX
Definition: FP420G4Hit.h:112
float theVz
Definition: FP420G4Hit.h:126

Member Function Documentation

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

Definition at line 131 of file FP420G4Hit.cc.

References elem, and hadr.

Referenced by Draw(), and FP420SD::UpdateHit().

131  {
132  elem += em;
133  hadr += hd;
134 }
double elem
Definition: FP420G4Hit.h:103
double hadr
Definition: FP420G4Hit.h:104
void FP420G4Hit::addEnergyDeposit ( const FP420G4Hit aHit)

Definition at line 96 of file FP420G4Hit.cc.

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

96  {
97  elem += aHit.getEM();
98  hadr += aHit.getHadr();
99 }
double elem
Definition: FP420G4Hit.h:103
double hadr
Definition: FP420G4Hit.h:104
double getHadr() const
Definition: FP420G4Hit.cc:115
double getEM() const
Definition: FP420G4Hit.cc:112
void FP420G4Hit::addEnergyLoss ( float  e)
void FP420G4Hit::Draw ( )
inlineoverride
double FP420G4Hit::getEM ( ) const

Definition at line 112 of file FP420G4Hit.cc.

References elem.

Referenced by addEnergyDeposit(), Draw(), and operator<<().

112 { return elem; }
double elem
Definition: FP420G4Hit.h:103
double FP420G4Hit::getEnergyDeposit ( ) const

Definition at line 136 of file FP420G4Hit.cc.

References elem, and hadr.

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

136 { return elem + hadr; }
double elem
Definition: FP420G4Hit.h:103
double hadr
Definition: FP420G4Hit.h:104
float FP420G4Hit::getEnergyLoss ( ) const

Definition at line 140 of file FP420G4Hit.cc.

References theEnergyLoss.

Referenced by Draw(), FP420SD::EndOfEvent(), operator<<(), and FP420Test::update().

140 { return theEnergyLoss; }
float theEnergyLoss
Definition: FP420G4Hit.h:117
G4ThreeVector FP420G4Hit::getEntry ( ) const

Definition at line 103 of file FP420G4Hit.cc.

References entry.

Referenced by Draw(), FP420SD::EndOfEvent(), operator<<(), and FP420Test::update().

103 { return entry; }
G4ThreeVector entry
Definition: FP420G4Hit.h:100
G4ThreeVector FP420G4Hit::getEntryLocalP ( ) const

Definition at line 106 of file FP420G4Hit.cc.

References entrylp.

Referenced by Draw(), FP420SD::EndOfEvent(), operator<<(), and FP420Test::update().

106 { return entrylp; }
G4ThreeVector entrylp
Definition: FP420G4Hit.h:101
G4ThreeVector FP420G4Hit::getExitLocalP ( ) const

Definition at line 109 of file FP420G4Hit.cc.

References exitlp.

Referenced by Draw(), FP420SD::EndOfEvent(), operator<<(), and FP420Test::update().

109 { return exitlp; }
G4ThreeVector exitlp
Definition: FP420G4Hit.h:102
double FP420G4Hit::getHadr ( ) const

Definition at line 115 of file FP420G4Hit.cc.

References hadr.

Referenced by addEnergyDeposit(), Draw(), and operator<<().

115 { return hadr; }
double hadr
Definition: FP420G4Hit.h:104
double FP420G4Hit::getIncidentEnergy ( ) const

Definition at line 118 of file FP420G4Hit.cc.

References theIncidentEnergy.

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

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

Definition at line 138 of file FP420G4Hit.cc.

References thePabs.

Referenced by Draw(), FP420SD::EndOfEvent(), and operator<<().

138 { return thePabs; }
float thePabs
Definition: FP420G4Hit.h:115
int FP420G4Hit::getParentId ( ) const

Definition at line 164 of file FP420G4Hit.cc.

References theParentId.

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

164 { return theParentId; }
int theParentId
Definition: FP420G4Hit.h:123
int FP420G4Hit::getParticleType ( ) const

Definition at line 141 of file FP420G4Hit.cc.

References theParticleType.

Referenced by Draw(), FP420SD::EndOfEvent(), and operator<<().

141 { return theParticleType; }
int theParticleType
Definition: FP420G4Hit.h:118
float FP420G4Hit::getPhiAtEntry ( ) const

Definition at line 150 of file FP420G4Hit.cc.

References thePhiAtEntry.

Referenced by Draw(), FP420SD::EndOfEvent(), and operator<<().

150 { return thePhiAtEntry; }
float thePhiAtEntry
Definition: FP420G4Hit.h:121
float FP420G4Hit::getThetaAtEntry ( ) const

Definition at line 149 of file FP420G4Hit.cc.

References theThetaAtEntry.

Referenced by Draw(), FP420SD::EndOfEvent(), and operator<<().

149 { return theThetaAtEntry; }
float theThetaAtEntry
Definition: FP420G4Hit.h:120
double FP420G4Hit::getTimeSlice ( ) const

Definition at line 127 of file FP420G4Hit.cc.

References theTimeSlice.

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

127 { return theTimeSlice; }
double theTimeSlice
Definition: FP420G4Hit.h:108
int FP420G4Hit::getTimeSliceID ( ) const

Definition at line 129 of file FP420G4Hit.cc.

References theTimeSlice.

Referenced by Draw(), FP420SD::HitExists(), and operator<<().

129 { return (int)theTimeSlice; }
double theTimeSlice
Definition: FP420G4Hit.h:108
float FP420G4Hit::getTof ( ) const

Definition at line 139 of file FP420G4Hit.cc.

References theTof.

Referenced by Draw(), FP420SD::EndOfEvent(), and operator<<().

139 { return theTof; }
float theTof
Definition: FP420G4Hit.h:116
unsigned int FP420G4Hit::getTrackID ( ) const

Definition at line 121 of file FP420G4Hit.cc.

References theTrackID.

Referenced by Draw(), FP420SD::EndOfEvent(), FP420SD::HitExists(), operator<<(), and FP420Test::update().

121 { return theTrackID; }
G4int theTrackID
Definition: FP420G4Hit.h:106
unsigned int FP420G4Hit::getUnitID ( ) const

Definition at line 124 of file FP420G4Hit.cc.

References theUnitID.

Referenced by Draw(), FP420SD::EndOfEvent(), FP420SD::HitExists(), operator<<(), and FP420Test::update().

124 { return theUnitID; }
int theUnitID
Definition: FP420G4Hit.h:110
float FP420G4Hit::getVx ( ) const

Definition at line 167 of file FP420G4Hit.cc.

References theVx.

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

167 { return theVx; }
float theVx
Definition: FP420G4Hit.h:124
float FP420G4Hit::getVy ( ) const

Definition at line 170 of file FP420G4Hit.cc.

References theVy.

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

170 { return theVy; }
float theVy
Definition: FP420G4Hit.h:125
float FP420G4Hit::getVz ( ) const

Definition at line 173 of file FP420G4Hit.cc.

References theVz.

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

173 { return theVz; }
float theVz
Definition: FP420G4Hit.h:126
float FP420G4Hit::getX ( ) const

Definition at line 155 of file FP420G4Hit.cc.

References theX.

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

155 { return theX; }
float theX
Definition: FP420G4Hit.h:112
float FP420G4Hit::getY ( ) const

Definition at line 158 of file FP420G4Hit.cc.

References theY.

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

158 { return theY; }
float theY
Definition: FP420G4Hit.h:113
float FP420G4Hit::getZ ( ) const

Definition at line 161 of file FP420G4Hit.cc.

References theZ.

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

161 { return theZ; }
float theZ
Definition: FP420G4Hit.h:114
const FP420G4Hit & FP420G4Hit::operator= ( const FP420G4Hit right)

Definition at line 66 of file FP420G4Hit.cc.

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

66  {
67  theUnitID = right.theUnitID;
68 
69  theTrackID = right.theTrackID;
70  theTof = right.theTof;
73  thePabs = right.thePabs;
74  elem = right.elem;
75  hadr = right.hadr;
77  theTimeSlice = right.theTimeSlice;
78  entry = right.entry;
79  entrylp = right.entrylp;
80  exitlp = right.exitlp;
83  theParentId = right.theParentId;
84 
85  theX = right.theX;
86  theY = right.theY;
87  theZ = right.theZ;
88 
89  theVx = right.theVx;
90  theVy = right.theVy;
91  theVz = right.theVz;
92 
93  return *this;
94 }
float theTof
Definition: FP420G4Hit.h:116
double theIncidentEnergy
Definition: FP420G4Hit.h:105
G4ThreeVector entrylp
Definition: FP420G4Hit.h:101
double theTimeSlice
Definition: FP420G4Hit.h:108
int theParentId
Definition: FP420G4Hit.h:123
int theParticleType
Definition: FP420G4Hit.h:118
double elem
Definition: FP420G4Hit.h:103
double hadr
Definition: FP420G4Hit.h:104
G4int theTrackID
Definition: FP420G4Hit.h:106
G4ThreeVector exitlp
Definition: FP420G4Hit.h:102
float theVy
Definition: FP420G4Hit.h:125
float theThetaAtEntry
Definition: FP420G4Hit.h:120
float thePabs
Definition: FP420G4Hit.h:115
float theY
Definition: FP420G4Hit.h:113
int theUnitID
Definition: FP420G4Hit.h:110
G4ThreeVector entry
Definition: FP420G4Hit.h:100
float theZ
Definition: FP420G4Hit.h:114
float theVx
Definition: FP420G4Hit.h:124
float theEnergyLoss
Definition: FP420G4Hit.h:117
float thePhiAtEntry
Definition: FP420G4Hit.h:121
float theX
Definition: FP420G4Hit.h:112
float theVz
Definition: FP420G4Hit.h:126
int FP420G4Hit::operator== ( const FP420G4Hit )
inline

Definition at line 25 of file FP420G4Hit.h.

25 { return 0; }
void FP420G4Hit::Print ( void  )
override

Definition at line 101 of file FP420G4Hit.cc.

References gather_cfg::cout.

Referenced by Draw().

101 { std::cout << (*this); }
void FP420G4Hit::setEM ( double  e)

Definition at line 113 of file FP420G4Hit.cc.

References MillePedeFileConverter_cfg::e, and elem.

Referenced by Draw().

void FP420G4Hit::setEnergyLoss ( float  e)
void FP420G4Hit::setEntry ( const G4ThreeVector &  xyz)

Definition at line 104 of file FP420G4Hit.cc.

References entry.

Referenced by FP420SD::CreateNewHit(), and Draw().

104 { entry = xyz; }
G4ThreeVector entry
Definition: FP420G4Hit.h:100
void FP420G4Hit::setEntryLocalP ( const G4ThreeVector &  xyz1)

Definition at line 107 of file FP420G4Hit.cc.

References entrylp.

Referenced by FP420SD::CreateNewHit(), and Draw().

107 { entrylp = xyz1; }
G4ThreeVector entrylp
Definition: FP420G4Hit.h:101
void FP420G4Hit::setExitLocalP ( const G4ThreeVector &  xyz1)

Definition at line 110 of file FP420G4Hit.cc.

References exitlp.

Referenced by FP420SD::CreateNewHit(), and Draw().

110 { exitlp = xyz1; }
G4ThreeVector exitlp
Definition: FP420G4Hit.h:102
void FP420G4Hit::setHadr ( double  e)

Definition at line 116 of file FP420G4Hit.cc.

References MillePedeFileConverter_cfg::e, and hadr.

Referenced by Draw().

void FP420G4Hit::setIncidentEnergy ( double  e)
void FP420G4Hit::setPabs ( float  e)

Definition at line 143 of file FP420G4Hit.cc.

References MillePedeFileConverter_cfg::e, and thePabs.

Referenced by FP420SD::CreateNewHit(), and Draw().

void FP420G4Hit::setParentId ( int  p)
void FP420G4Hit::setParticleType ( short  i)

Definition at line 147 of file FP420G4Hit.cc.

References mps_fire::i, and theParticleType.

Referenced by FP420SD::CreateNewHit(), and Draw().

147 { theParticleType = i; }
int theParticleType
Definition: FP420G4Hit.h:118
void FP420G4Hit::setPhiAtEntry ( float  f)

Definition at line 153 of file FP420G4Hit.cc.

References f, and thePhiAtEntry.

Referenced by FP420SD::CreateNewHit(), and Draw().

153 { thePhiAtEntry = f; }
double f[11][100]
float thePhiAtEntry
Definition: FP420G4Hit.h:121
void FP420G4Hit::setThetaAtEntry ( float  t)

Definition at line 152 of file FP420G4Hit.cc.

References lumiQTWidget::t, and theThetaAtEntry.

Referenced by FP420SD::CreateNewHit(), and Draw().

152 { theThetaAtEntry = t; }
float theThetaAtEntry
Definition: FP420G4Hit.h:120
void FP420G4Hit::setTimeSlice ( double  d)

Definition at line 128 of file FP420G4Hit.cc.

References edmIntegrityCheck::d, and theTimeSlice.

Referenced by FP420SD::CreateNewHit(), and Draw().

void FP420G4Hit::setTof ( float  e)

Definition at line 144 of file FP420G4Hit.cc.

References MillePedeFileConverter_cfg::e, and theTof.

Referenced by FP420SD::CreateNewHit(), and Draw().

void FP420G4Hit::setTrackID ( int  i)

Definition at line 122 of file FP420G4Hit.cc.

References mps_fire::i, and theTrackID.

Referenced by FP420SD::CreateNewHit(), and Draw().

122 { theTrackID = i; }
G4int theTrackID
Definition: FP420G4Hit.h:106
void FP420G4Hit::setUnitID ( unsigned int  i)

Definition at line 125 of file FP420G4Hit.cc.

References mps_fire::i, and theUnitID.

Referenced by FP420SD::CreateNewHit(), and Draw().

125 { theUnitID = i; }
int theUnitID
Definition: FP420G4Hit.h:110
void FP420G4Hit::setVx ( float  p)

Definition at line 168 of file FP420G4Hit.cc.

References lumiQTWidget::t, and theVx.

Referenced by FP420SD::CreateNewHit(), and Draw().

168 { theVx = t; }
float theVx
Definition: FP420G4Hit.h:124
void FP420G4Hit::setVy ( float  p)

Definition at line 171 of file FP420G4Hit.cc.

References lumiQTWidget::t, and theVy.

Referenced by FP420SD::CreateNewHit(), and Draw().

171 { theVy = t; }
float theVy
Definition: FP420G4Hit.h:125
void FP420G4Hit::setVz ( float  p)

Definition at line 174 of file FP420G4Hit.cc.

References lumiQTWidget::t, and theVz.

Referenced by FP420SD::CreateNewHit(), and Draw().

174 { theVz = t; }
float theVz
Definition: FP420G4Hit.h:126
void FP420G4Hit::setX ( float  t)

Definition at line 156 of file FP420G4Hit.cc.

References lumiQTWidget::t, and theX.

Referenced by FP420SD::CreateNewHit(), and Draw().

156 { theX = t; }
float theX
Definition: FP420G4Hit.h:112
void FP420G4Hit::setY ( float  t)

Definition at line 159 of file FP420G4Hit.cc.

References lumiQTWidget::t, and theY.

Referenced by FP420SD::CreateNewHit(), and Draw().

159 { theY = t; }
float theY
Definition: FP420G4Hit.h:113
void FP420G4Hit::setZ ( float  t)

Definition at line 162 of file FP420G4Hit.cc.

References lumiQTWidget::t, and theZ.

Referenced by FP420SD::CreateNewHit(), and Draw().

162 { theZ = t; }
float theZ
Definition: FP420G4Hit.h:114

Member Data Documentation

double FP420G4Hit::elem
private

Definition at line 103 of file FP420G4Hit.h.

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

G4ThreeVector FP420G4Hit::entry
private

Definition at line 100 of file FP420G4Hit.h.

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

G4ThreeVector FP420G4Hit::entrylp
private

Definition at line 101 of file FP420G4Hit.h.

Referenced by FP420G4Hit(), getEntryLocalP(), operator=(), and setEntryLocalP().

G4ThreeVector FP420G4Hit::exitlp
private

Definition at line 102 of file FP420G4Hit.h.

Referenced by FP420G4Hit(), getExitLocalP(), operator=(), and setExitLocalP().

double FP420G4Hit::hadr
private
float FP420G4Hit::theEnergyLoss
private

Definition at line 117 of file FP420G4Hit.h.

Referenced by addEnergyLoss(), FP420G4Hit(), getEnergyLoss(), operator=(), and setEnergyLoss().

double FP420G4Hit::theIncidentEnergy
private

Definition at line 105 of file FP420G4Hit.h.

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

float FP420G4Hit::thePabs
private

Definition at line 115 of file FP420G4Hit.h.

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

int FP420G4Hit::theParentId
private

Definition at line 123 of file FP420G4Hit.h.

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

int FP420G4Hit::theParticleType
private

Definition at line 118 of file FP420G4Hit.h.

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

float FP420G4Hit::thePhiAtEntry
private

Definition at line 121 of file FP420G4Hit.h.

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

float FP420G4Hit::theThetaAtEntry
private

Definition at line 120 of file FP420G4Hit.h.

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

double FP420G4Hit::theTimeSlice
private

Definition at line 108 of file FP420G4Hit.h.

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

float FP420G4Hit::theTof
private

Definition at line 116 of file FP420G4Hit.h.

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

G4int FP420G4Hit::theTrackID
private

Definition at line 106 of file FP420G4Hit.h.

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

int FP420G4Hit::theUnitID
private

Definition at line 110 of file FP420G4Hit.h.

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

float FP420G4Hit::theVx
private

Definition at line 124 of file FP420G4Hit.h.

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

float FP420G4Hit::theVy
private

Definition at line 125 of file FP420G4Hit.h.

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

float FP420G4Hit::theVz
private

Definition at line 126 of file FP420G4Hit.h.

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

float FP420G4Hit::theX
private

Definition at line 112 of file FP420G4Hit.h.

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

float FP420G4Hit::theY
private

Definition at line 113 of file FP420G4Hit.h.

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

float FP420G4Hit::theZ
private

Definition at line 114 of file FP420G4Hit.h.

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