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 
50  //--- Execute the algorithm(s).
51  template<typename T>
52  void run(const T& input,
54 
55  private:
58 
59  const std::string ftlbInstance_; // instance name of barrel clusters
60  const std::string ftleInstance_; // instance name of endcap clusters
61 
62  const std::string clusterMode_; // user's choice of the clusterizer
63  std::unique_ptr<MTDClusterizerBase> clusterizer_; // what we got (for now, one ptr to base class)
64 
67 };
68 
69 
70 //---------------------------------------------------------------------------
72 //---------------------------------------------------------------------------
74  :
75  btlHits_(consumes< FTLRecHitCollection >( conf.getParameter<edm::InputTag>("srcBarrel"))),
76  etlHits_(consumes< FTLRecHitCollection >( conf.getParameter<edm::InputTag>("srcEndcap"))),
77  ftlbInstance_(conf.getParameter<std::string>("BarrelClusterName")),
78  ftleInstance_(conf.getParameter<std::string>("EndcapClusterName")),
79  clusterMode_( conf.getParameter<std::string>("ClusterMode") ),
80  clusterizer_(nullptr) // the default, in case we fail to make one
81 {
82 
83  //--- Declare to the EDM what kind of collections we will be making.
84  produces<FTLClusterCollection>(ftlbInstance_);
85  produces<FTLClusterCollection>(ftleInstance_);
86 
87  //--- Make the algorithm(s) according to what the user specified
88  //--- in the ParameterSet.
89  if ( clusterMode_ == "MTDThresholdClusterizer" ) {
90  clusterizer_ = std::make_unique<MTDThresholdClusterizer>(conf);
91  }
92  else {
93  throw cms::Exception("MTDClusterProducer") << "[MTDClusterProducer]:"
94  <<" choice " << clusterMode_ << " is invalid.\n"
95  << "Possible choices:\n"
96  << " MTDThresholdClusterizer";
97  }
98 }
99 
100 // Configuration descriptions
101 void
104  desc.add<edm::InputTag>("srcBarrel", edm::InputTag("mtdRecHits:FTLBarrel"));
105  desc.add<edm::InputTag>("srcEndcap", edm::InputTag("mtdRecHits:FTLEndcap"));
106  desc.add<std::string>("BarrelClusterName", "FTLBarrel");
107  desc.add<std::string>("EndcapClusterName", "FTLEndcap");
108  desc.add<std::string>("ClusterMode","MTDThresholdClusterizer");
110  descriptions.add("mtdClusterProducer", desc);
111 }
112 
113 //---------------------------------------------------------------------------
115 //---------------------------------------------------------------------------
117 {
118  // Step A.1: get input data
121  e.getByToken(btlHits_, inputBarrel);
122  e.getByToken(etlHits_, inputEndcap);
123 
124  // Step A.2: get event setup
126  es.get<MTDDigiGeometryRecord>().get(geom);
127  geom_ = geom.product();
128 
130  es.get<MTDTopologyRcd>().get(mtdTopo);
131  topo_ = mtdTopo.product();
132 
133  // Step B: create the final output collection
134  auto outputBarrel = std::make_unique<FTLClusterCollection>();
135  auto outputEndcap = std::make_unique<FTLClusterCollection>();
136 
137  run(*inputBarrel, *outputBarrel );
138  run(*inputEndcap, *outputEndcap );
139 
140  e.put(std::move(outputBarrel),ftlbInstance_);
141  e.put(std::move(outputEndcap),ftleInstance_);
142 }
143 
144 
145 
146 //---------------------------------------------------------------------------
148 //---------------------------------------------------------------------------
149 template<typename T>
152 {
153  if ( ! clusterizer_ ) {
154  throw cms::Exception("MTDClusterProducer")
155  <<" at least one clusterizer is not ready -- can't run!" ;
156  }
157 
158  clusterizer_->clusterize( input , geom_, topo_, output);
159 
160  LogDebug ("MTDClusterProducer") << " Executing "
161  << clusterMode_ << " resulted in " << output.size()
162  << " MTDClusters for " << input.size() << " Hits.";
163 }
164 
165 
166 
167 
170 
172 
#define LogDebug(id)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
#define nullptr
std::unique_ptr< MTDClusterizerBase > clusterizer_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
const edm::EDGetTokenT< FTLRecHitCollection > btlHits_
void produce(edm::Event &e, const edm::EventSetup &c) override
The "Event" entrypoint: gets called by framework for every event.
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:71
long double T
T const * product() const
Definition: ESHandle.h:86
def move(src, dest)
Definition: eostools.py:511
const MTDGeometry * geom_