CMS 3D CMS Logo

SiPixelClusterProducer.cc
Go to the documentation of this file.
1 
14 // Our own stuff
15 #include "SiPixelClusterProducer.h"
17 
18 // Geometry
20 
21 // Data Formats
25 
26 // Database payloads
30 
31 // Framework
35 
36 // STL
37 #include <vector>
38 #include <memory>
39 #include <string>
40 #include <iostream>
41 
42 // MessageLogger
44 
45 //---------------------------------------------------------------------------
47 //---------------------------------------------------------------------------
49  : tPutPixelClusters(produces<SiPixelClusterCollectionNew>()),
50  clusterMode_(conf.getParameter<std::string>("ClusterMode")),
51  maxTotalClusters_(conf.getParameter<int32_t>("maxNumberOfClusters")) {
52  if (clusterMode_ == "PixelThresholdReclusterizer")
53  tPixelClusters = consumes<SiPixelClusterCollectionNew>(conf.getParameter<edm::InputTag>("src"));
54  else
55  tPixelDigi = consumes<edm::DetSetVector<PixelDigi>>(conf.getParameter<edm::InputTag>("src"));
56 
57  trackerTopoToken_ = esConsumes<TrackerTopology, TrackerTopologyRcd>();
58  trackerGeomToken_ = esConsumes<TrackerGeometry, TrackerDigiGeometryRecord>();
59 
60  const auto& payloadType = conf.getParameter<std::string>("payloadType");
61 
62  if (payloadType == "HLT")
63  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationForHLTService>(conf, consumesCollector());
64  else if (payloadType == "Offline")
65  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationOfflineService>(conf, consumesCollector());
66  else if (payloadType == "Full")
67  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationService>(conf, consumesCollector());
68  else if (payloadType == "None")
70 
71  //--- Make the algorithm(s) according to what the user specified
72  //--- in the ParameterSet.
73  setupClusterizer(conf);
74 }
75 
76 // Destructor
78 
81 
82  desc.add<edm::InputTag>("src", edm::InputTag("siPixelDigis"));
83  desc.add<std::string>("ClusterMode", "PixelThresholdClusterizer");
84  desc.add<int>("maxNumberOfClusters", -1)->setComment("-1 means no limit");
85  desc.add<std::string>("payloadType", "Offline")
86  ->setComment("Options: HLT - column granularity, Offline - gain:col/ped:pix, None: no gain calibrations");
87 
89  SiPixelGainCalibrationServiceBase::fillPSetDescription(desc); // no-op, but in principle the structures are there...
90 
91  descriptions.add("SiPixelClusterizerDefault", desc);
92 }
93 
94 //---------------------------------------------------------------------------
96 //---------------------------------------------------------------------------
98  //Setup gain calibration service
100  theSiPixelGainCalibration_->setESObjects(es);
101 
102  // Step A.1: get input data
105  if (clusterMode_ == "PixelThresholdReclusterizer")
106  e.getByToken(tPixelClusters, inputClusters);
107  else
108  e.getByToken(tPixelDigi, inputDigi);
109 
110  // Step A.2: get event setup
112 
113  edm::ESHandle<TrackerTopology> trackerTopologyHandle = es.getHandle(trackerTopoToken_);
114  tTopo_ = trackerTopologyHandle.product();
115 
116  // Step B: create the final output collection
117  auto output = std::make_unique<SiPixelClusterCollectionNew>();
118  //FIXME: put a reserve() here
119 
120  // Step C: Iterate over DetIds and invoke the pixel clusterizer algorithm
121  // on each DetUnit
122  if (clusterMode_ == "PixelThresholdReclusterizer")
124  else
125  run(*inputDigi, geom, *output);
126 
127  // Step D: write output to file
128  output->shrink_to_fit();
129 
130  // set sequential identifier
131  for (auto clusters : *output) {
132  uint16_t id = 0;
133  for (auto& cluster : clusters) {
134  cluster.setOriginalId(id++);
135  }
136  }
138 }
139 
140 //---------------------------------------------------------------------------
144 //---------------------------------------------------------------------------
146  if (clusterMode_ == "PixelThresholdReclusterizer" || clusterMode_ == "PixelThresholdClusterizer") {
147  clusterizer_ = std::make_unique<PixelThresholdClusterizer>(conf);
148  if (theSiPixelGainCalibration_.get()) {
149  clusterizer_->setSiPixelGainCalibrationService(theSiPixelGainCalibration_.get());
150  }
151  } else {
152  throw cms::Exception("Configuration") << "[SiPixelClusterProducer]:"
153  << " choice " << clusterMode_ << " is invalid.\n"
154  << "Possible choices:\n"
155  << " PixelThresholdClusterizer";
156  }
157 }
158 
159 //---------------------------------------------------------------------------
161 //---------------------------------------------------------------------------
162 template <typename T>
166  int numberOfClusters = 0;
167 
168  // Iterate on detector units
169  for (auto const& dsv : input) {
170  // LogDebug takes very long time, get rid off.
171  //LogDebug("SiStripClusterizer") << "[SiPixelClusterProducer::run] DetID" << dsv.id;
172 
173  std::vector<short> badChannels;
174  DetId detIdObject(dsv.detId());
175 
176  // Comment: At the moment the clusterizer depends on geometry
177  // to access information as the pixel topology (number of columns
178  // and rows in a detector module).
179  // In the future the geometry service will be replaced with
180  // a ES service.
181  const GeomDetUnit* geoUnit = geom->idToDetUnit(detIdObject);
182  const PixelGeomDetUnit* pixDet = dynamic_cast<const PixelGeomDetUnit*>(geoUnit);
183  if (!pixDet) {
184  // Fatal error! TO DO: throw an exception!
185  assert(0);
186  }
187  {
188  // Produce clusters for this DetUnit and store them in
189  // a DetSet
191  clusterizer_->clusterizeDetUnit(dsv, pixDet, tTopo_, badChannels, spc);
192  if (spc.empty()) {
193  spc.abort();
194  } else {
195  numberOfClusters += spc.size();
196  }
197  } // spc is not deleted and detsetvector updated
199  edm::LogError("TooManyClusters")
200  << "Limit on the number of clusters exceeded. An empty cluster collection will be produced instead.\n";
202  empty.swap(output);
203  break;
204  }
205  } // end of DetUnit loop
206 }
207 
208 #include "PixelThresholdClusterizer.icc"
211 
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
static void fillPSetDescription(edm::ParameterSetDescription &desc)
edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > trackerTopoToken_
Log< level::Error, false > LogError
assert(be >=bs)
static std::string const input
Definition: EdmProvDump.cc:50
std::unique_ptr< PixelClusterizerBase > clusterizer_
T const * product() const
Definition: ESHandle.h:86
SiPixelClusterProducer(const edm::ParameterSet &conf)
Constructor: set the ParameterSet and defer all thinking to setupClusterizer().
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
std::unique_ptr< SiPixelGainCalibrationServiceBase > theSiPixelGainCalibration_
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
edm::EDPutTokenT< SiPixelClusterCollectionNew > tPutPixelClusters
const int32_t maxTotalClusters_
Optional limit on the total number of clusters.
EDProducer to cluster PixelDigis into SiPixelClusters.
static void fillPSetDescription(edm::ParameterSetDescription &desc)
Definition: DetId.h:17
void produce(edm::Event &e, const edm::EventSetup &c) override
The "Event" entrypoint: gets called by framework for every event.
void setupClusterizer(const edm::ParameterSet &conf)
edm::EDGetTokenT< edm::DetSetVector< PixelDigi > > tPixelDigi
void add(std::string const &label, ParameterSetDescription const &psetDescription)
edm::EDGetTokenT< SiPixelClusterCollectionNew > tPixelClusters
~SiPixelClusterProducer() override
Definition: output.py:1
void run(const T &input, const edm::ESHandle< TrackerGeometry > &geom, edmNew::DetSetVector< SiPixelCluster > &output)
Iterate over DetUnits, and invoke the PixelClusterizer on each.
long double T
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > trackerGeomToken_
const TrackerTopology * tTopo_
def move(src, dest)
Definition: eostools.py:511
const std::string clusterMode_