90 if (verbosityString ==
"DEBUG")
92 else if (verbosityString ==
"WARNING")
94 else if (verbosityString ==
"INFO")
113 double barrelSeedThreshold = ps.
getParameter<
double>(
"BarrelSeedThr");
114 double barrelSingleThreshold = ps.
getParameter<
double>(
"BarrelSingleThr");
115 double barrelSecondThreshold = ps.
getParameter<
double>(
"BarrelSecondThr");
116 double barrelSupThreshold = ps.
getParameter<
double>(
"BarrelSupThr");
117 double endcapSeedThreshold = ps.
getParameter<
double>(
"EndcapSeedThr");
118 double endcapSingleThreshold = ps.
getParameter<
double>(
"EndcapSingleThr");
119 double endcapSecondThreshold = ps.
getParameter<
double>(
"EndcapSecondThr");
120 double endcapSupThreshold = ps.
getParameter<
double>(
"EndcapSupThr");
145 barrelSingleThreshold,
146 barrelSecondThreshold,
149 endcapSingleThreshold,
150 endcapSecondThreshold,
200 std::unique_ptr<CaloSubdetectorTopology> topology_p;
205 topology_p = std::make_unique<EcalBarrelTopology>(*geoHandle);
208 topology_p = std::make_unique<EcalEndcapTopology>(*geoHandle);
217 island_p->
makeClusters(hitCollection_p, uhitCollection_p, geometry_p, topology_p.get(), geometryES_p, ecalPart);
220 std::vector<reco::ClusterShape> ClusVec;
222 for (
int erg = 0; erg <
int(
clusters.size()); ++erg) {
224 ClusVec.push_back(TestShape);
228 auto clustersshapes_p = std::make_unique<reco::ClusterShapeCollection>();
229 clustersshapes_p->assign(ClusVec.begin(), ClusVec.end());
237 auto clusters_p = std::make_unique<reco::BasicClusterCollection>();
247 auto shapeAssocs_p = std::make_unique<reco::BasicClusterShapeAssociationCollection>(bccHandle, clusHandle);
249 for (
unsigned int i = 0;
i < clusHandle->size();
i++) {
253 evt.
put(
std::move(shapeAssocs_p), clusterShapeAssociation);