1 #ifndef __StEEmcBaseCluster_h__
2 #define __StEEmcBaseCluster_h__
30 Int_t key()
const {
return mKey;}
31 void key(Int_t k) {mKey = k;}
33 Bool_t split()
const {
return mSplit; }
34 void split(Bool_t s){ mSplit=s; }
36 void addMatch( Int_t key, Int_t layer ) { mMatched[layer].push_back(key); }
37 Int_t numberOfMatchingClusters( Int_t layer )
const {
return (Int_t)mMatched[layer].size(); }
38 Int_t getMatch( Int_t ith, Int_t layer )
const {
return mMatched[layer][ith]; }
40 Float_t energy()
const {
return mEnergy; }
41 void energy( Float_t e){ mEnergy=e; }
42 Int_t numberOfElements()
const {
return mNumberOfElements; }
47 std::vector< std::vector< Int_t > > mMatched;
49 Int_t mNumberOfElements;