EDProducer to cluster PixelDigis into SiPixelClusters. More...
#include <SiPixelClusterProducer.h>
Public Member Functions | |
void | produce (edm::Event &e, const edm::EventSetup &c) override |
The "Event" entrypoint: gets called by framework for every event. More... | |
template<typename T > | |
void | run (const T &input, const edm::ESHandle< TrackerGeometry > &geom, edmNew::DetSetVector< SiPixelCluster > &output) |
Iterate over DetUnits, and invoke the PixelClusterizer on each. More... | |
void | setupClusterizer (const edm::ParameterSet &conf) |
SiPixelClusterProducer (const edm::ParameterSet &conf) | |
Constructor: set the ParameterSet and defer all thinking to setupClusterizer(). More... | |
~SiPixelClusterProducer () override | |
Public Member Functions inherited from edm::stream::EDProducer<> | |
EDProducer ()=default | |
bool | hasAbilityToProduceInLumis () const final |
bool | hasAbilityToProduceInRuns () const final |
Private Attributes | |
PixelClusterizerBase * | clusterizer_ |
const std::string | clusterMode_ |
const int32_t | maxTotalClusters_ |
Optional limit on the total number of clusters. More... | |
const std::string | payloadType_ |
bool | readyToCluster_ |
SiPixelGainCalibrationServiceBase * | theSiPixelGainCalibration_ |
edm::EDGetTokenT< SiPixelClusterCollectionNew > | tPixelClusters |
edm::EDGetTokenT< edm::DetSetVector< PixelDigi > > | tPixelDigi |
const TrackerTopology * | tTopo_ |
Additional Inherited Members | |
Public Types inherited from edm::stream::EDProducer<> | |
typedef CacheContexts< T... > | CacheTypes |
typedef CacheTypes::GlobalCache | GlobalCache |
typedef AbilityChecker< T... > | HasAbility |
typedef CacheTypes::LuminosityBlockCache | LuminosityBlockCache |
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache > | LuminosityBlockContext |
typedef CacheTypes::LuminosityBlockSummaryCache | LuminosityBlockSummaryCache |
typedef CacheTypes::RunCache | RunCache |
typedef RunContextT< RunCache, GlobalCache > | RunContext |
typedef CacheTypes::RunSummaryCache | RunSummaryCache |
EDProducer to cluster PixelDigis into SiPixelClusters.
SiPixelClusterProducer is an EDProducer subclass (i.e., a module) which orchestrates clustering of PixelDigis to SiPixelClusters. Consequently, the input is edm::DetSetVector<PixelDigi> and the output is edm::DetSetVector<SiPixelCluster>.
SiPixelClusterProducer invokes one of descendents from PixelClusterizerBase, e.g. PixelThresholdClusterizer (which is the only available option right now). SiPixelClusterProducer loads the PixelDigis, and then iterates over DetIds, invoking PixelClusterizer's clusterizeDetUnit to perform the clustering. clusterizeDetUnit() returns a DetSetVector of SiPixelClusters, which are then recorded in the event.
The calibrations are not loaded at the moment (v1), although that is being planned for the near future.
Definition at line 52 of file SiPixelClusterProducer.h.
|
explicit |
Constructor: set the ParameterSet and defer all thinking to setupClusterizer().
Description: see SiPixelClusterProducer.h Author: P. Maksimovic (porting from original ORCA version) History: Oct 14, 2005, initial version Get rid of the noiseVector. d.k. 28/3/06 Implementation of the DetSetVector container. V.Chiochia, May 06 SiPixelClusterCollection typedef of DetSetVector V.Chiochia, June 06 Introduce the DetSet local container (cache) for speed. d.k. 05/07
Definition at line 49 of file SiPixelClusterProducer.cc.
References clusterMode_, edm::ParameterSet::getParameter(), payloadType_, setupClusterizer(), theSiPixelGainCalibration_, tPixelClusters, and tPixelDigi.
|
override |
Definition at line 79 of file SiPixelClusterProducer.cc.
References clusterizer_, and theSiPixelGainCalibration_.
|
override |
The "Event" entrypoint: gets called by framework for every event.
Definition at line 88 of file SiPixelClusterProducer.cc.
References clusterMode_, relativeConstraints::geom, edm::EventSetup::get(), edm::Event::getByToken(), eostools::move(), convertSQLitetoXML_cfg::output, edm::ESHandle< T >::product(), edm::Event::put(), run(), SiPixelGainCalibrationServiceBase::setESObjects(), theSiPixelGainCalibration_, tPixelClusters, tPixelDigi, and tTopo_.
void SiPixelClusterProducer::run | ( | const T & | input, |
const edm::ESHandle< TrackerGeometry > & | geom, | ||
edmNew::DetSetVector< SiPixelCluster > & | output | ||
) |
Iterate over DetUnits, and invoke the PixelClusterizer on each.
Definition at line 153 of file SiPixelClusterProducer.cc.
References PixelClusterizerBase::clusterizeDetUnit(), clusterizer_, DEFINE_FWK_MODULE, relativeConstraints::empty, TrackerGeometry::idToDetUnit(), maxTotalClusters_, readyToCluster_, edmNew::DetSetVector< T >::swap(), and tTopo_.
Referenced by produce().
void SiPixelClusterProducer::setupClusterizer | ( | const edm::ParameterSet & | conf | ) |
Set up the specific algorithm we are going to use. TO DO: in the future, we should allow for a different algorithm for each detector subset (e.g. barrel vs forward, per layer, etc).
Definition at line 132 of file SiPixelClusterProducer.cc.
References clusterizer_, clusterMode_, readyToCluster_, PixelClusterizerBase::setSiPixelGainCalibrationService(), and theSiPixelGainCalibration_.
Referenced by SiPixelClusterProducer().
|
private |
Definition at line 75 of file SiPixelClusterProducer.h.
Referenced by run(), setupClusterizer(), and ~SiPixelClusterProducer().
|
private |
Definition at line 74 of file SiPixelClusterProducer.h.
Referenced by produce(), setupClusterizer(), and SiPixelClusterProducer().
|
private |
Optional limit on the total number of clusters.
Definition at line 80 of file SiPixelClusterProducer.h.
Referenced by run().
|
private |
Definition at line 82 of file SiPixelClusterProducer.h.
Referenced by SiPixelClusterProducer().
|
private |
Definition at line 76 of file SiPixelClusterProducer.h.
Referenced by run(), and setupClusterizer().
|
private |
Definition at line 73 of file SiPixelClusterProducer.h.
Referenced by produce(), setupClusterizer(), SiPixelClusterProducer(), and ~SiPixelClusterProducer().
|
private |
Definition at line 70 of file SiPixelClusterProducer.h.
Referenced by produce(), and SiPixelClusterProducer().
|
private |
Definition at line 71 of file SiPixelClusterProducer.h.
Referenced by produce(), and SiPixelClusterProducer().
|
private |
Definition at line 77 of file SiPixelClusterProducer.h.