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  if (payloadType == "HLT")
62  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationForHLTService>(conf, consumesCollector());
63  else if (payloadType == "Offline")
64  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationOfflineService>(conf, consumesCollector());
65  else if (payloadType == "Full")
66  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationService>(conf, consumesCollector());
67 
68  //--- Make the algorithm(s) according to what the user specified
69  //--- in the ParameterSet.
70  setupClusterizer(conf);
71 }
72 
73 // Destructor
75 
78 
79  desc.add<edm::InputTag>("src", edm::InputTag("siPixelDigis"));
80  desc.add<std::string>("ClusterMode", "PixelThresholdClusterizer");
81  desc.add<int>("maxNumberOfClusters", -1)->setComment("-1 means no limit");
82  desc.add<std::string>("payloadType", "Offline")
83  ->setComment("Options: HLT - column granularity, Offline - gain:col/ped:pix");
84 
86  SiPixelGainCalibrationServiceBase::fillPSetDescription(desc); // no-op, but in principle the structures are there...
87 
88  descriptions.add("SiPixelClusterizerDefault", desc);
89 }
90 
91 //---------------------------------------------------------------------------
93 //---------------------------------------------------------------------------
95  //Setup gain calibration service
96  theSiPixelGainCalibration_->setESObjects(es);
97 
98  // Step A.1: get input data
101  if (clusterMode_ == "PixelThresholdReclusterizer")
102  e.getByToken(tPixelClusters, inputClusters);
103  else
104  e.getByToken(tPixelDigi, inputDigi);
105 
106  // Step A.2: get event setup
108 
109  edm::ESHandle<TrackerTopology> trackerTopologyHandle = es.getHandle(trackerTopoToken_);
110  tTopo_ = trackerTopologyHandle.product();
111 
112  // Step B: create the final output collection
113  auto output = std::make_unique<SiPixelClusterCollectionNew>();
114  //FIXME: put a reserve() here
115 
116  // Step C: Iterate over DetIds and invoke the pixel clusterizer algorithm
117  // on each DetUnit
118  if (clusterMode_ == "PixelThresholdReclusterizer")
120  else
121  run(*inputDigi, geom, *output);
122 
123  // Step D: write output to file
124  output->shrink_to_fit();
125 
126  // set sequential identifier
127  for (auto& clusters : *output) {
128  uint16_t id = 0;
129  for (auto& cluster : clusters) {
130  cluster.setOriginalId(id++);
131  }
132  }
134 }
135 
136 //---------------------------------------------------------------------------
140 //---------------------------------------------------------------------------
142  if (clusterMode_ == "PixelThresholdReclusterizer" || clusterMode_ == "PixelThresholdClusterizer") {
143  clusterizer_ = std::make_unique<PixelThresholdClusterizer>(conf);
144  clusterizer_->setSiPixelGainCalibrationService(theSiPixelGainCalibration_.get());
145  } else {
146  throw cms::Exception("Configuration") << "[SiPixelClusterProducer]:"
147  << " choice " << clusterMode_ << " is invalid.\n"
148  << "Possible choices:\n"
149  << " PixelThresholdClusterizer";
150  }
151 }
152 
153 //---------------------------------------------------------------------------
155 //---------------------------------------------------------------------------
156 template <typename T>
160  int numberOfDetUnits = 0;
161  int numberOfClusters = 0;
162 
163  // Iterate on detector units
164  for (auto const& dsv : input) {
165  ++numberOfDetUnits;
166 
167  // LogDebug takes very long time, get rid off.
168  //LogDebug("SiStripClusterizer") << "[SiPixelClusterProducer::run] DetID" << dsv.id;
169 
170  std::vector<short> badChannels;
171  DetId detIdObject(dsv.detId());
172 
173  // Comment: At the moment the clusterizer depends on geometry
174  // to access information as the pixel topology (number of columns
175  // and rows in a detector module).
176  // In the future the geometry service will be replaced with
177  // a ES service.
178  const GeomDetUnit* geoUnit = geom->idToDetUnit(detIdObject);
179  const PixelGeomDetUnit* pixDet = dynamic_cast<const PixelGeomDetUnit*>(geoUnit);
180  if (!pixDet) {
181  // Fatal error! TO DO: throw an exception!
182  assert(0);
183  }
184  {
185  // Produce clusters for this DetUnit and store them in
186  // a DetSet
188  clusterizer_->clusterizeDetUnit(dsv, pixDet, tTopo_, badChannels, spc);
189  if (spc.empty()) {
190  spc.abort();
191  } else {
192  numberOfClusters += spc.size();
193  }
194  } // spc is not deleted and detsetvector updated
195  if ((maxTotalClusters_ >= 0) && (numberOfClusters > maxTotalClusters_)) {
196  edm::LogError("TooManyClusters")
197  << "Limit on the number of clusters exceeded. An empty cluster collection will be produced instead.\n";
199  empty.swap(output);
200  break;
201  }
202  } // end of DetUnit loop
203 
204  //LogDebug ("SiPixelClusterProducer") << " Executing "
205  // << clusterMode_ << " resulted in " << numberOfClusters
206  // << " SiPixelClusters in " << numberOfDetUnits << " DetUnits.";
207 }
208 
211 
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
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
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_