PandaRoot
PndSdsClusterPixel.h
Go to the documentation of this file.
1 /*
2  * PndSdsClusterPixel.h
3  *
4  * Created on: Dec 15, 2009
5  * Author: stockmanns, kliemt, michel
6  */
7 
8 #ifndef PNDSDSCLUSTERPIXEL_H_
9 #define PNDSDSCLUSTERPIXEL_H_
10 
11 #include "PndSdsCluster.h"
12 
14  public:
16  PndSdsClusterPixel(Int_t DigiType, std::vector<Int_t> list, Int_t fileId = -1, Int_t evtId = -1) { SetClusterList(DigiType, list, fileId, evtId); };
17  virtual ~PndSdsClusterPixel();
18 
19  void SetClusterList(Int_t DigiType, std::vector<Int_t> list, Int_t fileId, Int_t evtId)
20  {
21  fClusterList = list;
22  SetLinks(FairMultiLinkedData(DigiType, list, fileId, evtId));
23  }
24 
26 };
27 
28 #endif /* PNDSDSCLUSTERPixel_H_ */
virtual ~PndSdsClusterPixel()
Class to store the Digis which belong to one cluster This class holds the information which Digi belo...
Definition: PndSdsCluster.h:18
void SetClusterList(Int_t DigiType, std::vector< Int_t > list, Int_t fileId, Int_t evtId)
PndSdsClusterPixel(Int_t DigiType, std::vector< Int_t > list, Int_t fileId=-1, Int_t evtId=-1)
ClassDef(PndSdsClusterPixel, 1)
std::vector< Int_t > fClusterList
Definition: PndSdsCluster.h:46