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 (const TotemG4Hit &aHit)
 
void addEnergyDeposit (double em, double hd)
 
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() [1/2]

TotemG4Hit::TotemG4Hit ( )

Definition at line 22 of file TotemG4Hit.cc.

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 }

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

◆ ~TotemG4Hit()

TotemG4Hit::~TotemG4Hit ( )
override

Definition at line 49 of file TotemG4Hit.cc.

49 {}

◆ TotemG4Hit() [2/2]

TotemG4Hit::TotemG4Hit ( const TotemG4Hit right)

Definition at line 51 of file TotemG4Hit.cc.

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 }

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

Member Function Documentation

◆ addEnergyDeposit() [1/2]

void TotemG4Hit::addEnergyDeposit ( const TotemG4Hit aHit)

Definition at line 107 of file TotemG4Hit.cc.

107  {
108  elem += aHit.getEM();
109  hadr += aHit.getHadr();
110 }

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

◆ addEnergyDeposit() [2/2]

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

Definition at line 135 of file TotemG4Hit.cc.

135  {
136  elem += em;
137  hadr += hd;
138 }

References elem, and hadr.

◆ Draw()

void TotemG4Hit::Draw ( )
inlineoverride

Definition at line 51 of file TotemG4Hit.h.

51 {}

◆ getEM()

double TotemG4Hit::getEM ( ) const

Definition at line 116 of file TotemG4Hit.cc.

116 { return elem; }

References elem.

Referenced by addEnergyDeposit().

◆ getEnergyDeposit()

double TotemG4Hit::getEnergyDeposit ( ) const

Definition at line 140 of file TotemG4Hit.cc.

140 { return elem + hadr; }

References elem, and hadr.

◆ getEnergyLoss()

float TotemG4Hit::getEnergyLoss ( ) const

Definition at line 144 of file TotemG4Hit.cc.

144 { return theEnergyLoss; }

References theEnergyLoss.

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

◆ getEntry()

math::XYZPoint TotemG4Hit::getEntry ( ) const

Definition at line 114 of file TotemG4Hit.cc.

114 { return entry; }

References entry.

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

◆ getHadr()

double TotemG4Hit::getHadr ( ) const

Definition at line 119 of file TotemG4Hit.cc.

119 { return hadr; }

References hadr.

Referenced by addEnergyDeposit().

◆ getIncidentEnergy()

double TotemG4Hit::getIncidentEnergy ( ) const

Definition at line 122 of file TotemG4Hit.cc.

122 { return theIncidentEnergy; }

References theIncidentEnergy.

◆ getPabs()

float TotemG4Hit::getPabs ( ) const

Definition at line 142 of file TotemG4Hit.cc.

142 { return thePabs; }

References thePabs.

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

◆ getParentId()

int TotemG4Hit::getParentId ( ) const

Definition at line 167 of file TotemG4Hit.cc.

167 { return theParentId; }

References theParentId.

Referenced by TotemTestGem::fillEvent().

◆ getParticleType()

int TotemG4Hit::getParticleType ( ) const

Definition at line 145 of file TotemG4Hit.cc.

145 { return theParticleType; }

References theParticleType.

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

◆ getPhiAtEntry()

float TotemG4Hit::getPhiAtEntry ( ) const

Definition at line 153 of file TotemG4Hit.cc.

153 { return thePhiAtEntry; }

References thePhiAtEntry.

Referenced by TotemSD::EndOfEvent().

◆ getThetaAtEntry()

float TotemG4Hit::getThetaAtEntry ( ) const

Definition at line 152 of file TotemG4Hit.cc.

152 { return theThetaAtEntry; }

References theThetaAtEntry.

Referenced by TotemSD::EndOfEvent().

◆ getTimeSlice()

double TotemG4Hit::getTimeSlice ( ) const

Definition at line 131 of file TotemG4Hit.cc.

131 { return theTimeSlice; }

References theTimeSlice.

◆ getTimeSliceID()

int TotemG4Hit::getTimeSliceID ( ) const

Definition at line 133 of file TotemG4Hit.cc.

133 { return (int)theTimeSlice; }

References theTimeSlice.

Referenced by TotemSD::hitExists().

◆ getTof()

float TotemG4Hit::getTof ( ) const

Definition at line 143 of file TotemG4Hit.cc.

143 { return theTof; }

References theTof.

Referenced by TotemSD::EndOfEvent().

◆ getTrackID()

int TotemG4Hit::getTrackID ( ) const

Definition at line 125 of file TotemG4Hit.cc.

125 { return theTrackID; }

References theTrackID.

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

◆ getUnitID()

uint32_t TotemG4Hit::getUnitID ( ) const

Definition at line 128 of file TotemG4Hit.cc.

128 { return theUnitID; }

References theUnitID.

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

◆ getVx()

float TotemG4Hit::getVx ( ) const

Definition at line 170 of file TotemG4Hit.cc.

170 { return theVx; }

References theVx.

Referenced by TotemTestGem::fillEvent().

◆ getVy()

float TotemG4Hit::getVy ( ) const

Definition at line 173 of file TotemG4Hit.cc.

173 { return theVy; }

References theVy.

Referenced by TotemTestGem::fillEvent().

◆ getVz()

float TotemG4Hit::getVz ( ) const

Definition at line 176 of file TotemG4Hit.cc.

176 { return theVz; }

References theVz.

Referenced by TotemTestGem::fillEvent().

◆ getX()

float TotemG4Hit::getX ( ) const

Definition at line 158 of file TotemG4Hit.cc.

158 { return theX; }

References theX.

◆ getY()

float TotemG4Hit::getY ( ) const

Definition at line 161 of file TotemG4Hit.cc.

161 { return theY; }

References theY.

◆ getZ()

float TotemG4Hit::getZ ( ) const

Definition at line 164 of file TotemG4Hit.cc.

164 { return theZ; }

References theZ.

◆ operator=()

const TotemG4Hit & TotemG4Hit::operator= ( const TotemG4Hit right)

Definition at line 78 of file TotemG4Hit.cc.

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 }

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

◆ operator==()

int TotemG4Hit::operator== ( const TotemG4Hit )
inline

Definition at line 48 of file TotemG4Hit.h.

48 { return 0; }

◆ Print()

void TotemG4Hit::Print ( void  )
override

Definition at line 112 of file TotemG4Hit.cc.

112 { std::cout << (*this); }

References gather_cfg::cout.

◆ setEM()

void TotemG4Hit::setEM ( double  e)

Definition at line 117 of file TotemG4Hit.cc.

117 { elem = e; }

References MillePedeFileConverter_cfg::e, and elem.

◆ setEnergyLoss()

void TotemG4Hit::setEnergyLoss ( float  e)

◆ setEntry()

void TotemG4Hit::setEntry ( double  x,
double  y,
double  z 
)
inline

Definition at line 55 of file TotemG4Hit.h.

55 { entry.SetCoordinates(x, y, z); }

References entry, x, y, and z.

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

◆ setHadr()

void TotemG4Hit::setHadr ( double  e)

Definition at line 120 of file TotemG4Hit.cc.

120 { hadr = e; }

References MillePedeFileConverter_cfg::e, and hadr.

◆ setIncidentEnergy()

void TotemG4Hit::setIncidentEnergy ( double  e)

Definition at line 123 of file TotemG4Hit.cc.

123 { theIncidentEnergy = e; }

References MillePedeFileConverter_cfg::e, and theIncidentEnergy.

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

◆ setPabs()

void TotemG4Hit::setPabs ( float  e)

Definition at line 147 of file TotemG4Hit.cc.

147 { thePabs = e; }

References MillePedeFileConverter_cfg::e, and thePabs.

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

◆ setParentId()

void TotemG4Hit::setParentId ( int  p)

Definition at line 168 of file TotemG4Hit.cc.

168 { theParentId = p; }

References AlCaHLTBitMon_ParallelJobs::p, and theParentId.

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

◆ setParticleType()

void TotemG4Hit::setParticleType ( short  i)

Definition at line 150 of file TotemG4Hit.cc.

150 { theParticleType = i; }

References mps_fire::i, and theParticleType.

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

◆ setPhiAtEntry()

void TotemG4Hit::setPhiAtEntry ( float  f)

Definition at line 156 of file TotemG4Hit.cc.

156 { thePhiAtEntry = f; }

References f, and thePhiAtEntry.

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

◆ setThetaAtEntry()

void TotemG4Hit::setThetaAtEntry ( float  t)

Definition at line 155 of file TotemG4Hit.cc.

155 { theThetaAtEntry = t; }

References submitPVValidationJobs::t, and theThetaAtEntry.

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

◆ setTimeSlice()

void TotemG4Hit::setTimeSlice ( double  d)

Definition at line 132 of file TotemG4Hit.cc.

132 { theTimeSlice = d; }

References ztail::d, and theTimeSlice.

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

◆ setTof()

void TotemG4Hit::setTof ( float  e)

Definition at line 148 of file TotemG4Hit.cc.

148 { theTof = e; }

References MillePedeFileConverter_cfg::e, and theTof.

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

◆ setTrackID()

void TotemG4Hit::setTrackID ( int  i)

Definition at line 126 of file TotemG4Hit.cc.

126 { theTrackID = i; }

References mps_fire::i, and theTrackID.

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

◆ setUnitID()

void TotemG4Hit::setUnitID ( uint32_t  i)

Definition at line 129 of file TotemG4Hit.cc.

129 { theUnitID = i; }

References mps_fire::i, and theUnitID.

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

◆ setVx()

void TotemG4Hit::setVx ( float  p)

Definition at line 171 of file TotemG4Hit.cc.

171 { theVx = t; }

References submitPVValidationJobs::t, and theVx.

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

◆ setVy()

void TotemG4Hit::setVy ( float  p)

Definition at line 174 of file TotemG4Hit.cc.

174 { theVy = t; }

References submitPVValidationJobs::t, and theVy.

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

◆ setVz()

void TotemG4Hit::setVz ( float  p)

Definition at line 177 of file TotemG4Hit.cc.

177 { theVz = t; }

References submitPVValidationJobs::t, and theVz.

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

◆ setX()

void TotemG4Hit::setX ( float  t)

Definition at line 159 of file TotemG4Hit.cc.

159 { theX = t; }

References submitPVValidationJobs::t, and theX.

◆ setY()

void TotemG4Hit::setY ( float  t)

Definition at line 162 of file TotemG4Hit.cc.

162 { theY = t; }

References submitPVValidationJobs::t, and theY.

◆ setZ()

void TotemG4Hit::setZ ( float  t)

Definition at line 165 of file TotemG4Hit.cc.

165 { theZ = t; }

References submitPVValidationJobs::t, and theZ.

Member Data Documentation

◆ elem

double TotemG4Hit::elem
private

Definition at line 116 of file TotemG4Hit.h.

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

◆ entry

math::XYZPoint TotemG4Hit::entry
private

Definition at line 115 of file TotemG4Hit.h.

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

◆ hadr

double TotemG4Hit::hadr
private

◆ theEnergyLoss

float TotemG4Hit::theEnergyLoss
private

Definition at line 129 of file TotemG4Hit.h.

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

◆ theEntryPoint

math::XYZPoint TotemG4Hit::theEntryPoint
private

Definition at line 134 of file TotemG4Hit.h.

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

◆ theExitPoint

math::XYZPoint TotemG4Hit::theExitPoint
private

Definition at line 135 of file TotemG4Hit.h.

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

◆ theIncidentEnergy

double TotemG4Hit::theIncidentEnergy
private

Definition at line 118 of file TotemG4Hit.h.

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

◆ thePabs

float TotemG4Hit::thePabs
private

Definition at line 127 of file TotemG4Hit.h.

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

◆ theParentId

int TotemG4Hit::theParentId
private

Definition at line 137 of file TotemG4Hit.h.

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

◆ theParticleType

int TotemG4Hit::theParticleType
private

Definition at line 130 of file TotemG4Hit.h.

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

◆ thePhiAtEntry

float TotemG4Hit::thePhiAtEntry
private

Definition at line 133 of file TotemG4Hit.h.

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

◆ theThetaAtEntry

float TotemG4Hit::theThetaAtEntry
private

Definition at line 132 of file TotemG4Hit.h.

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

◆ theTimeSlice

double TotemG4Hit::theTimeSlice
private

Definition at line 122 of file TotemG4Hit.h.

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

◆ theTof

float TotemG4Hit::theTof
private

Definition at line 128 of file TotemG4Hit.h.

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

◆ theTrackID

int TotemG4Hit::theTrackID
private

Definition at line 119 of file TotemG4Hit.h.

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

◆ theUnitID

uint32_t TotemG4Hit::theUnitID
private

Definition at line 121 of file TotemG4Hit.h.

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

◆ theVx

float TotemG4Hit::theVx
private

Definition at line 138 of file TotemG4Hit.h.

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

◆ theVy

float TotemG4Hit::theVy
private

Definition at line 139 of file TotemG4Hit.h.

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

◆ theVz

float TotemG4Hit::theVz
private

Definition at line 140 of file TotemG4Hit.h.

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

◆ theX

float TotemG4Hit::theX
private

Definition at line 124 of file TotemG4Hit.h.

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

◆ theY

float TotemG4Hit::theY
private

Definition at line 125 of file TotemG4Hit.h.

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

◆ theZ

float TotemG4Hit::theZ
private

Definition at line 126 of file TotemG4Hit.h.

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

TotemG4Hit::theEntryPoint
math::XYZPoint theEntryPoint
Definition: TotemG4Hit.h:134
TotemG4Hit::theZ
float theZ
Definition: TotemG4Hit.h:126
DDAxes::y
mps_fire.i
i
Definition: mps_fire.py:428
TotemG4Hit::thePhiAtEntry
float thePhiAtEntry
Definition: TotemG4Hit.h:133
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
gather_cfg.cout
cout
Definition: gather_cfg.py:144
TotemG4Hit::theTimeSlice
double theTimeSlice
Definition: TotemG4Hit.h:122
DDAxes::x
TotemG4Hit::setEntry
void setEntry(double x, double y, double z)
Definition: TotemG4Hit.h:55
TotemG4Hit::theUnitID
uint32_t theUnitID
Definition: TotemG4Hit.h:121
TotemG4Hit::theParentId
int theParentId
Definition: TotemG4Hit.h:137
TotemG4Hit::theExitPoint
math::XYZPoint theExitPoint
Definition: TotemG4Hit.h:135
DDAxes::z
TotemG4Hit::theVz
float theVz
Definition: TotemG4Hit.h:140
TotemG4Hit::theParticleType
int theParticleType
Definition: TotemG4Hit.h:130
TotemG4Hit::theVx
float theVx
Definition: TotemG4Hit.h:138
AlCaHLTBitMon_ParallelJobs.p
def p
Definition: AlCaHLTBitMon_ParallelJobs.py:153
TotemG4Hit::theEnergyLoss
float theEnergyLoss
Definition: TotemG4Hit.h:129
TotemG4Hit::theTrackID
int theTrackID
Definition: TotemG4Hit.h:119
TotemG4Hit::theX
float theX
Definition: TotemG4Hit.h:124
TotemG4Hit::elem
double elem
Definition: TotemG4Hit.h:116
TotemG4Hit::getHadr
double getHadr() const
Definition: TotemG4Hit.cc:119
TotemG4Hit::getEM
double getEM() const
Definition: TotemG4Hit.cc:116
TotemG4Hit::theVy
float theVy
Definition: TotemG4Hit.h:139
TotemG4Hit::theTof
float theTof
Definition: TotemG4Hit.h:128
TotemG4Hit::entry
math::XYZPoint entry
Definition: TotemG4Hit.h:115
TotemG4Hit::thePabs
float thePabs
Definition: TotemG4Hit.h:127
TotemG4Hit::hadr
double hadr
Definition: TotemG4Hit.h:117
TotemG4Hit::theIncidentEnergy
double theIncidentEnergy
Definition: TotemG4Hit.h:118
ztail.d
d
Definition: ztail.py:151
TotemG4Hit::theThetaAtEntry
float theThetaAtEntry
Definition: TotemG4Hit.h:132
submitPVValidationJobs.t
string t
Definition: submitPVValidationJobs.py:644
TotemG4Hit::theY
float theY
Definition: TotemG4Hit.h:125
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37