FairRoot/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){
17  SetClusterList(DigiType, list, fileId, evtId);
18  };
19  virtual ~PndSdsClusterPixel();
20 
21  void SetClusterList(Int_t DigiType, std::vector<Int_t> list, Int_t fileId, Int_t evtId){
22  fClusterList = list;
23  SetLinks(FairMultiLinkedData(DigiType, list, fileId, evtId));
24  }
25 
27 };
28 
29 #endif /* PNDSDSCLUSTERPixel_H_ */
Class to store the Digis which belong to one cluster This class holds the information which Digi belo...
Definition: PndSdsCluster.h:19
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:47