12 |
|
110 => Island Barrel BasicClusters |
13 |
|
120 => Island Endcap BasicClusters |
14 |
|
210 => hybrid Barrel BasicClusters |
15 |
+ |
310 => multi5x5 Barrel BasicClusters |
16 |
|
320 => multi5x5 Endcap BasicClusters |
17 |
|
|
18 |
|
SuperClusters |
81 |
|
Double_t eMax() const { return eMax_; } |
82 |
|
Double_t e2nd() const { return e2nd_; } |
83 |
|
Int_t nXtals() const { return nXtals_; } |
84 |
< |
Int_t uid() const { return uid_; } |
84 |
> |
UInt_t uid() const { return uid_; } |
85 |
|
TString typeName() const { |
86 |
|
if ( det_==110 ) return "Island Barrel BC"; |
87 |
|
else if ( det_==120 ) return "Island Endcap BC"; |
100 |
|
void setEmax(Double_t eMax) { eMax_ = eMax; } |
101 |
|
void setE2nd(Double_t e2nd) { e2nd_ = e2nd; } |
102 |
|
void setNxtals(Int_t nXtals) { nXtals_ = nXtals; } |
103 |
< |
void setUid(Int_t uid) { uid_ = uid; } |
103 |
> |
void setUid(UInt_t uid) { uid_ = uid; } |
104 |
|
|
105 |
|
|
106 |
|
friend std::ostream& operator<< (std::ostream& stream, const TRootCluster& clus) |
128 |
|
Double_t eMax_; |
129 |
|
Double_t e2nd_; |
130 |
|
Int_t nXtals_; |
131 |
< |
Int_t uid_; |
131 |
> |
UInt_t uid_; |
132 |
|
|
133 |
|
ClassDef (TRootCluster,2); |
134 |
|
|