CMS 3D CMS Logo

CTPPSDiamondRecHitProducerAlgorithm.cc
Go to the documentation of this file.
1 /****************************************************************************
2 *
3 * This is a part of PPS offline software.
4 * Authors:
5 * Laurent Forthomme (laurent.forthomme@cern.ch)
6 *
7 ****************************************************************************/
8 
11 
12 //----------------------------------------------------------------------------------------------------
13 
15  : ts_to_ns_(iConfig.getParameter<double>("timeSliceNs")),
16  apply_calib_(iConfig.getParameter<bool>("applyCalibration")) {}
17 
19  calib_ = calib;
21 }
22 
26  for (const auto& vec : input) {
27  const CTPPSDiamondDetId detid(vec.detId());
28 
29  if (detid.channel() > MAX_CHANNEL) // VFAT-like information, to be ignored
30  continue;
31 
32  // retrieve the geometry element associated to this DetID
33  const DetGeomDesc* det = geom.sensor(detid);
34 
35  const float x_pos = det->translation().x(), y_pos = det->translation().y();
36  float z_pos = 0.;
37  z_pos = det->parentZPosition(); // retrieve the plane position;
38 
39  // parameters stand for half the size
40  const float x_width = 2.0 * det->params().at(0);
41  const float y_width = 2.0 * det->params().at(1);
42  const float z_width = 2.0 * det->params().at(2);
43 
44  // retrieve the timing calibration part for this channel
45  const int sector = detid.arm(), station = detid.station(), plane = detid.plane(), channel = detid.channel();
46  const auto& ch_params = (apply_calib_) ? calib_.parameters(sector, station, plane, channel) : std::vector<double>{};
47  // default values for offset + time precision if calibration object not found
48  const double ch_t_offset = (apply_calib_) ? calib_.timeOffset(sector, station, plane, channel) : 0.;
49  const double ch_t_precis = (apply_calib_) ? calib_.timePrecision(sector, station, plane, channel) : 0.;
50 
51  edm::DetSet<CTPPSDiamondRecHit>& rec_hits = output.find_or_insert(detid);
52 
53  for (const auto& digi : vec) {
54  const int t_lead = digi.leadingEdge(), t_trail = digi.trailingEdge();
55  // skip invalid digis
56  if (t_lead == 0 && t_trail == 0)
57  continue;
58 
59  double tot = -1., ch_t_twc = 0.;
60  if (t_lead != 0 && t_trail != 0) {
61  tot = (t_trail - t_lead) * ts_to_ns_; // in ns
62  if (calib_fct_ && apply_calib_) {
63  // compute the time-walk correction
64  ch_t_twc = calib_fct_->evaluate(std::vector<double>{tot}, ch_params);
65  if (edm::isNotFinite(ch_t_twc))
66  ch_t_twc = 0.;
67  }
68  }
69 
70  const int time_slice =
71  (t_lead != 0) ? (t_lead - ch_t_offset / ts_to_ns_) / 1024 : CTPPSDiamondRecHit::TIMESLICE_WITHOUT_LEADING;
72 
73  // calibrated time of arrival
74  const double t0 = (t_lead % 1024) * ts_to_ns_ - ch_t_twc;
75 
76  rec_hits.emplace_back(
77  // spatial information
78  x_pos,
79  x_width,
80  y_pos,
81  y_width,
82  z_pos,
83  z_width,
84  // timing information
85  t0,
86  tot,
87  ch_t_precis,
88  time_slice,
89  // readout information
90  digi.hptdcErrorFlags(),
91  digi.multipleHit());
92  }
93  }
94 }
Translation translation() const
Definition: DetGeomDesc.h:65
void build(const CTPPSGeometry &, const edm::DetSetVector< CTPPSDiamondDigi > &, edm::DetSetVector< CTPPSDiamondRecHit > &)
constexpr bool isNotFinite(T x)
Definition: isFinite.h:9
bool apply_calib_
Switch on/off the timing calibration.
const std::string & formula() const
double timeOffset(int key1, int key2, int key3, int key4=-1) const
static std::string const input
Definition: EdmProvDump.cc:48
reference find_or_insert(det_id_type id)
Definition: DetSetVector.h:234
std::vector< double > parameters(int key1, int key2, int key3, int key4) const
decltype(auto) emplace_back(Args &&...args)
Definition: DetSet.h:69
double ts_to_ns_
Conversion constant between HPTDC time slice and absolute time (in ns)
Geometrical description of a sensor.
Definition: DetGeomDesc.h:35
The manager class for TOTEM RP geometry.
Definition: CTPPSGeometry.h:33
const DetGeomDesc * sensor(unsigned int id) const
returns geometry of a detector performs necessary checks, returns NULL if fails
std::unique_ptr< reco::FormulaEvaluator > calib_fct_
float parentZPosition() const
Definition: DetGeomDesc.h:57
static constexpr int TIMESLICE_WITHOUT_LEADING
std::vector< double > params() const
Definition: DetGeomDesc.h:67
CTPPSDiamondRecHitProducerAlgorithm(const edm::ParameterSet &conf)
Detector ID class for CTPPS Timing Diamond detectors. Bits [19:31] : Assigend in CTPPSDetId Calss Bit...
double timePrecision(int key1, int key2, int key3, int key4=-1) const