CMS 3D CMS Logo

HFSimpleTimeCheck.cc
Go to the documentation of this file.
1 #include <cstring>
2 #include <climits>
3 
5 
8 
9 // Phase 1 rechit status bit assignments
11 
12 namespace {
13  inline float build_rechit_time(const float weightedEnergySum,
14  const float weightedSum,
15  const float sum,
16  const unsigned count,
17  const float valueIfNothingWorks,
18  bool* resultComesFromTDC)
19  {
20  if (weightedEnergySum > 0.f)
21  {
22  *resultComesFromTDC = true;
23  return weightedSum/weightedEnergySum;
24  }
25  else if (count)
26  {
27  *resultComesFromTDC = true;
28  return sum/count;
29  }
30  else
31  {
32  *resultComesFromTDC = false;
33  return valueIfNothingWorks;
34  }
35  }
36 }
37 
38 
39 HFSimpleTimeCheck::HFSimpleTimeCheck(const std::pair<float,float> tlimits[2],
41  const unsigned i_soiPhase,
42  const float i_timeShift,
43  const float i_triseIfNoTDC,
44  const float i_tfallIfNoTDC,
45  const float i_minChargeForUndershoot,
46  const float i_minChargeForOvershoot,
47  const bool rejectAllFailures)
48  : soiPhase_(i_soiPhase),
49  timeShift_(i_timeShift),
50  triseIfNoTDC_(i_triseIfNoTDC),
51  tfallIfNoTDC_(i_tfallIfNoTDC),
52  minChargeForUndershoot_(i_minChargeForUndershoot),
53  minChargeForOvershoot_(i_minChargeForOvershoot),
54  rejectAllFailures_(rejectAllFailures)
55 {
56  tlimits_[0] = tlimits[0];
57  tlimits_[1] = tlimits[1];
58  float* to = &energyWeights_[0][0];
59  const float* from = &energyWeights[0][0];
60  memcpy(to, from, sizeof(energyWeights_));
61 }
62 
64  const unsigned ianode, const HFQIE10Info& anode, bool*) const
65 {
66  // Check if this anode has a dataframe error
67  if (!anode.isDataframeOK())
69 
70  // Check the time limits
71  float trise = anode.timeRising();
72  const bool timeIsKnown = !HcalSpecialTimes::isSpecial(trise);
73  trise += timeShift_;
74  if (timeIsKnown &&
75  tlimits_[ianode].first <= trise && trise <= tlimits_[ianode].second)
76  return HFAnodeStatus::OK;
77  else
79 }
80 
81 unsigned HFSimpleTimeCheck::mapStatusIntoIndex(const unsigned states[2]) const
82 {
83  unsigned eStates[2];
84  eStates[0] = states[0];
85  eStates[1] = states[1];
86  if (!rejectAllFailures_)
87  for (unsigned i=0; i<2; ++i)
88  if (eStates[i] == HFAnodeStatus::FAILED_TIMING ||
89  eStates[i] == HFAnodeStatus::FAILED_OTHER)
90  eStates[i] = HFAnodeStatus::OK;
91  if (eStates[0] == HFAnodeStatus::OK)
92  return eStates[1];
93  else if (eStates[1] == HFAnodeStatus::OK)
94  return HFAnodeStatus::N_POSSIBLE_STATES + eStates[0] - 1;
95  else
96  return UINT_MAX;
97 }
98 
100  const HcalCalibrations& /* calibs */,
101  const bool flaggedBadInDB[2],
102  const bool expectSingleAnodePMT)
103 {
104  HFRecHit rh;
105 
106  // Determine the status of each anode
108  if (expectSingleAnodePMT)
109  states[1] = HFAnodeStatus::NOT_DUAL;
110 
111  bool isTimingReliable[2] = {true, true};
112  for (unsigned ianode=0; ianode<2; ++ianode)
113  {
114  if (flaggedBadInDB[ianode])
115  states[ianode] = HFAnodeStatus::FLAGGED_BAD;
116  else
117  {
118  const HFQIE10Info* anodeInfo = prehit.getHFQIE10Info(ianode);
119  if (anodeInfo)
120  states[ianode] = determineAnodeStatus(ianode, *anodeInfo,
121  &isTimingReliable[ianode]);
122  }
123  }
124 
125  // Reconstruct energy and time
126  const unsigned lookupInd = mapStatusIntoIndex(states);
127  if (lookupInd != UINT_MAX)
128  {
129  // In this scope, at least one of states[i] is HFAnodeStatus::OK
130  // or was mapped into that status by "mapStatusIntoIndex" method
131  //
132  const float* weights = &energyWeights_[lookupInd][0];
133  float energy = 0.f, tfallWeightedEnergySum = 0.f, triseWeightedEnergySum = 0.f;
134  float tfallWeightedSum = 0.f, triseWeightedSum = 0.f;
135  float tfallSum = 0.f, triseSum = 0.f;
136  unsigned tfallCount = 0, triseCount = 0;
137 
138  for (unsigned ianode=0; ianode<2; ++ianode)
139  {
140  const HFQIE10Info* anodeInfo = prehit.getHFQIE10Info(ianode);
141  if (anodeInfo && weights[ianode] > 0.f)
142  {
143  const float weightedEnergy = weights[ianode]*anodeInfo->energy();
144  energy += weightedEnergy;
145 
146  if (isTimingReliable[ianode] &&
147  states[ianode] != HFAnodeStatus::FAILED_TIMING)
148  {
149  float trise = anodeInfo->timeRising();
150  if (!HcalSpecialTimes::isSpecial(trise))
151  {
152  trise += timeShift_;
153  triseSum += trise;
154  ++triseCount;
155  if (weightedEnergy > 0.f)
156  {
157  triseWeightedSum += trise*weightedEnergy;
158  triseWeightedEnergySum += weightedEnergy;
159  }
160  }
161 
162  float tfall = anodeInfo->timeFalling();
163  if (!HcalSpecialTimes::isSpecial(tfall))
164  {
165  tfall += timeShift_;
166  tfallSum += tfall;
167  ++tfallCount;
168  if (weightedEnergy > 0.f)
169  {
170  tfallWeightedSum += tfall*weightedEnergy;
171  tfallWeightedEnergySum += weightedEnergy;
172  }
173  }
174  }
175  }
176  }
177 
178  bool triseFromTDC = false;
179  const float trise = build_rechit_time(
180  triseWeightedEnergySum, triseWeightedSum, triseSum,
181  triseCount, triseIfNoTDC_, &triseFromTDC);
182 
183  bool tfallFromTDC = false;
184  const float tfall = build_rechit_time(
185  tfallWeightedEnergySum, tfallWeightedSum, tfallSum,
186  tfallCount, tfallIfNoTDC_, &tfallFromTDC);
187 
188  rh = HFRecHit(prehit.id(), energy, trise, tfall);
189  HFRecHitAuxSetter::setAux(prehit, states, soiPhase_, &rh);
190 
191  // Set the "timing from TDC" flag
192  const uint32_t flag = triseFromTDC ? 1U : 0U;
194  }
195 
196  return rh;
197 }
std::pair< float, float > tlimits_[2]
float timeRising() const
Definition: HFQIE10Info.h:72
bool isDataframeOK(bool checkAllTimeSlices=false) const
Definition: HFQIE10Info.h:86
virtual unsigned determineAnodeStatus(unsigned anodeNumber, const HFQIE10Info &anode, bool *isTimingReliable) const
constexpr void setFlagField(uint32_t value, int base, int width=1)
Definition: CaloRecHit.h:38
U second(std::pair< T, U > const &p)
HcalDetId id() const
Definition: HFPreRecHit.h:38
unsigned mapStatusIntoIndex(const unsigned states[2]) const
double f[11][100]
constexpr bool isSpecial(const float t)
float energy() const
Definition: HFQIE10Info.h:71
HFQIE10Info const * getHFQIE10Info(unsigned index) const
Definition: HFPreRecHit.h:43
HFRecHit reconstruct(const HFPreRecHit &prehit, const HcalCalibrations &calibs, const bool flaggedBadInDB[2], bool expectSingleAnodePMT) override
float energyWeights_[2 *HFAnodeStatus::N_POSSIBLE_STATES-1][2]
static void setAux(const HFPreRecHit &prehit, const unsigned anodeStates[2], unsigned soiPhase, HFRecHit *rechit)
float timeFalling() const
Definition: HFQIE10Info.h:73
HFSimpleTimeCheck(const std::pair< float, float > tlimits[2], const float energyWeights[2 *HFAnodeStatus::N_POSSIBLE_STATES-1][2], unsigned soiPhase, float timeShift, float triseIfNoTDC, float tfallIfNoTDC, float minChargeForUndershoot, float minChargeForOvershoot, bool rejectAllFailures=true)