89 if (verbosityString ==
"DEBUG")
91 else if (verbosityString ==
"WARNING")
93 else if (verbosityString ==
"INFO")
110 double barrelSeedThreshold = ps.
getParameter<
double>(
"IslandBarrelSeedThr");
111 double endcapSeedThreshold = ps.
getParameter<
double>(
"IslandEndcapSeedThr");
125 const std::vector<std::string> seedflagnamesEB =
126 ps.
getParameter<std::vector<std::string>>(
"SeedRecHitFlagToBeExcludedEB");
127 const std::vector<int> seedflagsexclEB = StringToEnumValue<EcalRecHit::Flags>(seedflagnamesEB);
129 const std::vector<std::string> seedflagnamesEE =
130 ps.
getParameter<std::vector<std::string>>(
"SeedRecHitFlagToBeExcludedEE");
131 const std::vector<int> seedflagsexclEE = StringToEnumValue<EcalRecHit::Flags>(seedflagnamesEE);
133 const std::vector<std::string> flagnamesEB = ps.
getParameter<std::vector<std::string>>(
"RecHitFlagToBeExcludedEB");
134 const std::vector<int> flagsexclEB = StringToEnumValue<EcalRecHit::Flags>(flagnamesEB);
136 const std::vector<std::string> flagnamesEE = ps.
getParameter<std::vector<std::string>>(
"RecHitFlagToBeExcludedEE");
137 const std::vector<int> flagsexclEE = StringToEnumValue<EcalRecHit::Flags>(flagnamesEE);
167 desc.add<
std::string>(
"barrelClusterCollection",
"islandBarrelBasicClusters");
168 desc.add<
std::string>(
"endcapClusterCollection",
"islandEndcapBasicClusters");
169 desc.add<
double>(
"IslandBarrelSeedThr", 0.5);
170 desc.add<
double>(
"IslandEndcapSeedThr", 0.18);
181 desc.add<
std::string>(
"clustershapecollectionEE",
"islandEndcapShape");
182 desc.add<
std::string>(
"clustershapecollectionEB",
"islandBarrelShape");
183 desc.add<
std::string>(
"barrelShapeAssociation",
"islandBarrelShapeAssoc");
184 desc.add<
std::string>(
"endcapShapeAssociation",
"islandEndcapShapeAssoc");
185 desc.add<std::vector<std::string>>(
"SeedRecHitFlagToBeExcludedEB", {});
186 desc.add<std::vector<std::string>>(
"SeedRecHitFlagToBeExcludedEE", {});
187 desc.add<std::vector<std::string>>(
"RecHitFlagToBeExcludedEB", {});
188 desc.add<std::vector<std::string>>(
"RecHitFlagToBeExcludedEE", {});
189 descriptions.
add(
"IslandClusterProducer",
desc);
220 std::unique_ptr<CaloSubdetectorTopology> topology_p;
225 topology_p = std::make_unique<EcalBarrelTopology>(*geoHandle);
228 topology_p = std::make_unique<EcalEndcapTopology>(*geoHandle);
239 std::vector<reco::ClusterShape> ClusVec;
240 for (
int erg = 0; erg <
int(
clusters.size()); ++erg) {
242 ClusVec.push_back(TestShape);
246 auto clustersshapes_p = std::make_unique<reco::ClusterShapeCollection>();
247 clustersshapes_p->assign(ClusVec.begin(), ClusVec.end());
255 auto clusters_p = std::make_unique<reco::BasicClusterCollection>();
264 auto shapeAssocs_p = std::make_unique<reco::BasicClusterShapeAssociationCollection>(bccHandle, clusHandle);
265 for (
unsigned int i = 0;
i < clusHandle->size();
i++) {
269 evt.
put(
std::move(shapeAssocs_p), clusterShapeAssociation);