CMS 3D CMS Logo

MTDClusterProducer.cc
Go to the documentation of this file.
1 //---------------------------------------------------------------------------
6 //---------------------------------------------------------------------------
7 // Our own stuff
10 
11 // Data Formats
13 
14 // STL
15 #include <vector>
16 #include <memory>
17 #include <string>
18 #include <iostream>
19 
20 // MessageLogger
29 
38 
40 public:
41  //--- Constructor, virtual destructor (just in case)
42  explicit MTDClusterProducer(const edm::ParameterSet& conf);
43  ~MTDClusterProducer() override = default;
44  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
45 
46  //--- The top-level event method.
47  void produce(edm::Event& e, const edm::EventSetup& c) override;
48 
49  //--- Execute the algorithm(s).
50  template <typename T>
51  void run(const T& input, FTLClusterCollection& output);
52 
53 private:
56 
57  const std::string ftlbInstance_; // instance name of barrel clusters
58  const std::string ftleInstance_; // instance name of endcap clusters
59 
60  const std::string clusterMode_; // user's choice of the clusterizer
61  std::unique_ptr<MTDClusterizerBase> clusterizer_; // what we got (for now, one ptr to base class)
62 
65 };
66 
67 //---------------------------------------------------------------------------
69 //---------------------------------------------------------------------------
71  : btlHits_(consumes<FTLRecHitCollection>(conf.getParameter<edm::InputTag>("srcBarrel"))),
72  etlHits_(consumes<FTLRecHitCollection>(conf.getParameter<edm::InputTag>("srcEndcap"))),
73  ftlbInstance_(conf.getParameter<std::string>("BarrelClusterName")),
74  ftleInstance_(conf.getParameter<std::string>("EndcapClusterName")),
75  clusterMode_(conf.getParameter<std::string>("ClusterMode")),
76  clusterizer_(nullptr) // the default, in case we fail to make one
77 {
78  //--- Declare to the EDM what kind of collections we will be making.
79  produces<FTLClusterCollection>(ftlbInstance_);
80  produces<FTLClusterCollection>(ftleInstance_);
81 
82  //--- Make the algorithm(s) according to what the user specified
83  //--- in the ParameterSet.
84  if (clusterMode_ == "MTDThresholdClusterizer") {
85  clusterizer_ = std::make_unique<MTDThresholdClusterizer>(conf);
86  } else {
87  throw cms::Exception("MTDClusterProducer") << "[MTDClusterProducer]:"
88  << " choice " << clusterMode_ << " is invalid.\n"
89  << "Possible choices:\n"
90  << " MTDThresholdClusterizer";
91  }
92 }
93 
94 // Configuration descriptions
97  desc.add<edm::InputTag>("srcBarrel", edm::InputTag("mtdRecHits:FTLBarrel"));
98  desc.add<edm::InputTag>("srcEndcap", edm::InputTag("mtdRecHits:FTLEndcap"));
99  desc.add<std::string>("BarrelClusterName", "FTLBarrel");
100  desc.add<std::string>("EndcapClusterName", "FTLEndcap");
101  desc.add<std::string>("ClusterMode", "MTDThresholdClusterizer");
103  descriptions.add("mtdClusterProducer", desc);
104 }
105 
106 //---------------------------------------------------------------------------
108 //---------------------------------------------------------------------------
110  // Step A.1: get input data
113  e.getByToken(btlHits_, inputBarrel);
114  e.getByToken(etlHits_, inputEndcap);
115 
116  // Step A.2: get event setup
118  es.get<MTDDigiGeometryRecord>().get(geom);
119  geom_ = geom.product();
120 
122  es.get<MTDTopologyRcd>().get(mtdTopo);
123  topo_ = mtdTopo.product();
124 
125  // Step B: create the final output collection
126  auto outputBarrel = std::make_unique<FTLClusterCollection>();
127  auto outputEndcap = std::make_unique<FTLClusterCollection>();
128 
129  run(*inputBarrel, *outputBarrel);
130  run(*inputEndcap, *outputEndcap);
131 
132  e.put(std::move(outputBarrel), ftlbInstance_);
133  e.put(std::move(outputEndcap), ftleInstance_);
134 }
135 
136 //---------------------------------------------------------------------------
138 //---------------------------------------------------------------------------
139 template <typename T>
141  if (!clusterizer_) {
142  throw cms::Exception("MTDClusterProducer") << " at least one clusterizer is not ready -- can't run!";
143  }
144 
145  clusterizer_->clusterize(input, geom_, topo_, output);
146 
147  LogDebug("MTDClusterProducer") << " Executing " << clusterMode_ << " resulted in " << output.size()
148  << " MTDClusters for " << input.size() << " Hits.";
149 }
150 
153 
#define LogDebug(id)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:131
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
#define nullptr
std::unique_ptr< MTDClusterizerBase > clusterizer_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void produce(edm::Event &e, const edm::EventSetup &c) override
The "Event" entrypoint: gets called by framework for every event.
const edm::EDGetTokenT< FTLRecHitCollection > btlHits_
const edm::EDGetTokenT< FTLRecHitCollection > etlHits_
static std::string const input
Definition: EdmProvDump.cc:48
MTDClusterProducer(const edm::ParameterSet &conf)
Constructor: set the ParameterSet and defer all thinking to setupClusterizer().
static void fillDescriptions(edm::ParameterSetDescription &desc)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
const MTDTopology * topo_
EDProducer to cluster FTLRecHits into FTLClusters.
void run(const T &input, FTLClusterCollection &output)
Iterate over DetUnits, and invoke the PixelClusterizer on each.
ParameterDescriptionBase * add(U const &iLabel, T const &value)
const std::string clusterMode_
const std::string ftlbInstance_
~MTDClusterProducer() override=default
void add(std::string const &label, ParameterSetDescription const &psetDescription)
size_type size() const
const std::string ftleInstance_
HLT enums.
T get() const
Definition: EventSetup.h:73
long double T
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:511
const MTDGeometry * geom_