CMS 3D CMS Logo

PixelThresholdClusterizer.h
Go to the documentation of this file.
1 #ifndef RecoLocalTracker_SiPixelClusterizer_PixelThresholdClusterizer_H
2 #define RecoLocalTracker_SiPixelClusterizer_PixelThresholdClusterizer_H
3 
4 //-----------------------------------------------------------------------
39 //-----------------------------------------------------------------------
40 
41 // Base class, defines SiPixelDigi and SiPixelCluster. The latter includes
42 // Pixel, PixelPos and Shift as inner classes.
43 //
45 #include "PixelClusterizerBase.h"
46 
47 // The private pixel buffer
48 #include "SiPixelArrayBuffer.h"
49 
50 // Parameter Set:
52 
54 
55 #include <vector>
56 
58 public:
60  ~PixelThresholdClusterizer() override;
61 
62  // Full I/O in DetSet
64  const PixelGeomDetUnit* pixDet,
65  const TrackerTopology* tTopo,
66  const std::vector<short>& badChannels,
68  clusterizeDetUnitT(input, pixDet, tTopo, badChannels, output);
69  }
71  const PixelGeomDetUnit* pixDet,
72  const TrackerTopology* tTopo,
73  const std::vector<short>& badChannels,
75  clusterizeDetUnitT(input, pixDet, tTopo, badChannels, output);
76  }
77 
79 
80 private:
81  template <typename T>
82  void clusterizeDetUnitT(const T& input,
83  const PixelGeomDetUnit* pixDet,
84  const TrackerTopology* tTopo,
85  const std::vector<short>& badChannels,
87 
89  SiPixelArrayBuffer theBuffer; // internal nrow * ncol matrix
90  std::vector<SiPixelCluster::PixelPos> theSeeds; // cached seed pixels
91  std::vector<SiPixelCluster> theClusters; // resulting clusters
92 
94  float thePixelThresholdInNoiseUnits; // Pixel threshold in units of noise
95  float theSeedThresholdInNoiseUnits; // Pixel cluster seed in units of noise
96  float theClusterThresholdInNoiseUnits; // Cluster threshold in units of noise
97 
98  const int thePixelThreshold; // Pixel threshold in electrons
99  const int theSeedThreshold; // Seed threshold in electrons
100  const int theClusterThreshold; // Cluster threshold in electrons
101  const int theClusterThreshold_L1; // Cluster threshold in electrons for Layer 1
102  const int theConversionFactor; // adc to electron conversion factor
103  const int theConversionFactor_L1; // adc to electron conversion factor for Layer 1
104  const int theOffset; // adc to electron conversion offset
105  const int theOffset_L1; // adc to electron conversion offset for Layer 1
106 
107  const double theElectronPerADCGain; // ADC to electrons conversion
108 
109  const bool doPhase2Calibration; // The ADC --> electrons calibration is for phase-2 tracker
110  const int thePhase2ReadoutMode; // Readout mode of the phase-2 IT digitizer
111  const double thePhase2DigiBaseline; // Threshold above which digis are measured in the phase-2 IT
112  const int thePhase2KinkADC; // ADC count at which the kink in the dual slop kicks in
113 
117  uint32_t theDetid;
118  int theLayer;
119  const bool doMissCalibrate; // Use calibration or not
120  const bool doSplitClusters;
122  bool setup(const PixelGeomDetUnit* pixDet);
123  void copy_to_buffer(DigiIterator begin, DigiIterator end);
124  void copy_to_buffer(ClusterIterator begin, ClusterIterator end);
125  void clear_buffer(DigiIterator begin, DigiIterator end);
126  void clear_buffer(ClusterIterator begin, ClusterIterator end);
127  SiPixelCluster make_cluster(const SiPixelCluster::PixelPos& pix,
129  // Calibrate the ADC charge to electrons
130  int calibrate(int adc, int col, int row);
131 };
132 
133 #endif
SiPixelArrayBuffer theBuffer
Data storage.
static std::string const input
Definition: EdmProvDump.cc:48
void clusterizeDetUnit(const edm::DetSet< PixelDigi > &input, const PixelGeomDetUnit *pixDet, const TrackerTopology *tTopo, const std::vector< short > &badChannels, edmNew::DetSetVector< SiPixelCluster >::FastFiller &output) override
edm::DetSet< PixelDigi >::const_iterator DigiIterator
#define end
Definition: vmac.h:39
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
void clusterizeDetUnit(const edmNew::DetSet< SiPixelCluster > &input, const PixelGeomDetUnit *pixDet, const TrackerTopology *tTopo, const std::vector< short > &badChannels, edmNew::DetSetVector< SiPixelCluster >::FastFiller &output) override
int theNumOfRows
Geometry-related information.
#define dso_hidden
Definition: Visibility.h:12
edmNew::DetSet< SiPixelCluster >::const_iterator ClusterIterator
void fillPSetDescription(edm::ParameterSetDescription &desc)
std::vector< SiPixelCluster > theClusters
Pixel cluster – collection of neighboring pixels above threshold.
float thePixelThresholdInNoiseUnits
Clustering-related quantities:
#define begin
Definition: vmac.h:32
col
Definition: cuy.py:1010
std::vector< SiPixelCluster::PixelPos > theSeeds
long double T
A specific threshold-based pixel clustering algorithm.
Class to store ADC counts during clustering.