Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DFCALShower.cc
Go to the documentation of this file.
1 // DFCALShower member functions
2 
3 #include "DFCALShower.h"
4 
5 DFCALShower::DFCALShower():ExyztCovariance(5)
6 {
7  fEnergy = 0.;
8  fTime = 0.;
9  fPosition.SetXYZ(0., 0., 0.);
10  fTimeTr = 1E3;
11  fDocaTr = 1E3;
12  fSumU = 0;
13  fSumV = 0;
14  fE9E25 = 0;
15  fE1E9 = 0;
16  iNumBlocks = 0;
17 }
18 
20 {
21 }
22 
23 //
24 
25 void DFCALShower::setEnergy(const double energy)
26 {
27  fEnergy = energy;
28 }
29 
30 void DFCALShower::setTime(const double time)
31 {
32  fTime = time;
33 }
34 
35 void DFCALShower::setPosition(const DVector3& aPosition )
36 {
37  fPosition = aPosition;
38 }
39 
40 void DFCALShower::setDocaTrack( const double docaTrack ){ fDocaTr = docaTrack; }
41 void DFCALShower::setTimeTrack( const double tTrack ){ fTimeTr = tTrack; }
42 void DFCALShower::setSumU( const double sumU ){ fSumU = sumU; }
43 void DFCALShower::setSumV( const double sumV ){ fSumV = sumV; }
44 void DFCALShower::setE9E25( const double e9e25 ){ fE9E25 = e9e25; }
45 void DFCALShower::setE1E9( const double e1e9 ){ fE1E9 = e1e9; }
46 void DFCALShower::setNumBlocks( const int numBlocks ){ iNumBlocks = numBlocks; }
47 
48 
void setDocaTrack(const double docaTrack)
Definition: DFCALShower.cc:40
void setTimeTrack(const double tTrack)
Definition: DFCALShower.cc:41
double fE1E9
Definition: DFCALShower.h:146
DVector3 fPosition
Definition: DFCALShower.h:140
void setE9E25(const double e9e25)
Definition: DFCALShower.cc:44
TVector3 DVector3
Definition: DVector3.h:14
double fSumV
Definition: DFCALShower.h:144
void setTime(const double time)
Definition: DFCALShower.cc:30
double fEnergy
Definition: DFCALShower.h:138
void setSumU(const double sumU)
Definition: DFCALShower.cc:42
double fSumU
Definition: DFCALShower.h:143
double fDocaTr
Definition: DFCALShower.h:142
void setPosition(const DVector3 &aPosition)
Definition: DFCALShower.cc:35
static double E3[100]
void setEnergy(const double energy)
Definition: DFCALShower.cc:25
double fTimeTr
Definition: DFCALShower.h:141
void setE1E9(const double e1e9)
Definition: DFCALShower.cc:45
double fTime
Definition: DFCALShower.h:139
double fE9E25
Definition: DFCALShower.h:145
void setSumV(const double sumV)
Definition: DFCALShower.cc:43
void setNumBlocks(const int numBlocks)
Definition: DFCALShower.cc:46