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 15 of file RPixDetClusterizer.cc.

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

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

Definition at line 28 of file RPixDetClusterizer.cc.

28 {}

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 30 of file RPixDetClusterizer.cc.

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

Referenced by CTPPSPixelClusterProducer::run().

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

References doSingleCalibration_, ElectronADCGain_, electrons_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().

120  {
121 
122  float gain=0;
123  float pedestal=0;
124  int electrons=0;
125 
127 
128  const CTPPSPixelGainCalibration& DetCalibs = pcalibrations->getGainCalibration(detId);
129 
130  if(DetCalibs.getDetId() != 0){
131  gain = DetCalibs.getGain(col,row)*highRangeCal/lowRangeCal;
132  pedestal = DetCalibs.getPed(col,row);
133  float vcal = (adc - pedestal)*gain;
134  electrons = int(vcal*VcaltoElectronGain_ + VcaltoElectronOffset_);
135  }
136  else{
137  gain = ElectronADCGain_;
138  pedestal = 0;
139  electrons = int(adc*gain-pedestal);
140  }
141 
142 
143  if(verbosity_) edm::LogInfo("RPixCalibration") << "calibrate: adc = " << adc << " electrons = " << electrons << " gain = " << gain << " pedestal = " << pedestal ;
144  }else{
145  gain = ElectronADCGain_;
146  pedestal = 0;
147  electrons = int(adc*gain-pedestal);
148  if(verbosity_) edm::LogInfo("RPixCalibration") << "calibrate: adc = " << adc << " electrons = " << electrons << " ElectronADCGain = " << gain << " pedestal = " << pedestal ;
149  }
150  if (electrons<0) {
151  edm::LogInfo("RPixCalibration") << "RPixDetClusterizer::calibrate: *** electrons < 0 *** --> " << electrons << " --> electrons = 0";
152  electrons = 0;
153  }
154 
155  return electrons;
156 
157 }
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 81 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().

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