FairRoot/PandaRoot
PndHypCluster.cxx
Go to the documentation of this file.
1 #include "PndHypCluster.h"
2 
3 PndHypCluster::PndHypCluster(std::vector<Int_t> list) :
4  fClusterList(list),fSide(kTOP)
5 {
6 }
7 
9 {
10  std::cout << *this;
11 }
12 
14 {
15  for (unsigned int i = 0; i < fClusterList.size(); i++)
16  if (fClusterList[i] == digiIndex) return true;
17 
18  return false;
19 }
20 
Class to store the Digis which belong to one cluster This class holds the information which Digi belo...
Definition: PndHypCluster.h:18
Int_t i
Definition: run_full.C:25
std::vector< Int_t > fClusterList
Definition: PndHypCluster.h:46
ClassImp(PndAnaContFact)
bool DigiBelongsToCluster(Int_t digiIndex)