CMS 3D CMS Logo

HFPreRecAlgo.cc
Go to the documentation of this file.
1 #include <algorithm>
2 
5 
8 
11 
13  const int tsToUse,
14  const HcalCoder& coder,
15  const HcalChannelProperties& properties) const {
16  // Scrap the trailing edge time for now -- until the front-end
17  // FPGA firmware is finalized and the description of the FPGA
18  // output becomes available
19  static const float timeFalling = HcalSpecialTimes::UNKNOWN_T_NOTDC;
20 
22 
24  coder.adc2fC(digi, cs);
25  const int nRead = cs.size();
26 
27  // Number of raw samples to store in HFQIE10Info
28  const int nStore = std::min(nRead, static_cast<int>(HFQIE10Info::N_RAW_MAX));
29 
30  if (sumAllTS_) {
31  // This branch is intended for use with cosmic runs
32  double charge = 0.0, energy = 0.0;
34 
35  for (int ts = 0; ts < nRead; ++ts) {
36  const QIE10DataFrame::Sample s(digi[ts]);
37  const int capid = s.capid();
38  const HcalPipelinePedestalAndGain& pAndGain(properties.pedsAndGains.at(capid));
39  const float q = cs[ts] - pAndGain.pedestal(false);
40  charge += q;
41  energy += q * pAndGain.gain();
42  if (ts < nStore)
43  raw[ts] = s.wideRaw();
44  }
45 
46  // Timing measurement does not appear to be useful here
47  const float timeRising = HcalSpecialTimes::UNKNOWN_T_NOTDC;
48 
49  // The following HFQIE10Info arguments correspond to SOI
50  // not stored in the raw data. Essentially, only charge
51  // and energy are meaningful.
52  result = HFQIE10Info(digi.id(), charge, energy, timeRising, timeFalling, raw, nStore, nStore);
53  } else if (0 <= tsToUse && tsToUse < nRead) {
54  const QIE10DataFrame::Sample s(digi[tsToUse]);
55  const int capid = s.capid();
56  const HcalPipelinePedestalAndGain& pAndGain(properties.pedsAndGains.at(capid));
57  const float charge = cs[tsToUse] - pAndGain.pedestal(false);
58  const float energy = charge * pAndGain.gain();
59  const float timeRising = HcalSpecialTimes::getTDCTime(s.le_tdc());
60 
61  // Figure out the window in the raw data
62  // that we want to store. This window will
63  // have the width given by "nStore" and
64  // will start at "shift".
65  int shift = 0;
66  if (nRead > static_cast<int>(HFQIE10Info::N_RAW_MAX)) {
67  // Try to center the window on "tsToUse"
68  const int winCenter = nStore / 2;
69  if (tsToUse > winCenter)
70  shift = tsToUse - winCenter;
71  if (shift + nStore > nRead)
72  shift = nRead - nStore;
73  }
74 
75  // Fill an array of raw values
77  for (int i = 0; i < nStore; ++i)
78  raw[i] = digi[i + shift].wideRaw();
79 
80  result = HFQIE10Info(digi.id(), charge, energy, timeRising, timeFalling, raw, nStore, tsToUse - shift);
81  }
82  return result;
83 }
constexpr edm::DataFrame::id_type id() const
std::array< HcalPipelinePedestalAndGain, 4 > pedsAndGains
constexpr float getTDCTime(const int tdc)
QIE10DataFrame::Sample::wide_type raw_type
Definition: HFQIE10Info.h:18
constexpr float UNKNOWN_T_NOTDC
virtual void adc2fC(const HBHEDataFrame &df, CaloSamples &lf) const =0
static unsigned int const shift
static const unsigned N_RAW_MAX
Definition: HFQIE10Info.h:20
HFQIE10Info reconstruct(const QIE10DataFrame &digi, int tsToUse, const HcalCoder &coder, const HcalChannelProperties &prop) const
Definition: HFPreRecAlgo.cc:12