88 |
|
Double_t YZ() const { return fYZ; } |
89 |
|
Double_t Time() const { return fTime; } |
90 |
|
Double_t SeedTime() const { return fSeedTime; } |
91 |
+ |
Double_t LeadTimeSpan() const { return fLeadTimeSpan; } |
92 |
+ |
Double_t SubLeadTimeSpan() const { return fSubLeadTimeSpan; } |
93 |
|
Double_t PsEffWidthSigmaXX() const { return fPsEffWidthSigmaXX; } |
94 |
|
Double_t PsEffWidthSigmaYY() const { return fPsEffWidthSigmaYY; } |
95 |
|
|
120 |
|
void SetYZ(Double_t x) { fYZ = x; } |
121 |
|
void SetTime(Double_t x) { fTime = x; } |
122 |
|
void SetSeedTime(Double_t x) { fSeedTime = x; } |
123 |
+ |
void SetLeadTimeSpan(Double_t x) { fLeadTimeSpan = x; } |
124 |
+ |
void SetSubLeadTimeSpan(Double_t x) { fSubLeadTimeSpan = x; } |
125 |
|
void SetPsEffWidthSigmaXX(Double_t x) { fPsEffWidthSigmaXX = x; } |
126 |
|
void SetPsEffWidthSigmaYY(Double_t x) { fPsEffWidthSigmaYY = x; } |
127 |
|
|
156 |
|
Double32_t fYZ; //local coordinates |
157 |
|
Double32_t fTime; //ecal timing (weighted average) |
158 |
|
Double32_t fSeedTime; //ecal timing (seed crystal) |
159 |
+ |
Double32_t fLeadTimeSpan; //ecal supercluster max timespan (seed vs. any other xtal) |
160 |
+ |
Double32_t fSubLeadTimeSpan; //ecal supercluster next-to-max timespan (seed vs. any other xtal) |
161 |
|
|
162 |
|
Double32_t fPreshowerEnergyPlane1; //local coordinates |
163 |
|
Double32_t fPreshowerEnergyPlane2; //local coordinates |
165 |
|
Double32_t fPsEffWidthSigmaYY; //preshower cluster width in y plane |
166 |
|
RefArray<PsCluster> fPsClusts; //assigned preshower clusters |
167 |
|
|
168 |
< |
ClassDef(SuperCluster, 5) // Super cluster class |
168 |
> |
ClassDef(SuperCluster, 6) // Super cluster class |
169 |
|
}; |
170 |
|
} |
171 |
|
|