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
21 
22 // Data Formats
26 
27 // Database payloads
31 
32 // Framework
36 
37 // STL
38 #include <vector>
39 #include <memory>
40 #include <string>
41 #include <iostream>
42 
43 // MessageLogger
45 
46 
47  //---------------------------------------------------------------------------
49  //---------------------------------------------------------------------------
51  :
52  tPutPixelClusters(produces<SiPixelClusterCollectionNew>()),
53  clusterMode_( conf.getParameter<std::string>("ClusterMode") ),
54  maxTotalClusters_( conf.getParameter<int32_t>( "maxNumberOfClusters" ) )
55  {
56  if ( clusterMode_ == "PixelThresholdReclusterizer" )
57  tPixelClusters = consumes<SiPixelClusterCollectionNew>( conf.getParameter<edm::InputTag>("src") );
58  else
59  tPixelDigi = consumes<edm::DetSetVector<PixelDigi>>( conf.getParameter<edm::InputTag>("src") );
60 
61  const auto& payloadType = conf.getParameter<std::string>( "payloadType" );
62  if (payloadType == "HLT")
63  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationForHLTService>(conf);
64  else if (payloadType == "Offline")
65  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationOfflineService>(conf);
66  else if (payloadType == "Full")
67  theSiPixelGainCalibration_ = std::make_unique<SiPixelGainCalibrationService>(conf);
68 
69  //--- Make the algorithm(s) according to what the user specified
70  //--- in the ParameterSet.
71  setupClusterizer(conf);
72 
73  }
74 
75  // Destructor
77 
80 
81  desc.add<edm::InputTag>("src", edm::InputTag("siPixelDigis"));
82  desc.add<std::string>("ClusterMode", "PixelThresholdClusterizer");
83  desc.add<int>("maxNumberOfClusters", -1)->setComment("-1 means no limit");
84  desc.add<std::string>("payloadType", "Offline")->setComment("Options: HLT - column granularity, Offline - gain:col/ped:pix");
85 
87  SiPixelGainCalibrationServiceBase::fillPSetDescription(desc); // no-op, but in principle the structures are there...
88 
89  descriptions.add("SiPixelClusterizerDefault", desc);
90 }
91 
92 
93  //---------------------------------------------------------------------------
95  //---------------------------------------------------------------------------
97  {
98 
99  //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  es.get<TrackerDigiGeometryRecord>().get( geom );
113 
114  edm::ESHandle<TrackerTopology> trackerTopologyHandle;
115  es.get<TrackerTopologyRcd>().get(trackerTopologyHandle);
116  tTopo_ = trackerTopologyHandle.product();
117 
118  // Step B: create the final output collection
119  auto output = std::make_unique< SiPixelClusterCollectionNew>();
120  //FIXME: put a reserve() here
121 
122  // Step C: Iterate over DetIds and invoke the pixel clusterizer algorithm
123  // on each DetUnit
124  if ( clusterMode_ == "PixelThresholdReclusterizer" )
125  run(*inputClusters, geom, *output );
126  else
127  run(*inputDigi, geom, *output );
128 
129  // Step D: write output to file
130  output->shrink_to_fit();
132 
133  }
134 
135  //---------------------------------------------------------------------------
139  //---------------------------------------------------------------------------
141 
142  if ( clusterMode_ == "PixelThresholdReclusterizer" || clusterMode_ == "PixelThresholdClusterizer" ) {
143  clusterizer_ = std::make_unique<PixelThresholdClusterizer>(conf);
144  clusterizer_->setSiPixelGainCalibrationService(theSiPixelGainCalibration_.get());
145  }
146  else {
147  throw cms::Exception("Configuration") << "[SiPixelClusterProducer]:"
148  <<" choice " << clusterMode_ << " is invalid.\n"
149  << "Possible choices:\n"
150  << " PixelThresholdClusterizer";
151  }
152  }
153 
154 
155  //---------------------------------------------------------------------------
157  //---------------------------------------------------------------------------
158  template<typename T>
162  int numberOfDetUnits = 0;
163  int numberOfClusters = 0;
164 
165  // Iterate on detector units
166  typename T::const_iterator DSViter = input.begin();
167  for( ; DSViter != input.end(); DSViter++) {
168  ++numberOfDetUnits;
169 
170  // LogDebug takes very long time, get rid off.
171  //LogDebug("SiStripClusterizer") << "[SiPixelClusterProducer::run] DetID" << DSViter->id;
172 
173  std::vector<short> badChannels;
174  DetId detIdObject(DSViter->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
190  edmNew::DetSetVector<SiPixelCluster>::FastFiller spc(output, DSViter->detId());
191  clusterizer_->clusterizeDetUnit(*DSViter, 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
198  if ((maxTotalClusters_ >= 0) && (numberOfClusters > maxTotalClusters_)) {
199  edm::LogError("TooManyClusters") << "Limit on the number of clusters exceeded. An empty cluster collection will be produced instead.\n";
201  empty.swap(output);
202  break;
203  }
204  } // end of DetUnit loop
205 
206  //LogDebug ("SiPixelClusterProducer") << " Executing "
207  // << clusterMode_ << " resulted in " << numberOfClusters
208  // << " SiPixelClusters in " << numberOfDetUnits << " DetUnits.";
209  }
210 
211 
212 
213 
216 
218 
T getParameter(std::string const &) const
static void fillPSetDescription(edm::ParameterSetDescription &desc)
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
void swap(DetSetVector &rh)
static std::string const input
Definition: EdmProvDump.cc:48
const TrackerGeomDet * idToDetUnit(DetId) const override
Return the pointer to the GeomDetUnit corresponding to a given DetId.
std::unique_ptr< PixelClusterizerBase > clusterizer_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
SiPixelClusterProducer(const edm::ParameterSet &conf)
Constructor: set the ParameterSet and defer all thinking to setupClusterizer().
std::unique_ptr< SiPixelGainCalibrationServiceBase > theSiPixelGainCalibration_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
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:18
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
T get() const
Definition: EventSetup.h:71
~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)
T const * product() const
Definition: ESHandle.h:86
const TrackerTopology * tTopo_
def move(src, dest)
Definition: eostools.py:511
const std::string clusterMode_