CMS 3D CMS Logo

StripClusterizerAlgorithmFactory.cc
Go to the documentation of this file.
2 
7 
8 std::unique_ptr<StripClusterizerAlgorithm> StripClusterizerAlgorithmFactory::
9 create(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  conf.getParameter<double>("ChannelThreshold"),
16  conf.getParameter<double>("SeedThreshold"),
17  conf.getParameter<double>("ClusterThreshold"),
18  conf.getParameter<unsigned>("MaxSequentialHoles"),
19  conf.getParameter<unsigned>("MaxSequentialBad"),
20  conf.getParameter<unsigned>("MaxAdjacentBad"),
21  conf.getParameter<std::string>("QualityLabel"),
22  conf.getParameter<bool>("RemoveApvShots"),
23  clusterChargeCut(conf)
24  ));
25  }
26 
27  if(algorithm == "OldThreeThresholdAlgorithm") {
28  throw cms::Exception("[StripClusterizerAlgorithmFactory] obsolete")
29  << algorithm << " Obsolete since 7_3_0";
30 
31  }
32 
33  throw cms::Exception("[StripClusterizerAlgorithmFactory] Unregistered Algorithm")
34  << algorithm << " is not a registered StripClusterizerAlgorithm";
35 }
T getParameter(std::string const &) const
static std::unique_ptr< StripClusterizerAlgorithm > create(const edm::ParameterSet &)
float clusterChargeCut(const edm::ParameterSet &conf, const char *name="clusterChargeCut")