class_ChannelCluster.h
Go to the documentation of this file.
1 #ifndef CLASS_CHANNELCLUSTER_H
2 #define CLASS_CHANNELCLUSTER_H
3 
4 #include "class_RecoHit.h"
5 #include "class_Cluster.h"
6 
8 {
9  public:
10  channelCluster(int cEvent, std::vector<recoHit> cHitVector, unsigned int cConfig);
12 
13  int getNClusters();
14  std::vector<cluster> getClusterVector();
15 
16  private:
17  int fNClusters = 0;
18  unsigned int fConfig = 0;
19  std::vector<recoHit> fHitVector;
20  std::vector<cluster> fVecClusters;
21 };
22 
23 #endif
24 
unsigned int fConfig
std::vector< cluster > getClusterVector()
std::vector< recoHit > fHitVector
std::vector< cluster > fVecClusters