CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
RPixDetClusterizer Class Reference

#include <RPixDetClusterizer.h>

Public Member Functions

void buildClusters (unsigned int detId, const std::vector< CTPPSPixelDigi > &digi, std::vector< CTPPSPixelCluster > &clusters, const CTPPSPixelGainCalibrations *pcalibration, const CTPPSPixelAnalysisMask *mask)
 
int calibrate (unsigned int, int, int, int, const CTPPSPixelGainCalibrations *pcalibration)
 
void make_cluster (RPixCalibDigi const &aSeed, std::vector< CTPPSPixelCluster > &clusters)
 
 RPixDetClusterizer (edm::ParameterSet const &conf)
 
 ~RPixDetClusterizer ()
 

Private Attributes

unsigned short ADCThreshold_
 
std::map< unsigned int, RPixCalibDigicalib_rpix_digi_map_
 
std::string CalibrationFile_
 
bool doSingleCalibration_
 
double ElectronADCGain_
 
const edm::ParameterSetparams_
 
std::set< CTPPSPixelDigirpix_digi_set_
 
unsigned short SeedADCThreshold_
 
std::vector< RPixCalibDigiSeedVector_
 
int VcaltoElectronGain_
 
int VcaltoElectronOffset_
 
int verbosity_
 

Detailed Description

Definition at line 52 of file RPixDetClusterizer.h.

Constructor & Destructor Documentation

RPixDetClusterizer::RPixDetClusterizer ( edm::ParameterSet const &  conf)

Definition at line 14 of file RPixDetClusterizer.cc.

References ADCThreshold_, doSingleCalibration_, ElectronADCGain_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), SeedADCThreshold_, VcaltoElectronGain_, VcaltoElectronOffset_, and verbosity_.

14  :
15  params_(conf), SeedVector_(0)
16 {
17  verbosity_ = conf.getUntrackedParameter<int>("RPixVerbosity");
18  SeedADCThreshold_ = conf.getParameter<int>("SeedADCThreshold");
19  ADCThreshold_ = conf.getParameter<int>("ADCThreshold");
20  ElectronADCGain_ = conf.getParameter<double>("ElectronADCGain");
21  VcaltoElectronGain_ = conf.getParameter<int>("VCaltoElectronGain");
22  VcaltoElectronOffset_ = conf.getParameter<int>("VCaltoElectronOffset");
23  doSingleCalibration_ = conf.getParameter<bool>("doSingleCalibration");
24 
25 }
std::vector< RPixCalibDigi > SeedVector_
const edm::ParameterSet & params_
unsigned short SeedADCThreshold_
unsigned short ADCThreshold_
RPixDetClusterizer::~RPixDetClusterizer ( )

Definition at line 27 of file RPixDetClusterizer.cc.

27 {}

Member Function Documentation

void RPixDetClusterizer::buildClusters ( unsigned int  detId,
const std::vector< CTPPSPixelDigi > &  digi,
std::vector< CTPPSPixelCluster > &  clusters,
const CTPPSPixelGainCalibrations pcalibration,
const CTPPSPixelAnalysisMask mask 
)

Definition at line 29 of file RPixDetClusterizer.cc.

References ecalMGPA::adc(), CTPPSPixelAnalysisMask::analysisMask, calib_rpix_digi_map_, calibrate(), ElectronADCGain_, nano_cff::electrons, Exception, make_cluster(), RecoTauDiscriminantConfiguration::mask, digitizers_cfi::pixel, rpix_digi_set_, SeedADCThreshold_, SeedVector_, and verbosity_.

Referenced by CTPPSPixelClusterProducer::run().

30 {
31 
32  std::map<uint32_t, CTPPSPixelROCAnalysisMask> const & mask = maskera->analysisMask;
33  std::map<uint32_t, CTPPSPixelROCAnalysisMask>::const_iterator mask_it = mask.find(detId);
34 
35  std::set<std::pair<unsigned char, unsigned char> > maskedPixels;
36  if( mask_it != mask.end()) maskedPixels = mask_it->second.maskedPixels;
37 
38  if(verbosity_) edm::LogInfo("RPixDetClusterizer")<<detId<<" received digi.size()="<<digi.size();
39 
40 // creating a set of CTPPSPixelDigi's and fill it
41 
42  rpix_digi_set_.clear();
43  rpix_digi_set_.insert(digi.begin(),digi.end());
44  SeedVector_.clear();
45 
46 // calibrate digis here
47  calib_rpix_digi_map_.clear();
48 
49  for( auto const &RPdit : rpix_digi_set_){
50 
51  uint8_t row = RPdit.row();
52  uint8_t column = RPdit.column();
53  if( row > maxRow || column > maxCol)
54  throw cms::Exception("CTPPSDigiOutofRange")
55  << " row = " << row << " column = "<<column;
56 
57  std::pair<unsigned char, unsigned char> pixel = std::make_pair(row,column);
58  unsigned short adc = RPdit.adc();
59  unsigned short electrons = 0;
60 
61 // check if pixel is noisy or dead (i.e. in the mask)
62  const bool is_in = maskedPixels.find(pixel) != maskedPixels.end();
63  if(!is_in){
64 //calibrate digi and store the new ones
65  electrons = calibrate(detId,adc,row,column,pcalibrations);
67  RPixCalibDigi calibDigi(row,column,adc,electrons);
68  unsigned int index = column*maxRow + row;
69  calib_rpix_digi_map_.insert(std::pair<unsigned int, RPixCalibDigi> (index, calibDigi));
70  SeedVector_.push_back(calibDigi);
71  }
72  }
73  if(verbosity_) edm::LogInfo("RPixDetClusterizer")<<" RPix set size = "<<calib_rpix_digi_map_.size();
74 
75  for(auto SeedIt : SeedVector_){
76  make_cluster( SeedIt, clusters);
77  }
78 }
std::map< uint32_t, CTPPSPixelROCAnalysisMask > analysisMask
std::vector< RPixCalibDigi > SeedVector_
void make_cluster(RPixCalibDigi const &aSeed, std::vector< CTPPSPixelCluster > &clusters)
std::set< CTPPSPixelDigi > rpix_digi_set_
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
unsigned short SeedADCThreshold_
std::map< unsigned int, RPixCalibDigi > calib_rpix_digi_map_
int calibrate(unsigned int, int, int, int, const CTPPSPixelGainCalibrations *pcalibration)
int RPixDetClusterizer::calibrate ( unsigned int  detId,
int  adc,
int  row,
int  col,
const CTPPSPixelGainCalibrations pcalibration 
)

Definition at line 119 of file RPixDetClusterizer.cc.

References doSingleCalibration_, ElectronADCGain_, nano_cff::electrons, muonCSCDigis_cfi::gain, CTPPSPixelGainCalibration::getDetId(), CTPPSPixelGainCalibration::getGain(), CTPPSPixelGainCalibrations::getGainCalibration(), CTPPSPixelGainCalibration::getPed(), createfilelist::int, muonCSCDigis_cfi::pedestal, VcaltoElectronGain_, VcaltoElectronOffset_, and verbosity_.

Referenced by buildClusters().

119  {
120 
121  float gain=0;
122  float pedestal=0;
123  int electrons=0;
124 
126 
127  const CTPPSPixelGainCalibration& DetCalibs = pcalibrations->getGainCalibration(detId);
128 
129  if(DetCalibs.getDetId() != 0){
130  gain = DetCalibs.getGain(col,row)*highRangeCal/lowRangeCal;
131  pedestal = DetCalibs.getPed(col,row);
132  float vcal = (adc - pedestal)*gain;
133  electrons = int(vcal*VcaltoElectronGain_ + VcaltoElectronOffset_);
134  }
135  else{
136  gain = ElectronADCGain_;
137  pedestal = 0;
138  electrons = int(adc*gain-pedestal);
139  }
140 
141 
142  if(verbosity_) edm::LogInfo("RPixCalibration") << "calibrate: adc = " << adc << " electrons = " << electrons << " gain = " << gain << " pedestal = " << pedestal ;
143  }else{
144  gain = ElectronADCGain_;
145  pedestal = 0;
146  electrons = int(adc*gain-pedestal);
147  if(verbosity_) edm::LogInfo("RPixCalibration") << "calibrate: adc = " << adc << " electrons = " << electrons << " ElectronADCGain = " << gain << " pedestal = " << pedestal ;
148  }
149  if (electrons<0) {
150  edm::LogInfo("RPixCalibration") << "RPixDetClusterizer::calibrate: *** electrons < 0 *** --> " << electrons << " --> electrons = 0";
151  electrons = 0;
152  }
153 
154  return electrons;
155 
156 }
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
float getPed(const int &col, const int &row) const
col
Definition: cuy.py:1010
float getGain(const int &col, const int &row) const
void RPixDetClusterizer::make_cluster ( RPixCalibDigi const &  aSeed,
std::vector< CTPPSPixelCluster > &  clusters 
)

check if seed already used

Definition at line 80 of file RPixDetClusterizer.cc.

References RPixTempCluster::adc, RPixTempCluster::addPixel(), EnergyCorrector::c, calib_rpix_digi_map_, RPixTempCluster::col, CTPPSPixelDigi::column(), RPixCalibDigi::electrons(), RPixTempCluster::empty(), RPixTempCluster::isize, SiStripPI::max, min(), RPixTempCluster::pop(), alignCSCRings::r, CTPPSPixelDigi::row(), RPixTempCluster::row, and RPixTempCluster::top().

Referenced by buildClusters().

80  {
82  unsigned int seedIndex = aSeed.column()*maxRow + aSeed.row();
83  if( calib_rpix_digi_map_.find(seedIndex)==calib_rpix_digi_map_.end() ){
84  return;
85  }
86 // creating a temporary cluster
87  RPixTempCluster atempCluster;
88 
89 // filling the cluster with the seed
90  atempCluster.addPixel(aSeed.row(),aSeed.column(),aSeed.electrons());
91  calib_rpix_digi_map_.erase(seedIndex);
92 
93  while ( ! atempCluster.empty()) {
94  //This is the standard algorithm to find and add a pixel
95  auto curInd = atempCluster.top();
96  atempCluster.pop();
97  for ( auto c = std::max(0,int(atempCluster.col[curInd])-1); c < std::min(int(atempCluster.col[curInd])+2,maxCol) ; ++c) {
98  for ( auto r = std::max(0,int(atempCluster.row[curInd])-1); r < std::min(int(atempCluster.row[curInd])+2,maxRow); ++r) {
99 
100  unsigned int currIndex = c*maxRow + r;
101  if(calib_rpix_digi_map_.find(currIndex)!=calib_rpix_digi_map_.end() ){
102  if(!atempCluster.addPixel( r,c,calib_rpix_digi_map_[currIndex].electrons() )) {
103  CTPPSPixelCluster acluster(atempCluster.isize,atempCluster.adc, atempCluster.row,atempCluster.col);
104  clusters.push_back(acluster);
105  return;
106  }
107  calib_rpix_digi_map_.erase(currIndex);
108  }
109 
110  }
111  }
112 
113  } // while accretion
114 
115  CTPPSPixelCluster cluster(atempCluster.isize,atempCluster.adc, atempCluster.row,atempCluster.col);
116  clusters.push_back(cluster);
117 }
unsigned short adc[MAXSIZE]
unsigned short isize
uint8_t row[MAXSIZE]
T min(T a, T b)
Definition: MathUtil.h:58
std::map< unsigned int, RPixCalibDigi > calib_rpix_digi_map_
bool addPixel(unsigned char myrow, unsigned char mycol, unsigned short const iadc)
uint8_t col[MAXSIZE]
unsigned short top() const

Member Data Documentation

unsigned short RPixDetClusterizer::ADCThreshold_
private

Definition at line 72 of file RPixDetClusterizer.h.

Referenced by RPixDetClusterizer().

std::map<unsigned int,RPixCalibDigi> RPixDetClusterizer::calib_rpix_digi_map_
private

Definition at line 68 of file RPixDetClusterizer.h.

Referenced by buildClusters(), and make_cluster().

std::string RPixDetClusterizer::CalibrationFile_
private

Definition at line 77 of file RPixDetClusterizer.h.

bool RPixDetClusterizer::doSingleCalibration_
private

Definition at line 76 of file RPixDetClusterizer.h.

Referenced by calibrate(), and RPixDetClusterizer().

double RPixDetClusterizer::ElectronADCGain_
private

Definition at line 73 of file RPixDetClusterizer.h.

Referenced by buildClusters(), calibrate(), and RPixDetClusterizer().

const edm::ParameterSet& RPixDetClusterizer::params_
private

Definition at line 69 of file RPixDetClusterizer.h.

std::set<CTPPSPixelDigi> RPixDetClusterizer::rpix_digi_set_
private

Definition at line 67 of file RPixDetClusterizer.h.

Referenced by buildClusters().

unsigned short RPixDetClusterizer::SeedADCThreshold_
private

Definition at line 71 of file RPixDetClusterizer.h.

Referenced by buildClusters(), and RPixDetClusterizer().

std::vector<RPixCalibDigi> RPixDetClusterizer::SeedVector_
private

Definition at line 78 of file RPixDetClusterizer.h.

Referenced by buildClusters().

int RPixDetClusterizer::VcaltoElectronGain_
private

Definition at line 74 of file RPixDetClusterizer.h.

Referenced by calibrate(), and RPixDetClusterizer().

int RPixDetClusterizer::VcaltoElectronOffset_
private

Definition at line 75 of file RPixDetClusterizer.h.

Referenced by calibrate(), and RPixDetClusterizer().

int RPixDetClusterizer::verbosity_
private

Definition at line 70 of file RPixDetClusterizer.h.

Referenced by buildClusters(), calibrate(), and RPixDetClusterizer().