CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
IslandClusterAlgo Class Reference

#include <IslandClusterAlgo.h>

Public Types

enum  EcalPart { barrel = 0, endcap = 1 }
 
typedef math::XYZPoint Point
 point in the space More...
 
enum  VerbosityLevel { pDEBUG = 0, pWARNING = 1, pINFO = 2, pERROR = 3 }
 

Public Member Functions

 IslandClusterAlgo ()
 
 IslandClusterAlgo (double ebst, double ecst, const PositionCalc &posCalc, const std::vector< int > &v_chstatusSeed_Barrel, const std::vector< int > &v_chstatusSeed_Endcap, const std::vector< int > &v_chstatus_Barrel, const std::vector< int > &v_chstatus_Endcap, VerbosityLevel the_verbosity=pERROR)
 
std::vector< reco::BasicClustermakeClusters (const EcalRecHitCollection *hits, const CaloSubdetectorGeometry *geometry, const CaloSubdetectorTopology *topology_p, const CaloSubdetectorGeometry *geometryES_p, EcalPart ecalPart, bool regional=false, const std::vector< RectangularEtaPhiRegion > &regions=std::vector< RectangularEtaPhiRegion >())
 
void setVerbosity (VerbosityLevel the_verbosity)
 
virtual ~IslandClusterAlgo ()
 

Private Member Functions

void mainSearch (const EcalRecHitCollection *hits, const CaloSubdetectorGeometry *geometry_p, const CaloSubdetectorTopology *topology_p, const CaloSubdetectorGeometry *geometryES_p, EcalPart ecalPart)
 
void makeCluster (const EcalRecHitCollection *hits, const CaloSubdetectorGeometry *geometry_p, const CaloSubdetectorGeometry *geometryES_p)
 
void searchEast (const CaloNavigator< DetId > &navigator, const CaloSubdetectorTopology *topology)
 
void searchNorth (const CaloNavigator< DetId > &navigator)
 
void searchSouth (const CaloNavigator< DetId > &navigator)
 
void searchWest (const CaloNavigator< DetId > &navigator, const CaloSubdetectorTopology *topology)
 
bool shouldBeAdded (EcalRecHitCollection::const_iterator candidate_it, EcalRecHitCollection::const_iterator previous_it)
 

Private Attributes

std::vector< reco::BasicClusterclusters_v
 
std::vector< std::pair< DetId, float > > current_v
 
double ecalBarrelSeedThreshold
 
double ecalEndcapSeedThreshold
 
PositionCalc posCalculator_
 
const EcalRecHitCollectionrecHits_
 
std::vector< EcalRecHitseeds
 
std::set< DetIdused_s
 
std::vector< int > v_chstatus_
 
std::vector< int > v_chstatus_Barrel_
 
std::vector< int > v_chstatus_Endcap_
 
std::vector< int > v_chstatusSeed_
 
std::vector< int > v_chstatusSeed_Barrel_
 
std::vector< int > v_chstatusSeed_Endcap_
 
VerbosityLevel verbosity
 

Detailed Description

Definition at line 26 of file IslandClusterAlgo.h.

Member Typedef Documentation

◆ Point

point in the space

Definition at line 66 of file IslandClusterAlgo.h.

Member Enumeration Documentation

◆ EcalPart

Enumerator
barrel 
endcap 

Definition at line 28 of file IslandClusterAlgo.h.

◆ VerbosityLevel

Enumerator
pDEBUG 
pWARNING 
pINFO 
pERROR 

Definition at line 29 of file IslandClusterAlgo.h.

Constructor & Destructor Documentation

◆ IslandClusterAlgo() [1/2]

IslandClusterAlgo::IslandClusterAlgo ( )
inline

Definition at line 31 of file IslandClusterAlgo.h.

31 {}

◆ IslandClusterAlgo() [2/2]

IslandClusterAlgo::IslandClusterAlgo ( double  ebst,
double  ecst,
const PositionCalc posCalc,
const std::vector< int > &  v_chstatusSeed_Barrel,
const std::vector< int > &  v_chstatusSeed_Endcap,
const std::vector< int > &  v_chstatus_Barrel,
const std::vector< int > &  v_chstatus_Endcap,
VerbosityLevel  the_verbosity = pERROR 
)
inline

Definition at line 33 of file IslandClusterAlgo.h.

References posCalculator_.

43  v_chstatusSeed_Barrel_(v_chstatusSeed_Barrel),
44  v_chstatusSeed_Endcap_(v_chstatusSeed_Endcap),
45  v_chstatus_Barrel_(v_chstatus_Barrel),
46  v_chstatus_Endcap_(v_chstatus_Endcap),
47  verbosity(the_verbosity) {
48  posCalculator_ = posCalc;
49  }
std::vector< int > v_chstatusSeed_Endcap_
PositionCalc posCalculator_
VerbosityLevel verbosity
std::vector< int > v_chstatus_Endcap_
std::vector< int > v_chstatusSeed_Barrel_
std::vector< int > v_chstatus_Barrel_

◆ ~IslandClusterAlgo()

virtual IslandClusterAlgo::~IslandClusterAlgo ( )
inlinevirtual

Definition at line 51 of file IslandClusterAlgo.h.

51 {}

Member Function Documentation

◆ mainSearch()

void IslandClusterAlgo::mainSearch ( const EcalRecHitCollection hits,
const CaloSubdetectorGeometry geometry_p,
const CaloSubdetectorTopology topology_p,
const CaloSubdetectorGeometry geometryES_p,
EcalPart  ecalPart 
)
private

Definition at line 109 of file IslandClusterAlgo.cc.

References gather_cfg::cout, current_v, hfClusterShapes_cfi::hits, ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, makeCluster(), HLT_2024v12_cff::navigator, pINFO, searchEast(), searchNorth(), searchSouth(), searchWest(), seeds, used_s, and verbosity.

Referenced by makeClusters().

113  {
114  if (verbosity < pINFO) {
115  std::cout << "Building clusters............" << std::endl;
116  }
117 
118  // Loop over seeds:
119  std::vector<EcalRecHit>::iterator it;
120  for (it = seeds.begin(); it != seeds.end(); it++) {
121  // make sure the current seed does not belong to a cluster already.
122  if (used_s.find(it->id()) != used_s.end()) {
123  if (it == seeds.begin()) {
124  if (verbosity < pINFO) {
125  std::cout << "##############################################################" << std::endl;
126  std::cout << "DEBUG ALERT: Highest energy seed already belongs to a cluster!" << std::endl;
127  std::cout << "##############################################################" << std::endl;
128  }
129  }
130  continue;
131  }
132 
133  // clear the vector of hits in current cluster
134  current_v.clear();
135 
136  current_v.push_back(std::pair<DetId, float>(it->id(), 1.)); // by default hit energy fractions are set at 1.
137  used_s.insert(it->id());
138 
139  // Create a navigator at the seed
140  CaloNavigator<DetId> navigator(it->id(), topology_p);
141 
143  navigator.home();
145  navigator.home();
146  searchWest(navigator, topology_p);
147  navigator.home();
148  searchEast(navigator, topology_p);
149 
150  makeCluster(hits, geometry_p, geometryES_p);
151  }
152 }
void searchEast(const CaloNavigator< DetId > &navigator, const CaloSubdetectorTopology *topology)
void searchWest(const CaloNavigator< DetId > &navigator, const CaloSubdetectorTopology *topology)
std::set< DetId > used_s
VerbosityLevel verbosity
std::vector< std::pair< DetId, float > > current_v
std::vector< EcalRecHit > seeds
void searchNorth(const CaloNavigator< DetId > &navigator)
void makeCluster(const EcalRecHitCollection *hits, const CaloSubdetectorGeometry *geometry_p, const CaloSubdetectorGeometry *geometryES_p)
void searchSouth(const CaloNavigator< DetId > &navigator)

◆ makeCluster()

void IslandClusterAlgo::makeCluster ( const EcalRecHitCollection hits,
const CaloSubdetectorGeometry geometry_p,
const CaloSubdetectorGeometry geometryES_p 
)
private

Definition at line 253 of file IslandClusterAlgo.cc.

References PositionCalc::Calculate_Location(), clusters_v, gather_cfg::cout, current_v, reco::CaloID::DET_ECAL_BARREL, reco::CaloID::DET_ECAL_ENDCAP, EcalBarrel, hcalRecHitTable_cff::energy, EcalRecHit::energy(), hfClusterShapes_cfi::hits, reco::CaloCluster::island, ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, pINFO, posCalculator_, position, and verbosity.

Referenced by mainSearch().

255  {
256  double energy = 0;
257  reco::CaloID caloID;
258 
259  Point position;
261 
262  std::vector<std::pair<DetId, float> >::iterator it;
263  for (it = current_v.begin(); it != current_v.end(); it++) {
264  EcalRecHitCollection::const_iterator itt = hits->find((*it).first);
265  EcalRecHit hit_p = *itt;
266  if ((*it).first.subdetId() == EcalBarrel) {
268  } else {
270  }
271  // if (hit_p != 0)
272  // {
273  energy += hit_p.energy();
274  // }
275  // else
276  // {
277  // std::cout << "DEBUG ALERT: Requested rechit has gone missing from rechits map! :-S" << std::endl;
278  // }
279  }
280 
281  if (verbosity < pINFO) {
282  std::cout << "******** NEW CLUSTER ********" << std::endl;
283  std::cout << "No. of crystals = " << current_v.size() << std::endl;
284  std::cout << " Energy = " << energy << std::endl;
285  std::cout << " Phi = " << position.phi() << std::endl;
286  std::cout << " Eta = " << position.eta() << std::endl;
287  std::cout << "*****************************" << std::endl;
288  }
290 }
std::vector< EcalRecHit >::const_iterator const_iterator
PositionCalc posCalculator_
VerbosityLevel verbosity
math::XYZPoint Calculate_Location(const HitsAndFractions &iDetIds, const edm::SortedCollection< HitType > *iRecHits, const CaloSubdetectorGeometry *iSubGeom, const CaloSubdetectorGeometry *iESGeom=nullptr)
Definition: PositionCalc.h:65
std::vector< std::pair< DetId, float > > current_v
std::vector< reco::BasicCluster > clusters_v
Structure Point Contains parameters of Gaussian fits to DMRs.
static int position[264][3]
Definition: ReadPGInfo.cc:289
float energy() const
Definition: EcalRecHit.h:69

◆ makeClusters()

std::vector< reco::BasicCluster > IslandClusterAlgo::makeClusters ( const EcalRecHitCollection hits,
const CaloSubdetectorGeometry geometry,
const CaloSubdetectorTopology topology_p,
const CaloSubdetectorGeometry geometryES_p,
EcalPart  ecalPart,
bool  regional = false,
const std::vector< RectangularEtaPhiRegion > &  regions = std::vector<RectangularEtaPhiRegion>() 
)

Definition at line 17 of file IslandClusterAlgo.cc.

References barrel, clusters_v, gather_cfg::cout, ecalBarrelSeedThreshold, ecalEndcapSeedThreshold, endcap, hcalRecHitTable_cff::energy, ET, CaloSubdetectorGeometry::getGeometry(), hfClusterShapes_cfi::hits, isClusterEtLess(), ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, EcalRecHit::kGood, mainSearch(), pINFO, position, recHits_, nano_mu_digi_cff::region, seeds, jetUpdater_cfi::sort, AlCaHLTBitMon_QueryRunRegistry::string, DiMuonV_cfg::threshold, used_s, v_chstatus_, v_chstatus_Barrel_, v_chstatus_Endcap_, v_chstatusSeed_, v_chstatusSeed_Barrel_, v_chstatusSeed_Endcap_, verbosity, x, and y.

Referenced by IslandClusterProducer::clusterizeECALPart(), and Pi0FixedMassWindowCalibration::duringLoop().

23  {
24  seeds.clear();
25  used_s.clear();
26  clusters_v.clear();
27 
28  recHits_ = hits;
29 
30  double threshold = 0;
31  std::string ecalPart_string;
32  if (ecalPart == endcap) {
34  ecalPart_string = "EndCap";
37  }
38  if (ecalPart == barrel) {
40  ecalPart_string = "Barrel";
43  }
44 
45  if (verbosity < pINFO) {
46  std::cout << "-------------------------------------------------------------" << std::endl;
47  std::cout << "Island algorithm invoked for ECAL" << ecalPart_string << std::endl;
48  std::cout << "Looking for seeds, energy threshold used = " << threshold << " GeV" << std::endl;
49  }
50 
51  int nregions = 0;
52  if (regional)
53  nregions = regions.size();
54 
55  if (!regional || nregions) {
57  for (it = hits->begin(); it != hits->end(); it++) {
58  double energy = it->energy();
59  if (energy < threshold)
60  continue; // need to check to see if this line is useful!
61 
62  // avoid seeding for anomalous channels
63  if (!it->checkFlag(EcalRecHit::kGood)) { // if rechit is good, no need for further checks
64  if (it->checkFlags(v_chstatus_) || it->checkFlags(v_chstatusSeed_)) {
65  continue; // the recHit has to be excluded from seeding
66  }
67  }
68 
69  auto thisCell = geometry_p->getGeometry(it->id());
70  auto const &position = thisCell->getPosition();
71 
72  // Require that RecHit is within clustering region in case
73  // of regional reconstruction
74  bool withinRegion = false;
75  if (regional) {
76  std::vector<RectangularEtaPhiRegion>::const_iterator region;
77  for (region = regions.begin(); region != regions.end(); region++) {
78  if (region->inRegion(thisCell->etaPos(), thisCell->phiPos())) {
79  withinRegion = true;
80  break;
81  }
82  }
83  }
84 
85  if (!regional || withinRegion) {
86  float ET = it->energy() * position.basicVector().unit().perp();
87  if (ET > threshold)
88  seeds.push_back(*it);
89  }
90  }
91  }
92 
93  sort(seeds.begin(), seeds.end(), [](auto const &x, auto const &y) { return x.energy() > y.energy(); });
94 
95  if (verbosity < pINFO) {
96  std::cout << "Total number of seeds found in event = " << seeds.size() << std::endl;
97  }
98 
99  mainSearch(hits, geometry_p, topology_p, geometryES_p, ecalPart);
100  sort(clusters_v.rbegin(), clusters_v.rend(), isClusterEtLess);
101 
102  if (verbosity < pINFO) {
103  std::cout << "---------- end of main search. clusters have been sorted ----" << std::endl;
104  }
105 
106  return clusters_v;
107 }
std::vector< EcalRecHit >::const_iterator const_iterator
std::vector< int > v_chstatusSeed_Endcap_
std::set< DetId > used_s
VerbosityLevel verbosity
bool isClusterEtLess(const reco::CaloCluster &x, const reco::CaloCluster &y)
Definition: ClusterEtLess.h:7
std::vector< EcalRecHit > seeds
std::vector< int > v_chstatus_Endcap_
std::vector< int > v_chstatusSeed_
std::vector< reco::BasicCluster > clusters_v
static int position[264][3]
Definition: ReadPGInfo.cc:289
#define ET
std::vector< int > v_chstatusSeed_Barrel_
const EcalRecHitCollection * recHits_
std::vector< int > v_chstatus_
std::vector< int > v_chstatus_Barrel_
void mainSearch(const EcalRecHitCollection *hits, const CaloSubdetectorGeometry *geometry_p, const CaloSubdetectorTopology *topology_p, const CaloSubdetectorGeometry *geometryES_p, EcalPart ecalPart)

◆ searchEast()

void IslandClusterAlgo::searchEast ( const CaloNavigator< DetId > &  navigator,
const CaloSubdetectorTopology topology 
)
private

Definition at line 216 of file IslandClusterAlgo.cc.

References current_v, edm::SortedCollection< T, SORT >::find(), CaloNavigator< T, TOPO >::home(), HLT_2024v12_cff::navigator, recHits_, searchNorth(), searchSouth(), shouldBeAdded(), HLT_2024v12_cff::topology, and used_s.

Referenced by mainSearch().

216  {
217  DetId western = navigator.pos();
218  EcalRecHitCollection::const_iterator western_it = recHits_->find(western);
219 
220  DetId eastern = navigator.east();
221  if (eastern == DetId(0))
222  return; // This means that we went off the ECAL!
223  EcalRecHitCollection::const_iterator eastern_it = recHits_->find(eastern);
224 
225  if (shouldBeAdded(eastern_it, western_it)) {
226  CaloNavigator<DetId> nsNavigator(eastern, topology);
227 
228  searchNorth(nsNavigator);
229  nsNavigator.home();
230  searchSouth(nsNavigator);
231  nsNavigator.home();
233 
234  current_v.push_back(std::pair<DetId, float>(eastern, 1.)); // by default hit energy fractions are set at 1.
235  used_s.insert(eastern);
236  }
237 }
void searchEast(const CaloNavigator< DetId > &navigator, const CaloSubdetectorTopology *topology)
std::vector< EcalRecHit >::const_iterator const_iterator
std::set< DetId > used_s
std::vector< std::pair< DetId, float > > current_v
Definition: DetId.h:17
void searchNorth(const CaloNavigator< DetId > &navigator)
bool shouldBeAdded(EcalRecHitCollection::const_iterator candidate_it, EcalRecHitCollection::const_iterator previous_it)
iterator find(key_type k)
const EcalRecHitCollection * recHits_
void searchSouth(const CaloNavigator< DetId > &navigator)

◆ searchNorth()

void IslandClusterAlgo::searchNorth ( const CaloNavigator< DetId > &  navigator)
private

Definition at line 154 of file IslandClusterAlgo.cc.

References current_v, edm::SortedCollection< T, SORT >::find(), HLT_2024v12_cff::navigator, recHits_, shouldBeAdded(), and used_s.

Referenced by mainSearch(), searchEast(), and searchWest().

154  {
155  DetId southern = navigator.pos();
156 
157  DetId northern = navigator.north();
158  if (northern == DetId(0))
159  return; // This means that we went off the ECAL!
160  // if the crystal to the north belongs to another cluster return
161  if (used_s.find(northern) != used_s.end())
162  return;
163 
164  EcalRecHitCollection::const_iterator southern_it = recHits_->find(southern);
165  EcalRecHitCollection::const_iterator northern_it = recHits_->find(northern);
166 
167  if (shouldBeAdded(northern_it, southern_it)) {
168  current_v.push_back(std::pair<DetId, float>(northern, 1.)); // by default hit energy fractions are set at 1.
169  used_s.insert(northern);
171  }
172 }
std::vector< EcalRecHit >::const_iterator const_iterator
std::set< DetId > used_s
std::vector< std::pair< DetId, float > > current_v
Definition: DetId.h:17
void searchNorth(const CaloNavigator< DetId > &navigator)
bool shouldBeAdded(EcalRecHitCollection::const_iterator candidate_it, EcalRecHitCollection::const_iterator previous_it)
iterator find(key_type k)
const EcalRecHitCollection * recHits_

◆ searchSouth()

void IslandClusterAlgo::searchSouth ( const CaloNavigator< DetId > &  navigator)
private

Definition at line 174 of file IslandClusterAlgo.cc.

References current_v, edm::SortedCollection< T, SORT >::find(), HLT_2024v12_cff::navigator, recHits_, shouldBeAdded(), and used_s.

Referenced by mainSearch(), searchEast(), and searchWest().

174  {
175  DetId northern = navigator.pos();
176 
177  DetId southern = navigator.south();
178  if (southern == DetId(0))
179  return; // This means that we went off the ECAL!
180  if (used_s.find(southern) != used_s.end())
181  return;
182 
183  EcalRecHitCollection::const_iterator northern_it = recHits_->find(northern);
184  EcalRecHitCollection::const_iterator southern_it = recHits_->find(southern);
185 
186  if (shouldBeAdded(southern_it, northern_it)) {
187  current_v.push_back(std::pair<DetId, float>(southern, 1.)); // by default hit energy fractions are set at 1.
188  used_s.insert(southern);
190  }
191 }
std::vector< EcalRecHit >::const_iterator const_iterator
std::set< DetId > used_s
std::vector< std::pair< DetId, float > > current_v
Definition: DetId.h:17
bool shouldBeAdded(EcalRecHitCollection::const_iterator candidate_it, EcalRecHitCollection::const_iterator previous_it)
iterator find(key_type k)
const EcalRecHitCollection * recHits_
void searchSouth(const CaloNavigator< DetId > &navigator)

◆ searchWest()

void IslandClusterAlgo::searchWest ( const CaloNavigator< DetId > &  navigator,
const CaloSubdetectorTopology topology 
)
private

Definition at line 193 of file IslandClusterAlgo.cc.

References current_v, edm::SortedCollection< T, SORT >::find(), CaloNavigator< T, TOPO >::home(), HLT_2024v12_cff::navigator, recHits_, searchNorth(), searchSouth(), shouldBeAdded(), HLT_2024v12_cff::topology, and used_s.

Referenced by mainSearch().

193  {
194  DetId eastern = navigator.pos();
195  EcalRecHitCollection::const_iterator eastern_it = recHits_->find(eastern);
196 
197  DetId western = navigator.west();
198  if (western == DetId(0))
199  return; // This means that we went off the ECAL!
200  EcalRecHitCollection::const_iterator western_it = recHits_->find(western);
201 
202  if (shouldBeAdded(western_it, eastern_it)) {
203  CaloNavigator<DetId> nsNavigator(western, topology);
204 
205  searchNorth(nsNavigator);
206  nsNavigator.home();
207  searchSouth(nsNavigator);
208  nsNavigator.home();
210 
211  current_v.push_back(std::pair<DetId, float>(western, 1.)); // by default hit energy fractions are set at 1.
212  used_s.insert(western);
213  }
214 }
void searchWest(const CaloNavigator< DetId > &navigator, const CaloSubdetectorTopology *topology)
std::vector< EcalRecHit >::const_iterator const_iterator
std::set< DetId > used_s
std::vector< std::pair< DetId, float > > current_v
Definition: DetId.h:17
void searchNorth(const CaloNavigator< DetId > &navigator)
bool shouldBeAdded(EcalRecHitCollection::const_iterator candidate_it, EcalRecHitCollection::const_iterator previous_it)
iterator find(key_type k)
const EcalRecHitCollection * recHits_
void searchSouth(const CaloNavigator< DetId > &navigator)

◆ setVerbosity()

void IslandClusterAlgo::setVerbosity ( VerbosityLevel  the_verbosity)
inline

Definition at line 53 of file IslandClusterAlgo.h.

References verbosity.

53 { verbosity = the_verbosity; }
VerbosityLevel verbosity

◆ shouldBeAdded()

bool IslandClusterAlgo::shouldBeAdded ( EcalRecHitCollection::const_iterator  candidate_it,
EcalRecHitCollection::const_iterator  previous_it 
)
private

Definition at line 240 of file IslandClusterAlgo.cc.

References edm::SortedCollection< T, SORT >::end(), EcalRecHit::kGood, recHits_, used_s, and v_chstatus_.

Referenced by searchEast(), searchNorth(), searchSouth(), and searchWest().

241  {
242  // crystal should not be included...
243  if ((candidate_it == recHits_->end()) || // ...if it does not correspond to a hit
244  (used_s.find(candidate_it->id()) != used_s.end()) || // ...if it already belongs to a cluster
245  (candidate_it->energy() <= 0) || // ...if it has a negative or zero energy
246  (candidate_it->energy() > previous_it->energy()) || // ...or if the previous crystal had lower E
247  (!(candidate_it->checkFlag(EcalRecHit::kGood)) && candidate_it->checkFlags(v_chstatus_))) {
248  return false;
249  }
250  return true;
251 }
std::set< DetId > used_s
const_iterator end() const
const EcalRecHitCollection * recHits_
std::vector< int > v_chstatus_

Member Data Documentation

◆ clusters_v

std::vector<reco::BasicCluster> IslandClusterAlgo::clusters_v
private

Definition at line 89 of file IslandClusterAlgo.h.

Referenced by makeCluster(), and makeClusters().

◆ current_v

std::vector<std::pair<DetId, float> > IslandClusterAlgo::current_v
private

◆ ecalBarrelSeedThreshold

double IslandClusterAlgo::ecalBarrelSeedThreshold
private

Definition at line 73 of file IslandClusterAlgo.h.

Referenced by makeClusters().

◆ ecalEndcapSeedThreshold

double IslandClusterAlgo::ecalEndcapSeedThreshold
private

Definition at line 74 of file IslandClusterAlgo.h.

Referenced by makeClusters().

◆ posCalculator_

PositionCalc IslandClusterAlgo::posCalculator_
private

Definition at line 70 of file IslandClusterAlgo.h.

Referenced by IslandClusterAlgo(), and makeCluster().

◆ recHits_

const EcalRecHitCollection* IslandClusterAlgo::recHits_
private

◆ seeds

std::vector<EcalRecHit> IslandClusterAlgo::seeds
private

Definition at line 80 of file IslandClusterAlgo.h.

Referenced by mainSearch(), and makeClusters().

◆ used_s

std::set<DetId> IslandClusterAlgo::used_s
private

◆ v_chstatus_

std::vector<int> IslandClusterAlgo::v_chstatus_
private

Definition at line 100 of file IslandClusterAlgo.h.

Referenced by makeClusters(), and shouldBeAdded().

◆ v_chstatus_Barrel_

std::vector<int> IslandClusterAlgo::v_chstatus_Barrel_
private

Definition at line 96 of file IslandClusterAlgo.h.

Referenced by makeClusters().

◆ v_chstatus_Endcap_

std::vector<int> IslandClusterAlgo::v_chstatus_Endcap_
private

Definition at line 97 of file IslandClusterAlgo.h.

Referenced by makeClusters().

◆ v_chstatusSeed_

std::vector<int> IslandClusterAlgo::v_chstatusSeed_
private

Definition at line 99 of file IslandClusterAlgo.h.

Referenced by makeClusters().

◆ v_chstatusSeed_Barrel_

std::vector<int> IslandClusterAlgo::v_chstatusSeed_Barrel_
private

Definition at line 92 of file IslandClusterAlgo.h.

Referenced by makeClusters().

◆ v_chstatusSeed_Endcap_

std::vector<int> IslandClusterAlgo::v_chstatusSeed_Endcap_
private

Definition at line 93 of file IslandClusterAlgo.h.

Referenced by makeClusters().

◆ verbosity

VerbosityLevel IslandClusterAlgo::verbosity
private

Definition at line 103 of file IslandClusterAlgo.h.

Referenced by mainSearch(), makeCluster(), makeClusters(), and setVerbosity().