CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
PixelDigitizerAlgorithm::TimewalkCurve Class Reference

Public Member Functions

double operator() (double x) const
 
 TimewalkCurve (const edm::ParameterSet &pset)
 

Private Attributes

std::vector< double > x_
 
std::vector< double > y_
 

Detailed Description

Definition at line 15 of file PixelDigitizerAlgorithm.h.

Constructor & Destructor Documentation

◆ TimewalkCurve()

PixelDigitizerAlgorithm::TimewalkCurve::TimewalkCurve ( const edm::ParameterSet pset)

Definition at line 195 of file PixelDigitizerAlgorithm.cc.

References x_, and y_.

196  : x_(pset.getParameter<std::vector<double>>("charge")), y_(pset.getParameter<std::vector<double>>("delay")) {
197  if (x_.size() != y_.size())
198  throw cms::Exception("Configuration")
199  << "Timewalk model error: the number of charge values does not match the number of delay values!";
200 }

Member Function Documentation

◆ operator()()

double PixelDigitizerAlgorithm::TimewalkCurve::operator() ( double  x) const

Definition at line 202 of file PixelDigitizerAlgorithm.cc.

References HLT_2023v12_cff::distance, pfDeepBoostedJetPreprocessParams_cfi::lower_bound, AlCaHLTBitMon_ParallelJobs::p, and x.

202  {
203  auto it = std::lower_bound(x_.begin(), x_.end(), x);
204  if (it == x_.begin())
205  return y_.front();
206  if (it == x_.end())
207  return y_.back();
208  int index = std::distance(x_.begin(), it);
209  double x_high = *it;
210  double x_low = *(--it);
211  double p = (x - x_low) / (x_high - x_low);
212  return p * y_[index] + (1 - p) * y_[index - 1];
213 }

Member Data Documentation

◆ x_

std::vector<double> PixelDigitizerAlgorithm::TimewalkCurve::x_
private

Definition at line 24 of file PixelDigitizerAlgorithm.h.

Referenced by TimewalkCurve().

◆ y_

std::vector<double> PixelDigitizerAlgorithm::TimewalkCurve::y_
private

Definition at line 25 of file PixelDigitizerAlgorithm.h.

Referenced by TimewalkCurve().