CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
StripClusterizerAlgorithmFactory.cc
Go to the documentation of this file.
2 
7 
8 std::unique_ptr<StripClusterizerAlgorithm> StripClusterizerAlgorithmFactory::create(edm::ConsumesCollector&& iC,
9  const edm::ParameterSet& conf) {
10  std::string algorithm = conf.getParameter<std::string>("Algorithm");
11 
12  if (algorithm == "ThreeThresholdAlgorithm") {
13  return std::unique_ptr<StripClusterizerAlgorithm>(
15  edm::ESInputTag{"", conf.getParameter<std::string>("ConditionsLabel")}),
16  conf.getParameter<double>("ChannelThreshold"),
17  conf.getParameter<double>("SeedThreshold"),
18  conf.getParameter<double>("ClusterThreshold"),
19  conf.getParameter<unsigned>("MaxSequentialHoles"),
20  conf.getParameter<unsigned>("MaxSequentialBad"),
21  conf.getParameter<unsigned>("MaxAdjacentBad"),
22  conf.getParameter<bool>("RemoveApvShots"),
23  clusterChargeCut(conf)));
24  }
25 
26  if (algorithm == "OldThreeThresholdAlgorithm") {
27  throw cms::Exception("[StripClusterizerAlgorithmFactory] obsolete") << algorithm << " Obsolete since 7_3_0";
28  }
29 
30  throw cms::Exception("[StripClusterizerAlgorithmFactory] Unregistered Algorithm")
31  << algorithm << " is not a registered StripClusterizerAlgorithm";
32 }
float clusterChargeCut(const edm::ParameterSet &conf, const char *name="clusterChargeCut")
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
static std::unique_ptr< StripClusterizerAlgorithm > create(edm::ConsumesCollector &&, const edm::ParameterSet &)