CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalUncalibRecHitWorkerMultiFit.cc
Go to the documentation of this file.
2 
8 
20 
24 
27  noisecorEBg12(SampleMatrix::Zero()), noisecorEEg12(SampleMatrix::Zero()),
28  noisecorEBg6(SampleMatrix::Zero()), noisecorEEg6(SampleMatrix::Zero()),
29  noisecorEBg1(SampleMatrix::Zero()), noisecorEEg1(SampleMatrix::Zero()),
30  fullpulseEB(FullSampleVector::Zero()),fullpulseEE(FullSampleVector::Zero()),
31  fullpulsecovEB(FullSampleMatrix::Zero()),fullpulsecovEE(FullSampleMatrix::Zero()) {
32 
33  // get the BX for the pulses to be activated
34  std::vector<int32_t> activeBXs = ps.getParameter< std::vector<int32_t> >("activeBXs");
35  activeBX.resize(activeBXs.size());
36  for (unsigned int ibx=0; ibx<activeBXs.size(); ++ibx) {
37  activeBX.coeffRef(ibx) = activeBXs[ibx];
38  }
39 
40  // uncertainty calculation (CPU intensive)
41  ampErrorCalculation_ = ps.getParameter<bool>("ampErrorCalculation");
42  useLumiInfoRunHeader_ = ps.getParameter<bool>("useLumiInfoRunHeader");
43 
44  if (useLumiInfoRunHeader_) {
45  bunchSpacing_ = c.consumes<unsigned int>(edm::InputTag("bunchSpacingProducer"));
47  } else {
48  bunchSpacingManual_ = ps.getParameter<int>("bunchSpacing");
49  }
50 
51  doPrefitEB_ = ps.getParameter<bool>("doPrefitEB");
52  doPrefitEE_ = ps.getParameter<bool>("doPrefitEE");
53 
54  prefitMaxChiSqEB_ = ps.getParameter<double>("prefitMaxChiSqEB");
55  prefitMaxChiSqEE_ = ps.getParameter<double>("prefitMaxChiSqEE");
56 
57  // algorithm to be used for timing
58  timealgo_ = ps.getParameter<std::string>("timealgo");
59 
60  // ratio method parameters
61  EBtimeFitParameters_ = ps.getParameter<std::vector<double> >("EBtimeFitParameters");
62  EEtimeFitParameters_ = ps.getParameter<std::vector<double> >("EEtimeFitParameters");
63  EBamplitudeFitParameters_ = ps.getParameter<std::vector<double> >("EBamplitudeFitParameters");
64  EEamplitudeFitParameters_ = ps.getParameter<std::vector<double> >("EEamplitudeFitParameters");
65  EBtimeFitLimits_.first = ps.getParameter<double>("EBtimeFitLimits_Lower");
66  EBtimeFitLimits_.second = ps.getParameter<double>("EBtimeFitLimits_Upper");
67  EEtimeFitLimits_.first = ps.getParameter<double>("EEtimeFitLimits_Lower");
68  EEtimeFitLimits_.second = ps.getParameter<double>("EEtimeFitLimits_Upper");
69  EBtimeConstantTerm_=ps.getParameter<double>("EBtimeConstantTerm");
70  EEtimeConstantTerm_=ps.getParameter<double>("EEtimeConstantTerm");
71  EBtimeNconst_=ps.getParameter<double>("EBtimeNconst");
72  EEtimeNconst_=ps.getParameter<double>("EEtimeNconst");
73  outOfTimeThreshG12pEB_ = ps.getParameter<double>("outOfTimeThresholdGain12pEB");
74  outOfTimeThreshG12mEB_ = ps.getParameter<double>("outOfTimeThresholdGain12mEB");
75  outOfTimeThreshG61pEB_ = ps.getParameter<double>("outOfTimeThresholdGain61pEB");
76  outOfTimeThreshG61mEB_ = ps.getParameter<double>("outOfTimeThresholdGain61mEB");
77  outOfTimeThreshG12pEE_ = ps.getParameter<double>("outOfTimeThresholdGain12pEE");
78  outOfTimeThreshG12mEE_ = ps.getParameter<double>("outOfTimeThresholdGain12mEE");
79  outOfTimeThreshG61pEE_ = ps.getParameter<double>("outOfTimeThresholdGain61pEE");
80  outOfTimeThreshG61mEE_ = ps.getParameter<double>("outOfTimeThresholdGain61mEE");
81  amplitudeThreshEB_ = ps.getParameter<double>("amplitudeThresholdEB");
82  amplitudeThreshEE_ = ps.getParameter<double>("amplitudeThresholdEE");
83 
84  // spike threshold
85  ebSpikeThresh_ = ps.getParameter<double>("ebSpikeThreshold");
86 
87  ebPulseShape_ = ps.getParameter<std::vector<double> >("ebPulseShape");
88  eePulseShape_ = ps.getParameter<std::vector<double> >("eePulseShape");
89 
90  // chi2 parameters for flags determination
91  kPoorRecoFlagEB_ = ps.getParameter<bool>("kPoorRecoFlagEB");
92  kPoorRecoFlagEE_ = ps.getParameter<bool>("kPoorRecoFlagEE");;
93  chi2ThreshEB_=ps.getParameter<double>("chi2ThreshEB_");
94  chi2ThreshEE_=ps.getParameter<double>("chi2ThreshEE_");
95 
96 }
97 
98 
99 
100 void
102 {
103 
104  // common setup
105  es.get<EcalGainRatiosRcd>().get(gains);
106  es.get<EcalPedestalsRcd>().get(peds);
107 
108  // for the multifit method
113 
114  // weights parameters for the time
115  es.get<EcalWeightXtalGroupsRcd>().get(grps);
116  es.get<EcalTBWeightsRcd>().get(wgts);
117 
118  // which of the samples need be used
120 
121  // for the ratio method
124 
125  // for the time correction methods
127 }
128 
129 void
131 {
132 
133  unsigned int bunchspacing = 450;
134 
135  if (useLumiInfoRunHeader_) {
136 
137  edm::Handle<unsigned int> bunchSpacingH;
138  evt.getByToken(bunchSpacing_,bunchSpacingH);
139  bunchspacing = *bunchSpacingH;
140  }
141  else {
142  bunchspacing = bunchSpacingManual_;
143  }
144 
146  if (bunchspacing == 25) {
147  activeBX.resize(10);
148  activeBX << -5,-4,-3,-2,-1,0,1,2,3,4;
149  }
150  else {
151  //50ns configuration otherwise (also for no pileup)
152  activeBX.resize(5);
153  activeBX << -4,-2,0,2,4;
154  }
155  }
156 
157 }
158 
169  float ampli,
170  const std::vector<float>& amplitudeBins,
171  const std::vector<float>& shiftBins) {
172 
173  // computed initially in ns. Than turned in the BX's, as
174  // EcalUncalibratedRecHit need be.
175  double theCorrection = 0;
176 
177  // sanity check for arrays
178  if (amplitudeBins.size() == 0) {
179  edm::LogError("EcalRecHitError")
180  << "timeCorrAmplitudeBins is empty, forcing no time bias corrections.";
181 
182  return 0;
183  }
184 
185  if (amplitudeBins.size() != shiftBins.size()) {
186  edm::LogError("EcalRecHitError")
187  << "Size of timeCorrAmplitudeBins different from "
188  "timeCorrShiftBins. Forcing no time bias corrections. ";
189 
190  return 0;
191  }
192 
193  int myBin = -1;
194  for (int bin = 0; bin < (int) amplitudeBins.size(); bin++) {
195  if (ampli > amplitudeBins.at(bin)) {
196  myBin = bin;
197  } else {
198  break;
199  }
200  }
201 
202  if (myBin == -1) {
203  theCorrection = shiftBins.at(0);
204  } else if (myBin == ((int)(amplitudeBins.size() - 1))) {
205  theCorrection = shiftBins.at(myBin);
206  } else if (-1 < myBin && myBin < ((int) amplitudeBins.size() - 1)) {
207  // interpolate linearly between two assingned points
208  theCorrection = (shiftBins.at(myBin + 1) - shiftBins.at(myBin));
209  theCorrection *= (((double) ampli) - amplitudeBins.at(myBin)) /
210  (amplitudeBins.at(myBin + 1) - amplitudeBins.at(myBin));
211  theCorrection += shiftBins.at(myBin);
212  } else {
213  edm::LogError("EcalRecHitError")
214  << "Assigning time correction impossible. Setting it to 0 ";
215  theCorrection = 0.;
216  }
217 
218  // convert ns into clocks
219  return theCorrection / 25.;
220 }
221 
222 
223 
224 bool
228 {
229  DetId detid(itdg->id());
230 
231  const EcalSampleMask *sampleMask_ = sampleMaskHand_.product();
232 
233  // intelligence for recHit computation
234  EcalUncalibratedRecHit uncalibRecHit;
235  float offsetTime = 0;
236 
237  const EcalPedestals::Item * aped = 0;
238  const EcalMGPAGainRatio * aGain = 0;
239  const EcalXtalGroupId * gid = 0;
240  const EcalPulseShapes::Item * aPulse = 0;
241  const EcalPulseCovariances::Item * aPulseCov = 0;
242 
243  if (detid.subdetId()==EcalEndcap) {
244  unsigned int hashedIndex = EEDetId(detid).hashedIndex();
245  aped = &peds->endcap(hashedIndex);
246  aGain = &gains->endcap(hashedIndex);
247  gid = &grps->endcap(hashedIndex);
248  aPulse = &pulseshapes->endcap(hashedIndex);
249  aPulseCov = &pulsecovariances->endcap(hashedIndex);
252  offsetTime = offtime->getEEValue();
253  } else {
254  unsigned int hashedIndex = EBDetId(detid).hashedIndex();
255  aped = &peds->barrel(hashedIndex);
256  aGain = &gains->barrel(hashedIndex);
257  gid = &grps->barrel(hashedIndex);
258  aPulse = &pulseshapes->barrel(hashedIndex);
259  aPulseCov = &pulsecovariances->barrel(hashedIndex);
262  offsetTime = offtime->getEBValue();
263  }
264 
265  pedVec[0] = aped->mean_x12;
266  pedVec[1] = aped->mean_x6;
267  pedVec[2] = aped->mean_x1;
268  pedRMSVec[0] = aped->rms_x12;
269  pedRMSVec[1] = aped->rms_x6;
270  pedRMSVec[2] = aped->rms_x1;
271  gainRatios[0] = 1.;
272  gainRatios[1] = aGain->gain12Over6();
273  gainRatios[2] = aGain->gain6Over1()*aGain->gain12Over6();
274 
275  int nnoise = noisecovariances->EBG12SamplesCorrelation.size();
276  for (int i=0; i<nnoise; ++i) {
277  for (int j=0; j<nnoise; ++j) {
278  int vidx = std::abs(j-i);
279  noisecorEBg12(i,j) = noisecovariances->EBG12SamplesCorrelation[vidx];
280  noisecorEEg12(i,j) = noisecovariances->EEG12SamplesCorrelation[vidx];
281  noisecorEBg6(i,j) = noisecovariances->EBG6SamplesCorrelation[vidx];
282  noisecorEEg6(i,j) = noisecovariances->EEG6SamplesCorrelation[vidx];
283  noisecorEBg1(i,j) = noisecovariances->EBG1SamplesCorrelation[vidx];
284  noisecorEEg1(i,j) = noisecovariances->EEG1SamplesCorrelation[vidx];
285  }
286  }
287 
288  for (int i=0; i<EcalPulseShape::TEMPLATESAMPLES; ++i) {
289  fullpulseEB(i+7) = aPulse->pdfval[i];
290  fullpulseEE(i+7) = aPulse->pdfval[i];
291  }
292 
293  for(int k=0; k<std::pow(EcalPulseShape::TEMPLATESAMPLES,2); ++k) {
296  fullpulsecovEB(i+7,j+7) = aPulseCov->covval[i][j];
297  fullpulsecovEE(i+7,j+7) = aPulseCov->covval[i][j];
298  }
299 
300  // compute the right bin of the pulse shape using time calibration constants
302  EcalTimeCalibConstant itimeconst = 0;
303  if( it != itime->end() ) {
304  itimeconst = (*it);
305  } else {
306  edm::LogError("EcalRecHitError") << "No time intercalib const found for xtal "
307  << detid.rawId()
308  << "! something wrong with EcalTimeCalibConstants in your DB? ";
309  }
310 
311  // === amplitude computation ===
312  int leadingSample = ((EcalDataFrame)(*itdg)).lastUnsaturatedSample();
313 
314  if ( leadingSample == 4 ) { // saturation on the expected max sample
315  uncalibRecHit = EcalUncalibratedRecHit( (*itdg).id(), 4095*12, 0, 0, 0);
317  // do not propagate the default chi2 = -1 value to the calib rechit (mapped to 64), set it to 0 when saturation
318  uncalibRecHit.setChi2(0);
319  } else if ( leadingSample >= 0 ) { // saturation on other samples: cannot extrapolate from the fourth one
320  double pedestal = 0.;
321  double gainratio = 1.;
322  int gainId = ((EcalDataFrame)(*itdg)).sample(5).gainId();
323 
324  if (gainId==0 || gainId==3) {
325  pedestal = aped->mean_x1;
326  gainratio = aGain->gain6Over1()*aGain->gain12Over6();
327  }
328  else if (gainId==1) {
329  pedestal = aped->mean_x12;
330  gainratio = 1.;
331  }
332  else if (gainId==2) {
333  pedestal = aped->mean_x6;
334  gainratio = aGain->gain12Over6();
335  }
336  double amplitude = ((double)(((EcalDataFrame)(*itdg)).sample(5).adc()) - pedestal) * gainratio;
337  uncalibRecHit = EcalUncalibratedRecHit( (*itdg).id(), amplitude, 0, 0, 0);
339  // do not propagate the default chi2 = -1 value to the calib rechit (mapped to 64), set it to 0 when saturation
340  uncalibRecHit.setChi2(0);
341  } else {
342  // multifit
343  bool barrel = detid.subdetId()==EcalBarrel;
344  int gain = 12;
345  if (((EcalDataFrame)(*itdg)).hasSwitchToGain6()) {
346  gain = 6;
347  }
348  if (((EcalDataFrame)(*itdg)).hasSwitchToGain1()) {
349  gain = 1;
350  }
351  const SampleMatrix &noisecormat = noisecor(barrel,gain);
352  const FullSampleVector &fullpulse = barrel ? fullpulseEB : fullpulseEE;
353  const FullSampleMatrix &fullpulsecov = barrel ? fullpulsecovEB : fullpulsecovEE;
354 
355  uncalibRecHit = multiFitMethod_.makeRecHit(*itdg, aped, aGain, noisecormat,fullpulse,fullpulsecov,activeBX);
356 
357  // === time computation ===
358  if(timealgo_.compare("RatioMethod")==0) {
359  // ratio method
360  float const clockToNsConstant = 25.;
361  if (detid.subdetId()==EcalEndcap) {
362  ratioMethod_endcap_.init( *itdg, *sampleMask_, pedVec, pedRMSVec, gainRatios );
366  double theTimeCorrectionEE = timeCorrection(uncalibRecHit.amplitude(),
367  timeCorrBias_->EETimeCorrAmplitudeBins, timeCorrBias_->EETimeCorrShiftBins);
368 
369  uncalibRecHit.setJitter( crh.timeMax - 5 + theTimeCorrectionEE);
370  uncalibRecHit.setJitterError( std::sqrt(pow(crh.timeError,2) + std::pow(EEtimeConstantTerm_,2)/std::pow(clockToNsConstant,2)) );
371 
372  // consider flagging as kOutOfTime only if above noise
373  if (uncalibRecHit.amplitude() > pedRMSVec[0] * amplitudeThreshEE_){
374  float outOfTimeThreshP = outOfTimeThreshG12pEE_;
375  float outOfTimeThreshM = outOfTimeThreshG12mEE_;
376  // determine if gain has switched away from gainId==1 (x12 gain)
377  // and determine cuts (number of 'sigmas') to ose for kOutOfTime
378  // >3k ADC is necessasry condition for gain switch to occur
379  if (uncalibRecHit.amplitude() > 3000.){
380  for (int iSample = 0; iSample < EEDataFrame::MAXSAMPLES; iSample++) {
381  int GainId = ((EcalDataFrame)(*itdg)).sample(iSample).gainId();
382  if (GainId!=1) {
383  outOfTimeThreshP = outOfTimeThreshG61pEE_;
384  outOfTimeThreshM = outOfTimeThreshG61mEE_;
385  break;
386  }
387  }}
388  float correctedTime = (crh.timeMax-5) * clockToNsConstant + itimeconst + offsetTime;
389  float cterm = EEtimeConstantTerm_;
390  float sigmaped = pedRMSVec[0]; // approx for lower gains
391  float nterm = EEtimeNconst_*sigmaped/uncalibRecHit.amplitude();
392  float sigmat = std::sqrt( nterm*nterm + cterm*cterm );
393  if ( ( correctedTime > sigmat*outOfTimeThreshP ) ||
394  ( correctedTime < (-1.*sigmat*outOfTimeThreshM) ))
395  { uncalibRecHit.setFlagBit( EcalUncalibratedRecHit::kOutOfTime ); }
396  }
397 
398  } else {
399  ratioMethod_barrel_.init( *itdg, *sampleMask_, pedVec, pedRMSVec, gainRatios );
404 
405  double theTimeCorrectionEB = timeCorrection(uncalibRecHit.amplitude(),
406  timeCorrBias_->EBTimeCorrAmplitudeBins, timeCorrBias_->EBTimeCorrShiftBins);
407 
408  uncalibRecHit.setJitter( crh.timeMax - 5 + theTimeCorrectionEB);
409  uncalibRecHit.setJitterError( std::sqrt(std::pow(crh.timeError,2) + std::pow(EBtimeConstantTerm_,2)/std::pow(clockToNsConstant,2)) );
410 
411  // consider flagging as kOutOfTime only if above noise
412  if (uncalibRecHit.amplitude() > pedRMSVec[0] * amplitudeThreshEB_){
413  float outOfTimeThreshP = outOfTimeThreshG12pEB_;
414  float outOfTimeThreshM = outOfTimeThreshG12mEB_;
415  // determine if gain has switched away from gainId==1 (x12 gain)
416  // and determine cuts (number of 'sigmas') to ose for kOutOfTime
417  // >3k ADC is necessasry condition for gain switch to occur
418  if (uncalibRecHit.amplitude() > 3000.){
419  for (int iSample = 0; iSample < EBDataFrame::MAXSAMPLES; iSample++) {
420  int GainId = ((EcalDataFrame)(*itdg)).sample(iSample).gainId();
421  if (GainId!=1) {
422  outOfTimeThreshP = outOfTimeThreshG61pEB_;
423  outOfTimeThreshM = outOfTimeThreshG61mEB_;
424  break;}
425  } }
426  float correctedTime = (crh.timeMax-5) * clockToNsConstant + itimeconst + offsetTime;
427  float cterm = EBtimeConstantTerm_;
428  float sigmaped = pedRMSVec[0]; // approx for lower gains
429  float nterm = EBtimeNconst_*sigmaped/uncalibRecHit.amplitude();
430  float sigmat = std::sqrt( nterm*nterm + cterm*cterm );
431  if ( ( correctedTime > sigmat*outOfTimeThreshP ) ||
432  ( correctedTime < (-1.*sigmat*outOfTimeThreshM) ))
433  { uncalibRecHit.setFlagBit( EcalUncalibratedRecHit::kOutOfTime ); }
434  }
435 
436  }
437  } else if(timealgo_.compare("WeightsMethod")==0) {
438  // weights method on the PU subtracted pulse shape
439  std::vector<double> amplitudes;
440  for(unsigned int ibx=0; ibx<activeBX.size(); ++ibx) amplitudes.push_back(uncalibRecHit.outOfTimeAmplitude(ibx));
441 
442  EcalTBWeights::EcalTDCId tdcid(1);
443  EcalTBWeights::EcalTBWeightMap const & wgtsMap = wgts->getMap();
444  EcalTBWeights::EcalTBWeightMap::const_iterator wit;
445  wit = wgtsMap.find( std::make_pair(*gid,tdcid) );
446  if( wit == wgtsMap.end() ) {
447  edm::LogError("EcalUncalibRecHitError") << "No weights found for EcalGroupId: "
448  << gid->id() << " and EcalTDCId: " << tdcid
449  << "\n skipping digi with id: " << detid.rawId();
450 
451  return false;
452  }
453  const EcalWeightSet& wset = wit->second; // this is the EcalWeightSet
454 
457 
458  weights[0] = &mat1;
459  weights[1] = &mat2;
460 
461  double timerh;
462  if (detid.subdetId()==EcalEndcap) {
463  timerh = weightsMethod_endcap_.time( *itdg, amplitudes, aped, aGain, fullpulse, weights);
464  } else {
465  timerh = weightsMethod_barrel_.time( *itdg, amplitudes, aped, aGain, fullpulse, weights);
466  }
467  uncalibRecHit.setJitter( timerh );
468  uncalibRecHit.setJitterError( 0. ); // not computed with weights
469  } else if(timealgo_.compare("None")==0) {
470  uncalibRecHit.setJitter( 0. );
471  uncalibRecHit.setJitterError( 0. );
472  } else {
473  edm::LogError("EcalUncalibRecHitError") << "No time estimation algorithm called "
474  << timealgo_
475  << "\n setting jitter to 0. and jitter uncertainty to 10000. ";
476 
477  uncalibRecHit.setJitter( 0. );
478  uncalibRecHit.setJitterError( 10000. );
479  }
480  }
481 
482  // set flags if gain switch has occurred
483  if( ((EcalDataFrame)(*itdg)).hasSwitchToGain6() ) uncalibRecHit.setFlagBit( EcalUncalibratedRecHit::kHasSwitchToGain6 );
484  if( ((EcalDataFrame)(*itdg)).hasSwitchToGain1() ) uncalibRecHit.setFlagBit( EcalUncalibratedRecHit::kHasSwitchToGain1 );
485 
486  // set quality flags based on chi2 of the the fit
487  /*
488  if(detid.subdetId()==EcalEndcap) {
489  if(kPoorRecoFlagEE_ && uncalibRecHit.chi2()>chi2ThreshEE_) {
490  bool samplesok = true;
491  for (int sample =0; sample < EcalDataFrame::MAXSAMPLES; ++sample) {
492  if (!sampleMask_->useSampleEE(sample)) {
493  samplesok = false;
494  break;
495  }
496  }
497  if (samplesok) uncalibRecHit.setFlagBit(EcalUncalibratedRecHit::kPoorReco);
498  }
499  } else {
500  if(kPoorRecoFlagEB_ && uncalibRecHit.chi2()>chi2ThreshEB_) {
501  bool samplesok = true;
502  for (int sample =0; sample < EcalDataFrame::MAXSAMPLES; ++sample) {
503  if (!sampleMask_->useSampleEB(sample)) {
504  samplesok = false;
505  break;
506  }
507  }
508  if (samplesok) uncalibRecHit.setFlagBit(EcalUncalibratedRecHit::kPoorReco);
509  }
510  }
511  */
512 
513  // put the recHit in the collection
514  if (detid.subdetId()==EcalEndcap) {
515  result.push_back( uncalibRecHit );
516  } else {
517  result.push_back( uncalibRecHit );
518  }
519 
520  return true;
521 }
522 
523 
525  if (barrel) {
526  if (gain==6) {
527  return noisecorEBg6;
528  }
529  else if (gain==1) {
530  return noisecorEBg1;
531  }
532  else {
533  return noisecorEBg12;
534  }
535  }
536  else {
537  if (gain==6) {
538  return noisecorEEg6;
539  }
540  else if (gain==1) {
541  return noisecorEEg1;
542  }
543  else {
544  return noisecorEEg12;
545  }
546  }
547 
548  return noisecorEBg12;
549 
550 }
551 
554 
556  psd0.addNode((edm::ParameterDescription<std::vector<double>>("EBPulseShapeTemplate", {1.13979e-02, 7.58151e-01, 1.00000e+00, 8.87744e-01, 6.73548e-01, 4.74332e-01, 3.19561e-01, 2.15144e-01, 1.47464e-01, 1.01087e-01, 6.93181e-02, 4.75044e-02}, true) and
557  edm::ParameterDescription<std::vector<double>>("EEPulseShapeTemplate", {1.16442e-01, 7.56246e-01, 1.00000e+00, 8.97182e-01, 6.86831e-01, 4.91506e-01, 3.44111e-01, 2.45731e-01, 1.74115e-01, 1.23361e-01, 8.74288e-02, 6.19570e-02}, true)));
558 
559  psd0.addNode((edm::ParameterDescription<std::string>("EEdigiCollection", "", true) and
560  edm::ParameterDescription<std::string>("EBdigiCollection", "", true) and
561  edm::ParameterDescription<std::string>("ESdigiCollection", "", true) and
562  edm::ParameterDescription<bool>("UseLCcorrection", true, false) and
563  edm::ParameterDescription<std::vector<double>>("EBCorrNoiseMatrixG12", {1.00000, 0.71073, 0.55721, 0.46089, 0.40449, 0.35931, 0.33924, 0.32439, 0.31581, 0.30481 }, true) and
564  edm::ParameterDescription<std::vector<double>>("EECorrNoiseMatrixG12", {1.00000, 0.71373, 0.44825, 0.30152, 0.21609, 0.14786, 0.11772, 0.10165, 0.09465, 0.08098 }, true) and
565  edm::ParameterDescription<std::vector<double>>("EBCorrNoiseMatrixG06", {1.00000, 0.70946, 0.58021, 0.49846, 0.45006, 0.41366, 0.39699, 0.38478, 0.37847, 0.37055 }, true) and
566  edm::ParameterDescription<std::vector<double>>("EECorrNoiseMatrixG06", {1.00000, 0.71217, 0.47464, 0.34056, 0.26282, 0.20287, 0.17734, 0.16256, 0.15618, 0.14443 }, true) and
567  edm::ParameterDescription<std::vector<double>>("EBCorrNoiseMatrixG01", {1.00000, 0.73354, 0.64442, 0.58851, 0.55425, 0.53082, 0.51916, 0.51097, 0.50732, 0.50409 }, true) and
568  edm::ParameterDescription<std::vector<double>>("EECorrNoiseMatrixG01", {1.00000, 0.72698, 0.62048, 0.55691, 0.51848, 0.49147, 0.47813, 0.47007, 0.46621, 0.46265 }, true) and
569  edm::ParameterDescription<bool>("EcalPreMixStage1", false, true) and
570  edm::ParameterDescription<bool>("EcalPreMixStage2", false, true)));
571 
572  psd0.addOptionalNode((edm::ParameterDescription<std::vector<double>>("EBPulseShapeCovariance", {3.001e-06, 1.233e-05, 0.000e+00, -4.416e-06, -4.571e-06, -3.614e-06, -2.636e-06, -1.286e-06, -8.410e-07, -5.296e-07, 0.000e+00, 0.000e+00,
573  1.233e-05, 6.154e-05, 0.000e+00, -2.200e-05, -2.309e-05, -1.838e-05, -1.373e-05, -7.334e-06, -5.088e-06, -3.745e-06, -2.428e-06, 0.000e+00,
574  0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00,
575  -4.416e-06, -2.200e-05, 0.000e+00, 8.319e-06, 8.545e-06, 6.792e-06, 5.059e-06, 2.678e-06, 1.816e-06, 1.223e-06, 8.245e-07, 5.589e-07,
576  -4.571e-06, -2.309e-05, 0.000e+00, 8.545e-06, 9.182e-06, 7.219e-06, 5.388e-06, 2.853e-06, 1.944e-06, 1.324e-06, 9.083e-07, 6.335e-07,
577  -3.614e-06, -1.838e-05, 0.000e+00, 6.792e-06, 7.219e-06, 6.016e-06, 4.437e-06, 2.385e-06, 1.636e-06, 1.118e-06, 7.754e-07, 5.556e-07,
578  -2.636e-06, -1.373e-05, 0.000e+00, 5.059e-06, 5.388e-06, 4.437e-06, 3.602e-06, 1.917e-06, 1.322e-06, 9.079e-07, 6.529e-07, 4.752e-07,
579  -1.286e-06, -7.334e-06, 0.000e+00, 2.678e-06, 2.853e-06, 2.385e-06, 1.917e-06, 1.375e-06, 9.100e-07, 6.455e-07, 4.693e-07, 3.657e-07,
580  -8.410e-07, -5.088e-06, 0.000e+00, 1.816e-06, 1.944e-06, 1.636e-06, 1.322e-06, 9.100e-07, 9.115e-07, 6.062e-07, 4.436e-07, 3.422e-07,
581  -5.296e-07, -3.745e-06, 0.000e+00, 1.223e-06, 1.324e-06, 1.118e-06, 9.079e-07, 6.455e-07, 6.062e-07, 7.217e-07, 4.862e-07, 3.768e-07,
582  0.000e+00, -2.428e-06, 0.000e+00, 8.245e-07, 9.083e-07, 7.754e-07, 6.529e-07, 4.693e-07, 4.436e-07, 4.862e-07, 6.509e-07, 4.418e-07,
583  0.000e+00, 0.000e+00, 0.000e+00, 5.589e-07, 6.335e-07, 5.556e-07, 4.752e-07, 3.657e-07, 3.422e-07, 3.768e-07, 4.418e-07, 6.142e-07}, true) and
584  edm::ParameterDescription<std::vector<double>>("EEPulseShapeCovariance", {3.941e-05, 3.333e-05, 0.000e+00, -1.449e-05, -1.661e-05, -1.424e-05, -1.183e-05, -6.842e-06, -4.915e-06, -3.411e-06, 0.000e+00, 0.000e+00,
585  3.333e-05, 2.862e-05, 0.000e+00, -1.244e-05, -1.431e-05, -1.233e-05, -1.032e-05, -5.883e-06, -4.154e-06, -2.902e-06, -2.128e-06, 0.000e+00,
586  0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00, 0.000e+00,
587  -1.449e-05, -1.244e-05, 0.000e+00, 5.840e-06, 6.649e-06, 5.720e-06, 4.812e-06, 2.708e-06, 1.869e-06, 1.330e-06, 9.186e-07, 6.446e-07,
588  -1.661e-05, -1.431e-05, 0.000e+00, 6.649e-06, 7.966e-06, 6.898e-06, 5.794e-06, 3.157e-06, 2.184e-06, 1.567e-06, 1.084e-06, 7.575e-07,
589  -1.424e-05, -1.233e-05, 0.000e+00, 5.720e-06, 6.898e-06, 6.341e-06, 5.347e-06, 2.859e-06, 1.991e-06, 1.431e-06, 9.839e-07, 6.886e-07,
590  -1.183e-05, -1.032e-05, 0.000e+00, 4.812e-06, 5.794e-06, 5.347e-06, 4.854e-06, 2.628e-06, 1.809e-06, 1.289e-06, 9.020e-07, 6.146e-07,
591  -6.842e-06, -5.883e-06, 0.000e+00, 2.708e-06, 3.157e-06, 2.859e-06, 2.628e-06, 1.863e-06, 1.296e-06, 8.882e-07, 6.108e-07, 4.283e-07,
592  -4.915e-06, -4.154e-06, 0.000e+00, 1.869e-06, 2.184e-06, 1.991e-06, 1.809e-06, 1.296e-06, 1.217e-06, 8.669e-07, 5.751e-07, 3.882e-07,
593  -3.411e-06, -2.902e-06, 0.000e+00, 1.330e-06, 1.567e-06, 1.431e-06, 1.289e-06, 8.882e-07, 8.669e-07, 9.522e-07, 6.717e-07, 4.293e-07,
594  0.000e+00, -2.128e-06, 0.000e+00, 9.186e-07, 1.084e-06, 9.839e-07, 9.020e-07, 6.108e-07, 5.751e-07, 6.717e-07, 7.911e-07, 5.493e-07,
595  0.000e+00, 0.000e+00, 0.000e+00, 6.446e-07, 7.575e-07, 6.886e-07, 6.146e-07, 4.283e-07, 3.882e-07, 4.293e-07, 5.493e-07, 7.027e-07}, true)), true);
596 
598  psd.addNode(edm::ParameterDescription<std::vector<int>>("activeBXs", {-5,-4,-3,-2,-1,0,1,2,3,4}, true) and
599  edm::ParameterDescription<bool>("ampErrorCalculation", true, true) and
600  edm::ParameterDescription<bool>("useLumiInfoRunHeader", true, true) and
601  edm::ParameterDescription<int>("bunchSpacing", 0, true) and
602  edm::ParameterDescription<bool>("doPrefitEB", false, true) and
603  edm::ParameterDescription<bool>("doPrefitEE", false, true) and
604  edm::ParameterDescription<double>("prefitMaxChiSqEB", 25., true) and
605  edm::ParameterDescription<double>("prefitMaxChiSqEE", 10., true) and
606  edm::ParameterDescription<std::string>("timealgo", "RatioMethod", true) and
607  edm::ParameterDescription<std::vector<double>>("EBtimeFitParameters", {-2.015452e+00, 3.130702e+00, -1.234730e+01, 4.188921e+01, -8.283944e+01, 9.101147e+01, -5.035761e+01, 1.105621e+01}, true) and
608  edm::ParameterDescription<std::vector<double>>("EEtimeFitParameters", {-2.390548e+00, 3.553628e+00, -1.762341e+01, 6.767538e+01, -1.332130e+02, 1.407432e+02, -7.541106e+01, 1.620277e+01}, true) and
609  edm::ParameterDescription<std::vector<double>>("EBamplitudeFitParameters", {1.138,1.652}, true) and
610  edm::ParameterDescription<std::vector<double>>("EEamplitudeFitParameters", {1.890,1.400}, true) and
611  edm::ParameterDescription<double>("EBtimeFitLimits_Lower", 0.2, true) and
612  edm::ParameterDescription<double>("EBtimeFitLimits_Upper", 1.4, true) and
613  edm::ParameterDescription<double>("EEtimeFitLimits_Lower", 0.2, true) and
614  edm::ParameterDescription<double>("EEtimeFitLimits_Upper", 1.4, true) and
615  edm::ParameterDescription<double>("EBtimeConstantTerm", .6, true) and
616  edm::ParameterDescription<double>("EEtimeConstantTerm", 1.0, true) and
617  edm::ParameterDescription<double>("EBtimeNconst", 28.5, true) and
618  edm::ParameterDescription<double>("EEtimeNconst", 31.8, true) and
619  edm::ParameterDescription<double>("outOfTimeThresholdGain12pEB", 5, true) and
620  edm::ParameterDescription<double>("outOfTimeThresholdGain12mEB", 5, true) and
621  edm::ParameterDescription<double>("outOfTimeThresholdGain61pEB", 5, true) and
622  edm::ParameterDescription<double>("outOfTimeThresholdGain61mEB", 5, true) and
623  edm::ParameterDescription<double>("outOfTimeThresholdGain12pEE", 1000, true) and
624  edm::ParameterDescription<double>("outOfTimeThresholdGain12mEE", 1000, true) and
625  edm::ParameterDescription<double>("outOfTimeThresholdGain61pEE", 1000, true) and
626  edm::ParameterDescription<double>("outOfTimeThresholdGain61mEE", 1000, true) and
627  edm::ParameterDescription<double>("amplitudeThresholdEB", 10, true) and
628  edm::ParameterDescription<double>("amplitudeThresholdEE", 10, true) and
629  edm::ParameterDescription<double>("ebSpikeThreshold", 1.042, true) and
630  edm::ParameterDescription<std::vector<double>>("ebPulseShape", {5.2e-05,-5.26e-05 , 6.66e-05, 0.1168, 0.7575, 1., 0.8876, 0.6732, 0.4741, 0.3194}, true) and
631  edm::ParameterDescription<std::vector<double>>("eePulseShape", {5.2e-05,-5.26e-05 , 6.66e-05, 0.1168, 0.7575, 1., 0.8876, 0.6732, 0.4741, 0.3194}, true) and
632  edm::ParameterDescription<bool>("kPoorRecoFlagEB", true, true) and
633  edm::ParameterDescription<bool>("kPoorRecoFlagEE", false, true) and
634  edm::ParameterDescription<double>("chi2ThreshEB_", 65.0, true) and
635  edm::ParameterDescription<double>("chi2ThreshEE_", 50.0, true) and
636  edm::ParameterDescription<edm::ParameterSetDescription>("EcalPulseShapeParameters", psd0, true));
637 
638  return psd;
639 }
640 
641 
642 
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
std::map< std::pair< EcalXtalGroupId, EcalTDCId >, EcalWeightSet > EcalTBWeightMap
Definition: EcalTBWeights.h:21
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
int hashedIndex() const
get a compact index for arrays
Definition: EBDetId.h:86
void computeAmplitude(std::vector< double > &amplitudeFitParameters)
unsigned size(int bx) const
EcalUncalibRecHitMultiFitAlgo multiFitMethod_
boost::transform_iterator< IterHelp, boost::counting_iterator< int > > const_iterator
const SampleMatrix & noisecor(bool barrel, int gain) const
void setJitter(float jitter)
int gainId(sample_type sample)
get the gainId (2 bits)
EcalUncalibRecHitTimeWeightsAlgo< EEDataFrame > weightsMethod_endcap_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
double time(const C &dataFrame, const std::vector< double > &amplitudes, const EcalPedestals::Item *aped, const EcalMGPAGainRatio *aGain, const FullSampleVector &fullpulse, const EcalWeightSet::EcalWeightMatrix **weights)
Compute time.
EcalUncalibratedRecHit makeRecHit(const EcalDataFrame &dataFrame, const EcalPedestals::Item *aped, const EcalMGPAGainRatio *aGain, const SampleMatrix &noisecor, const FullSampleVector &fullpulse, const FullSampleMatrix &fullpulsecov, const BXVector &activeBX)
compute rechits
void computeTime(std::vector< double > &timeFitParameters, std::pair< double, double > &timeFitLimits, std::vector< double > &amplitudeFitParameters)
static const int TEMPLATESAMPLES
edm::ESHandle< EcalWeightXtalGroups > grps
void push_back(T const &t)
ParameterDescriptionNode * addNode(ParameterDescriptionNode const &node)
void setJitterError(float jitterErr)
Eigen::Matrix< double, 19, 19 > FullSampleMatrix
edm::EDGetTokenT< unsigned int > bunchSpacing_
EcalUncalibRecHitRatioMethodAlgo< EBDataFrame > ratioMethod_barrel_
const unsigned int id() const
bool run(const edm::Event &evt, const EcalDigiCollection::const_iterator &digi, EcalUncalibratedRecHitCollection &result) override
int hashedIndex(int ieta, int iphi)
Definition: EcalPyUtils.cc:42
float outOfTimeAmplitude(int bx) const
EcalUncalibRecHitRatioMethodAlgo< EEDataFrame > ratioMethod_endcap_
T sqrt(T t)
Definition: SSEVec.h:48
edm::ESHandle< EcalPulseShapes > pulseshapes
tuple result
Definition: query.py:137
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int j
Definition: DBlmapReader.cc:9
ParameterDescriptionNode * addOptionalNode(ParameterDescriptionNode const &node, bool writeToCfi)
edm::ESHandle< EcalTimeCalibConstants > itime
double timeCorrection(float ampli, const std::vector< float > &amplitudeBins, const std::vector< float > &shiftBins)
float gain6Over1() const
Eigen::Matrix< double, 19, 1 > FullSampleVector
EcalWeightMatrix & getWeightsAfterGainSwitch()
Definition: EcalWeightSet.h:30
float covval[EcalPulseShape::TEMPLATESAMPLES][EcalPulseShape::TEMPLATESAMPLES]
edm::ESHandle< EcalTimeBiasCorrections > timeCorrBias_
edm::ParameterSetDescription getAlgoDescription()
Definition: DetId.h:18
void set(const edm::EventSetup &es) override
edm::ESHandle< EcalPulseCovariances > pulsecovariances
int hashedIndex() const
Definition: EEDetId.h:182
EcalWeightMatrix & getWeightsBeforeGainSwitch()
Definition: EcalWeightSet.h:29
const T & get() const
Definition: EventSetup.h:56
std::vector< Item >::const_iterator const_iterator
void resize(int bx, unsigned size)
T const * product() const
Definition: ESHandle.h:86
float gain12Over6() const
EcalUncalibRecHitTimeWeightsAlgo< EBDataFrame > weightsMethod_barrel_
edm::ESHandle< EcalTimeOffsetConstant > offtime
float pdfval[TEMPLATESAMPLES]
float EcalTimeCalibConstant
math::Matrix< 3, 10 >::type EcalWeightMatrix
Definition: EcalWeightSet.h:22
#define DEFINE_EDM_PLUGIN(factory, type, name)
edm::ESHandle< EcalSampleMask > sampleMaskHand_
const EcalWeightSet::EcalWeightMatrix * weights[2]
edm::ESHandle< EcalSamplesCorrelation > noisecovariances
Eigen::Matrix< double, 10, 10 > SampleMatrix
void init(const C &dataFrame, const EcalSampleMask &sampleMask, const double *pedestals, const double *pedestalRMSes, const double *gainRatios)
static const int MAXSAMPLES
Definition: EcalDataFrame.h:48
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40