CMS 3D CMS Logo

EcalUncalibRecHitWorkerGlobal.cc
Go to the documentation of this file.
1 
40 
42 public:
44  EcalUncalibRecHitWorkerGlobal() = default; // for EcalUncalibRecHitFillDescriptionWorkerFactory
45 
46  void set(const edm::EventSetup& es) override;
47  bool run(const edm::Event& evt,
50 
52 
53 protected:
54  double pedVec[3];
55  double pedRMSVec[3];
56  double gainRatios[3];
57 
62 
63  template <class C>
64  int isSaturated(const C& digi);
65 
66  double timeCorrection(float ampli, const std::vector<float>& amplitudeBins, const std::vector<float>& shiftBins);
67 
68  // weights method
77  EEShape testbeamEEShape; // used in the chi2
78  EBShape testbeamEBShape; // can be replaced by simple shape arrays of float in the future
79 
80  // determie which of the samples must actually be used by ECAL local reco
83 
84  // ratio method
85  std::vector<double> EBtimeFitParameters_;
86  std::vector<double> EEtimeFitParameters_;
87  std::vector<double> EBamplitudeFitParameters_;
88  std::vector<double> EEamplitudeFitParameters_;
89  std::pair<double, double> EBtimeFitLimits_;
90  std::pair<double, double> EEtimeFitLimits_;
91 
94 
96  double EBtimeNconst_;
98  double EEtimeNconst_;
110 
113 
118  std::vector<double> ebPulseShape_;
119  std::vector<double> eePulseShape_;
120 
121  // chi2 method
126  std::vector<double> EBchi2Parameters_;
127  std::vector<double> EEchi2Parameters_;
128 };
129 
132  tokenPeds_(c.esConsumes<EcalPedestals, EcalPedestalsRcd>()),
133  tokenGains_(c.esConsumes<EcalGainRatios, EcalGainRatiosRcd>()),
135  tokenWgts_(c.esConsumes<EcalTBWeights, EcalTBWeightsRcd>()),
136  testbeamEEShape(c),
137  testbeamEBShape(c),
138  tokenSampleMask_(c.esConsumes<EcalSampleMask, EcalSampleMaskRcd>()),
141  ps.getParameter<edm::ESInputTag>("timeCalibTag"))),
143  ps.getParameter<edm::ESInputTag>("timeOffsetTag"))) {
144  // ratio method parameters
145  EBtimeFitParameters_ = ps.getParameter<std::vector<double>>("EBtimeFitParameters");
146  EEtimeFitParameters_ = ps.getParameter<std::vector<double>>("EEtimeFitParameters");
147  EBamplitudeFitParameters_ = ps.getParameter<std::vector<double>>("EBamplitudeFitParameters");
148  EEamplitudeFitParameters_ = ps.getParameter<std::vector<double>>("EEamplitudeFitParameters");
149  EBtimeFitLimits_.first = ps.getParameter<double>("EBtimeFitLimits_Lower");
150  EBtimeFitLimits_.second = ps.getParameter<double>("EBtimeFitLimits_Upper");
151  EEtimeFitLimits_.first = ps.getParameter<double>("EEtimeFitLimits_Lower");
152  EEtimeFitLimits_.second = ps.getParameter<double>("EEtimeFitLimits_Upper");
153  EBtimeConstantTerm_ = ps.getParameter<double>("EBtimeConstantTerm");
154  EBtimeNconst_ = ps.getParameter<double>("EBtimeNconst");
155  EEtimeConstantTerm_ = ps.getParameter<double>("EEtimeConstantTerm");
156  EEtimeNconst_ = ps.getParameter<double>("EEtimeNconst");
157  outOfTimeThreshG12pEB_ = ps.getParameter<double>("outOfTimeThresholdGain12pEB");
158  outOfTimeThreshG12mEB_ = ps.getParameter<double>("outOfTimeThresholdGain12mEB");
159  outOfTimeThreshG61pEB_ = ps.getParameter<double>("outOfTimeThresholdGain61pEB");
160  outOfTimeThreshG61mEB_ = ps.getParameter<double>("outOfTimeThresholdGain61mEB");
161  outOfTimeThreshG12pEE_ = ps.getParameter<double>("outOfTimeThresholdGain12pEE");
162  outOfTimeThreshG12mEE_ = ps.getParameter<double>("outOfTimeThresholdGain12mEE");
163  outOfTimeThreshG61pEE_ = ps.getParameter<double>("outOfTimeThresholdGain61pEE");
164  outOfTimeThreshG61mEE_ = ps.getParameter<double>("outOfTimeThresholdGain61mEE");
165  amplitudeThreshEB_ = ps.getParameter<double>("amplitudeThresholdEB");
166  amplitudeThreshEE_ = ps.getParameter<double>("amplitudeThresholdEE");
167 
168  // spike threshold
169  ebSpikeThresh_ = ps.getParameter<double>("ebSpikeThreshold");
170 
171  ebPulseShape_ = ps.getParameter<std::vector<double>>("ebPulseShape");
172  eePulseShape_ = ps.getParameter<std::vector<double>>("eePulseShape");
173 
174  // chi2 parameters
175  kPoorRecoFlagEB_ = ps.getParameter<bool>("kPoorRecoFlagEB");
176  kPoorRecoFlagEE_ = ps.getParameter<bool>("kPoorRecoFlagEE");
177 
178  chi2ThreshEB_ = ps.getParameter<double>("chi2ThreshEB_");
179  chi2ThreshEE_ = ps.getParameter<double>("chi2ThreshEE_");
180  EBchi2Parameters_ = ps.getParameter<std::vector<double>>("EBchi2Parameters");
181  EEchi2Parameters_ = ps.getParameter<std::vector<double>>("EEchi2Parameters");
182 }
183 
185  // common setup
187  peds_ = es.getHandle(tokenPeds_);
188 
189  // for the weights method
190  grps_ = es.getHandle(tokenGrps_);
191  wgts_ = es.getHandle(tokenWgts_);
192 
193  // which of the samples need be used
195 
196  // for the ratio method
197 
200 
201  // for the time correction methods
203 
204  // for the DB Ecal Pulse Sim Shape
207 }
208 
209 // check saturation: 5 samples with gainId = 0
210 template <class C>
212  //bool saturated_ = 0;
213  int cnt;
214  for (int j = 0; j < C::MAXSAMPLES - 5; ++j) {
215  cnt = 0;
216  for (int i = j; i < (j + 5) && i < C::MAXSAMPLES; ++i) {
217  if (dataFrame.sample(i).gainId() == 0)
218  ++cnt;
219  }
220  if (cnt == 5)
221  return j - 1; // the last unsaturated sample
222  }
223  return -1; // no saturation found
224 }
225 
236  const std::vector<float>& amplitudeBins,
237  const std::vector<float>& shiftBins) {
238  // computed initially in ns. Than turned in the BX's, as
239  // EcalUncalibratedRecHit need be.
240  double theCorrection = 0;
241 
242  // sanity check for arrays
243  if (amplitudeBins.empty()) {
244  edm::LogError("EcalRecHitError") << "timeCorrAmplitudeBins is empty, forcing no time bias corrections.";
245 
246  return 0;
247  }
248 
249  if (amplitudeBins.size() != shiftBins.size()) {
250  edm::LogError("EcalRecHitError") << "Size of timeCorrAmplitudeBins different from "
251  "timeCorrShiftBins. Forcing no time bias corrections. ";
252 
253  return 0;
254  }
255 
256  int myBin = -1;
257  for (int bin = 0; bin < (int)amplitudeBins.size(); bin++) {
258  if (ampli > amplitudeBins.at(bin)) {
259  myBin = bin;
260  } else {
261  break;
262  }
263  }
264 
265  if (myBin == -1) {
266  theCorrection = shiftBins.at(0);
267  } else if (myBin == ((int)(amplitudeBins.size() - 1))) {
268  theCorrection = shiftBins.at(myBin);
269  } else if (-1 < myBin && myBin < ((int)amplitudeBins.size() - 1)) {
270  // interpolate linearly between two assingned points
271  theCorrection = (shiftBins.at(myBin + 1) - shiftBins.at(myBin));
272  theCorrection *=
273  (((double)ampli) - amplitudeBins.at(myBin)) / (amplitudeBins.at(myBin + 1) - amplitudeBins.at(myBin));
274  theCorrection += shiftBins.at(myBin);
275  } else {
276  edm::LogError("EcalRecHitError") << "Assigning time correction impossible. Setting it to 0 ";
277  theCorrection = 0.;
278  }
279 
280  // convert ns into clocks
281  return theCorrection / 25.;
282 }
283 
287  DetId detid(itdg->id());
288 
289  const EcalSampleMask* sampleMask_ = sampleMaskHand_.product();
290 
291  // intelligence for recHit computation
292  EcalUncalibratedRecHit uncalibRecHit;
293 
294  const EcalPedestals::Item* aped = nullptr;
295  const EcalMGPAGainRatio* aGain = nullptr;
296  const EcalXtalGroupId* gid = nullptr;
297  float offsetTime = 0;
298 
299  if (detid.subdetId() == EcalEndcap) {
300  unsigned int hashedIndex = EEDetId(detid).hashedIndex();
301  aped = &peds_->endcap(hashedIndex);
302  aGain = &gains_->endcap(hashedIndex);
303  gid = &grps_->endcap(hashedIndex);
304  offsetTime = offtime_->getEEValue();
305  } else {
306  unsigned int hashedIndex = EBDetId(detid).hashedIndex();
307  aped = &peds_->barrel(hashedIndex);
308  aGain = &gains_->barrel(hashedIndex);
309  gid = &grps_->barrel(hashedIndex);
310  offsetTime = offtime_->getEBValue();
311  }
312 
313  pedVec[0] = aped->mean_x12;
314  pedVec[1] = aped->mean_x6;
315  pedVec[2] = aped->mean_x1;
316  pedRMSVec[0] = aped->rms_x12;
317  pedRMSVec[1] = aped->rms_x6;
318  pedRMSVec[2] = aped->rms_x1;
319  gainRatios[0] = 1.;
320  gainRatios[1] = aGain->gain12Over6();
321  gainRatios[2] = aGain->gain6Over1() * aGain->gain12Over6();
322 
323  // compute the right bin of the pulse shape using time calibration constants
325  EcalTimeCalibConstant itimeconst = 0;
326  if (it != itime_->end()) {
327  itimeconst = (*it);
328  } else {
329  edm::LogError("EcalRecHitError") << "No time intercalib const found for xtal " << detid.rawId()
330  << "! something wrong with EcalTimeCalibConstants in your DB? ";
331  }
332 
333  // === amplitude computation ===
334  int leadingSample = -1;
335  if (detid.subdetId() == EcalEndcap) {
336  leadingSample = ((EcalDataFrame)(*itdg)).lastUnsaturatedSample();
337  } else {
338  leadingSample = ((EcalDataFrame)(*itdg)).lastUnsaturatedSample();
339  }
340 
341  if (leadingSample == 4) { // saturation on the expected max sample
342  uncalibRecHit = EcalUncalibratedRecHit((*itdg).id(), 4095 * 12, 0, 0, 0);
344  // do not propagate the default chi2 = -1 value to the calib rechit (mapped to 64), set it to 0 when saturation
345  uncalibRecHit.setChi2(0);
346  } else if (leadingSample >= 0) { // saturation on other samples: cannot extrapolate from the fourth one
347  double pedestal = 0.;
348  double gainratio = 1.;
349  int gainId = ((EcalDataFrame)(*itdg)).sample(5).gainId();
350 
351  if (gainId == 0 || gainId == 3) {
352  pedestal = aped->mean_x1;
353  gainratio = aGain->gain6Over1() * aGain->gain12Over6();
354  } else if (gainId == 1) {
355  pedestal = aped->mean_x12;
356  gainratio = 1.;
357  } else if (gainId == 2) {
358  pedestal = aped->mean_x6;
359  gainratio = aGain->gain12Over6();
360  }
361  double amplitude = ((double)(((EcalDataFrame)(*itdg)).sample(5).adc()) - pedestal) * gainratio;
362  uncalibRecHit = EcalUncalibratedRecHit((*itdg).id(), amplitude, 0, 0, 0);
364  // do not propagate the default chi2 = -1 value to the calib rechit (mapped to 64), set it to 0 when saturation
365  uncalibRecHit.setChi2(0);
366  } else {
367  // weights method
368  EcalTBWeights::EcalTDCId tdcid(1);
369  EcalTBWeights::EcalTBWeightMap const& wgtsMap = wgts_->getMap();
370  EcalTBWeights::EcalTBWeightMap::const_iterator wit;
371  wit = wgtsMap.find(std::make_pair(*gid, tdcid));
372  if (wit == wgtsMap.end()) {
373  edm::LogError("EcalUncalibRecHitError")
374  << "No weights found for EcalGroupId: " << gid->id() << " and EcalTDCId: " << tdcid
375  << "\n skipping digi with id: " << detid.rawId();
376 
377  return false;
378  }
379  const EcalWeightSet& wset = wit->second; // this is the EcalWeightSet
380 
383 
384  weights[0] = &mat1;
385  weights[1] = &mat2;
386 
387  // get uncalibrated recHit from weights
388  if (detid.subdetId() == EcalEndcap) {
390  } else {
392  }
393 
394  // === time computation ===
395  // ratio method
396  float const clockToNsConstant = 25.;
397  if (detid.subdetId() == EcalEndcap) {
398  ratioMethod_endcap_.init(*itdg, *sampleMask_, pedVec, pedRMSVec, gainRatios);
402  double theTimeCorrectionEE = timeCorrection(
404 
405  uncalibRecHit.setJitter(crh.timeMax - 5 + theTimeCorrectionEE);
406  uncalibRecHit.setJitterError(
407  std::sqrt(pow(crh.timeError, 2) + std::pow(EEtimeConstantTerm_, 2) / std::pow(clockToNsConstant, 2)));
408  // consider flagging as kOutOfTime only if above noise
409  if (uncalibRecHit.amplitude() > pedRMSVec[0] * amplitudeThreshEE_) {
410  float outOfTimeThreshP = outOfTimeThreshG12pEE_;
411  float outOfTimeThreshM = outOfTimeThreshG12mEE_;
412  // determine if gain has switched away from gainId==1 (x12 gain)
413  // and determine cuts (number of 'sigmas') to ose for kOutOfTime
414  // >3k ADC is necessasry condition for gain switch to occur
415  if (uncalibRecHit.amplitude() > 3000.) {
416  for (int iSample = 0; iSample < EEDataFrame::MAXSAMPLES; iSample++) {
417  int GainId = ((EcalDataFrame)(*itdg)).sample(iSample).gainId();
418  if (GainId != 1) {
419  outOfTimeThreshP = outOfTimeThreshG61pEE_;
420  outOfTimeThreshM = outOfTimeThreshG61mEE_;
421  break;
422  }
423  }
424  }
425  float correctedTime = (crh.timeMax - 5) * clockToNsConstant + itimeconst + offsetTime;
426  float cterm = EEtimeConstantTerm_;
427  float sigmaped = pedRMSVec[0]; // approx for lower gains
428  float nterm = EEtimeNconst_ * sigmaped / uncalibRecHit.amplitude();
429  float sigmat = std::sqrt(nterm * nterm + cterm * cterm);
430  if ((correctedTime > sigmat * outOfTimeThreshP) || (correctedTime < (-1. * sigmat * outOfTimeThreshM))) {
432  }
433  }
434 
435  } else {
436  ratioMethod_barrel_.init(*itdg, *sampleMask_, pedVec, pedRMSVec, gainRatios);
441 
442  double theTimeCorrectionEB = timeCorrection(
444 
445  uncalibRecHit.setJitter(crh.timeMax - 5 + theTimeCorrectionEB);
446 
447  uncalibRecHit.setJitterError(
448  std::sqrt(std::pow(crh.timeError, 2) + std::pow(EBtimeConstantTerm_, 2) / std::pow(clockToNsConstant, 2)));
449  // consider flagging as kOutOfTime only if above noise
450  if (uncalibRecHit.amplitude() > pedRMSVec[0] * amplitudeThreshEB_) {
451  float outOfTimeThreshP = outOfTimeThreshG12pEB_;
452  float outOfTimeThreshM = outOfTimeThreshG12mEB_;
453  // determine if gain has switched away from gainId==1 (x12 gain)
454  // and determine cuts (number of 'sigmas') to ose for kOutOfTime
455  // >3k ADC is necessasry condition for gain switch to occur
456  if (uncalibRecHit.amplitude() > 3000.) {
457  for (int iSample = 0; iSample < EBDataFrame::MAXSAMPLES; iSample++) {
458  int GainId = ((EcalDataFrame)(*itdg)).sample(iSample).gainId();
459  if (GainId != 1) {
460  outOfTimeThreshP = outOfTimeThreshG61pEB_;
461  outOfTimeThreshM = outOfTimeThreshG61mEB_;
462  break;
463  }
464  }
465  }
466  float correctedTime = (crh.timeMax - 5) * clockToNsConstant + itimeconst + offsetTime;
467  float cterm = EBtimeConstantTerm_;
468  float sigmaped = pedRMSVec[0]; // approx for lower gains
469  float nterm = EBtimeNconst_ * sigmaped / uncalibRecHit.amplitude();
470  float sigmat = std::sqrt(nterm * nterm + cterm * cterm);
471  if ((correctedTime > sigmat * outOfTimeThreshP) || (correctedTime < (-1. * sigmat * outOfTimeThreshM))) {
473  }
474  }
475  }
476 
477  // === chi2express ===
478  if (detid.subdetId() == EcalEndcap) {
479  double amplitude = uncalibRecHit.amplitude();
480  double amplitudeOutOfTime = 0.;
481  double jitter = uncalibRecHit.jitter();
482 
483  EcalUncalibRecHitRecChi2Algo<EEDataFrame> chi2expressEE_(*itdg,
484  amplitude,
485  (itimeconst + offsetTime),
486  amplitudeOutOfTime,
487  jitter,
488  pedVec,
489  pedRMSVec,
490  gainRatios,
493  double chi2 = chi2expressEE_.chi2();
494  uncalibRecHit.setChi2(chi2);
495 
496  if (kPoorRecoFlagEE_) {
497  if (chi2 > chi2ThreshEE_) {
498  // first check if all samples are ok, if not don't use chi2 to flag
499  bool samplesok = true;
500  for (int sample = 0; sample < EcalDataFrame::MAXSAMPLES; ++sample) {
501  if (!sampleMask_->useSampleEE(sample)) {
502  samplesok = false;
503  break;
504  }
505  }
506  if (samplesok)
508  }
509  }
510 
511  } else {
512  double amplitude = uncalibRecHit.amplitude();
513  double amplitudeOutOfTime = 0.;
514  double jitter = uncalibRecHit.jitter();
515 
516  EcalUncalibRecHitRecChi2Algo<EBDataFrame> chi2expressEB_(*itdg,
517  amplitude,
518  (itimeconst + offsetTime),
519  amplitudeOutOfTime,
520  jitter,
521  pedVec,
522  pedRMSVec,
523  gainRatios,
526  double chi2 = chi2expressEB_.chi2();
527  uncalibRecHit.setChi2(chi2);
528 
529  if (kPoorRecoFlagEB_) {
530  if (chi2 > chi2ThreshEB_) {
531  // first check if all samples are ok, if not don't use chi2 to flag
532  bool samplesok = true;
533  for (int sample = 0; sample < EcalDataFrame::MAXSAMPLES; ++sample) {
534  if (!sampleMask_->useSampleEB(sample)) {
535  samplesok = false;
536  break;
537  }
538  }
539  if (samplesok)
541  }
542  }
543  }
544  }
545 
546  // set flags if gain switch has occurred
547  if (((EcalDataFrame)(*itdg)).hasSwitchToGain6())
549  if (((EcalDataFrame)(*itdg)).hasSwitchToGain1())
551 
552  // put the recHit in the collection
553  if (detid.subdetId() == EcalEndcap) {
554  result.push_back(uncalibRecHit);
555  } else {
556  result.push_back(uncalibRecHit);
557  }
558 
559  return true;
560 }
561 
564  psd.addNode(
565  edm::ParameterDescription<std::vector<double>>(
566  "eePulseShape", {5.2e-05, -5.26e-05, 6.66e-05, 0.1168, 0.7575, 1.0, 0.8876, 0.6732, 0.4741, 0.3194}, true) and
567  edm::ParameterDescription<std::vector<double>>(
568  "EBtimeFitParameters",
569  {-2.015452, 3.130702, -12.3473, 41.88921, -82.83944, 91.01147, -50.35761, 11.05621},
570  true) and
571  edm::ParameterDescription<double>("outOfTimeThresholdGain61pEB", 5, true) and
572  edm::ParameterDescription<double>("amplitudeThresholdEE", 10, true) and
573  edm::ParameterDescription<double>("EBtimeConstantTerm", 0.6, true) and
574  edm::ParameterDescription<double>("outOfTimeThresholdGain61pEE", 1000, true) and
575  edm::ParameterDescription<double>("ebSpikeThreshold", 1.042, true) and
576  edm::ParameterDescription<double>("EBtimeNconst", 28.5, true) and
577  edm::ParameterDescription<bool>("kPoorRecoFlagEB", true, true) and
578  edm::ParameterDescription<std::vector<double>>(
579  "ebPulseShape", {5.2e-05, -5.26e-05, 6.66e-05, 0.1168, 0.7575, 1.0, 0.8876, 0.6732, 0.4741, 0.3194}, true) and
580  edm::ParameterDescription<double>("EBtimeFitLimits_Lower", 0.2, true) and
581  edm::ParameterDescription<bool>("kPoorRecoFlagEE", false, true) and
582  edm::ParameterDescription<double>("chi2ThreshEB_", 36.0, true) and
584  edm::ParameterDescription<edm::ESInputTag>("timeOffsetTag", edm::ESInputTag(), true) and
585  edm::ParameterDescription<std::vector<double>>(
586  "EEtimeFitParameters",
587  {-2.390548, 3.553628, -17.62341, 67.67538, -133.213, 140.7432, -75.41106, 16.20277},
588  true) and
589  edm::ParameterDescription<double>("outOfTimeThresholdGain61mEE", 1000, true) and
590  edm::ParameterDescription<std::vector<double>>("EEchi2Parameters", {2.122, 0.022, 2.122, 0.022}, true) and
591  edm::ParameterDescription<double>("outOfTimeThresholdGain12mEE", 1000, true) and
592  edm::ParameterDescription<double>("outOfTimeThresholdGain12mEB", 5, true) and
593  edm::ParameterDescription<double>("EEtimeFitLimits_Upper", 1.4, true) and
594  edm::ParameterDescription<double>("EEtimeFitLimits_Lower", 0.2, true) and
595  edm::ParameterDescription<std::vector<double>>("EEamplitudeFitParameters", {1.89, 1.4}, true) and
596  edm::ParameterDescription<std::vector<double>>("EBamplitudeFitParameters", {1.138, 1.652}, true) and
597  edm::ParameterDescription<double>("amplitudeThresholdEB", 10, true) and
598  edm::ParameterDescription<double>("outOfTimeThresholdGain12pEE", 1000, true) and
599  edm::ParameterDescription<double>("outOfTimeThresholdGain12pEB", 5, true) and
600  edm::ParameterDescription<double>("EEtimeNconst", 31.8, true) and
601  edm::ParameterDescription<double>("outOfTimeThresholdGain61mEB", 5, true) and
602  edm::ParameterDescription<std::vector<double>>("EBchi2Parameters", {2.122, 0.022, 2.122, 0.022}, true) and
603  edm::ParameterDescription<double>("EEtimeConstantTerm", 1.0, true) and
604  edm::ParameterDescription<double>("chi2ThreshEE_", 95.0, true) and
605  edm::ParameterDescription<double>("EBtimeFitLimits_Upper", 1.4, true));
606 
607  return psd;
608 }
609 
616  "EcalUncalibRecHitWorkerGlobal");
std::pair< double, double > EEtimeFitLimits_
edm::ESHandle< EcalTimeOffsetConstant > offtime_
edm::ESGetToken< EcalTBWeights, EcalTBWeightsRcd > tokenWgts_
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
edm::ESHandle< EcalTimeBiasCorrections > timeCorrBias_
edm::ESGetToken< EcalTimeCalibConstants, EcalTimeCalibConstantsRcd > tokenItime_
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
void computeAmplitude(std::vector< double > &amplitudeFitParameters)
edm::ESHandle< EcalWeightXtalGroups > grps_
std::vector< float > EBTimeCorrShiftBins
const EcalTBWeightMap & getMap() const
Definition: EcalTBWeights.h:28
double timeCorrection(float ampli, const std::vector< float > &amplitudeBins, const std::vector< float > &shiftBins)
void setJitter(float jitter)
std::map< std::pair< EcalXtalGroupId, EcalTDCId >, EcalWeightSet > EcalTBWeightMap
Definition: EcalTBWeights.h:18
void computeTime(std::vector< double > &timeFitParameters, std::pair< double, double > &timeFitLimits, std::vector< double > &amplitudeFitParameters)
EcalUncalibRecHitRecWeightsAlgo< EBDataFrame > weightsMethod_barrel_
ParameterDescriptionNode * addNode(ParameterDescriptionNode const &node)
constexpr int pow(int x)
Definition: conifer.h:24
math::Matrix< 10, 10 >::type EcalChi2WeightMatrix
Definition: EcalWeightSet.h:20
math::Matrix< 3, 10 >::type EcalWeightMatrix
Definition: EcalWeightSet.h:19
Log< level::Error, false > LogError
void set(const edm::EventSetup &es) override
void setJitterError(float jitterErr)
edm::ESGetToken< EcalSampleMask, EcalSampleMaskRcd > tokenSampleMask_
EcalUncalibRecHitRatioMethodAlgo< EEDataFrame > ratioMethod_endcap_
std::vector< float > EBTimeCorrAmplitudeBins
std::vector< float > EETimeCorrShiftBins
int hashedIndex(int ieta, int iphi)
Definition: EcalPyUtils.cc:36
T const * product() const
Definition: ESHandle.h:86
edm::ESGetToken< EcalGainRatios, EcalGainRatiosRcd > tokenGains_
EcalUncalibRecHitRatioMethodAlgo< EBDataFrame > ratioMethod_barrel_
std::vector< float > EETimeCorrAmplitudeBins
T sqrt(T t)
Definition: SSEVec.h:19
edm::ESGetToken< EcalTimeBiasCorrections, EcalTimeBiasCorrectionsRcd > tokenTimeCorrBias_
virtual EcalUncalibratedRecHit makeRecHit(const C &dataFrame, const double *pedestals, const double *pedestalsRMS, const double *gainRatios, const EcalWeightSet::EcalWeightMatrix **weights, const EcalShapeBase &testbeamPulseShape)
Compute parameters.
unsigned int id() const
bool run(const edm::Event &evt, const EcalDigiCollection::const_iterator &digi, EcalUncalibratedRecHitCollection &result) override
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
EcalWeightMatrix & getWeightsAfterGainSwitch()
Definition: EcalWeightSet.h:27
void setEventSetup(const edm::EventSetup &evtSetup, bool normalize=true)
edm::ESHandle< EcalGainRatios > gains_
Definition: EBShape.h:7
edm::ESHandle< EcalPedestals > peds_
float gain12Over6() const
Definition: DetId.h:17
edm::ESHandle< EcalTBWeights > wgts_
constexpr int gainId(sample_type sample)
get the gainId (2 bits)
std::pair< double, double > EBtimeFitLimits_
EcalWeightMatrix & getWeightsBeforeGainSwitch()
Definition: EcalWeightSet.h:26
const EcalWeightSet::EcalChi2WeightMatrix * chi2mat[2]
std::vector< Item >::const_iterator const_iterator
float gain6Over1() const
boost::transform_iterator< IterHelp, boost::counting_iterator< int > > const_iterator
const EcalWeightSet::EcalWeightMatrix * weights[2]
float EcalTimeCalibConstant
HLT enums.
EcalUncalibRecHitRecWeightsAlgo< EEDataFrame > weightsMethod_endcap_
int hashedIndex() const
get a compact index for arrays
Definition: EBDetId.h:82
#define DEFINE_EDM_PLUGIN(factory, type, name)
static constexpr int MAXSAMPLES
Definition: EcalDataFrame.h:48
edm::ParameterSetDescription getAlgoDescription() override
edm::ESHandle< EcalSampleMask > sampleMaskHand_
void init(const C &dataFrame, const EcalSampleMask &sampleMask, const double *pedestals, const double *pedestalRMSes, const double *gainRatios)
int hashedIndex() const
Definition: EEDetId.h:183
edm::ESGetToken< EcalWeightXtalGroups, EcalWeightXtalGroupsRcd > tokenGrps_
edm::ESGetToken< EcalTimeOffsetConstant, EcalTimeOffsetConstantRcd > tokenOfftime_
edm::ESHandle< EcalTimeCalibConstants > itime_
edm::ESGetToken< EcalPedestals, EcalPedestalsRcd > tokenPeds_
Definition: EEShape.h:7