CMS 3D CMS Logo

HGCalConcentratorSuperTriggerCellImpl.cc
Go to the documentation of this file.
2 
4  : fixedDataSizePerHGCROC_(conf.getParameter<bool>("fixedDataSizePerHGCROC")),
5  coarsenTriggerCells_(conf.getParameter<std::vector<unsigned>>("coarsenTriggerCells")),
6  coarseTCmapping_(conf.getParameter<std::vector<unsigned>>("ctcSize")),
7  superTCmapping_(conf.getParameter<std::vector<unsigned>>("stcSize")),
8  calibrationEE_(conf.getParameterSet("superTCCalibration_ee")),
9  calibrationHEsi_(conf.getParameterSet("superTCCalibration_hesi")),
10  calibrationHEsc_(conf.getParameterSet("superTCCalibration_hesc")),
11  calibrationNose_(conf.getParameterSet("superTCCalibration_nose")),
12  vfeCompression_(conf.getParameterSet("superTCCompression")) {
13  std::string energyType(conf.getParameter<string>("type_energy_division"));
14 
15  if (energyType == "superTriggerCell") {
17  } else if (energyType == "oneBitFraction") {
19 
20  oneBitFractionThreshold_ = conf.getParameter<double>("oneBitFractionThreshold");
21  oneBitFractionLowValue_ = conf.getParameter<double>("oneBitFractionLowValue");
22  oneBitFractionHighValue_ = conf.getParameter<double>("oneBitFractionHighValue");
23 
24  } else if (energyType == "equalShare") {
26 
27  } else {
29  }
30 }
31 
33  uint32_t code(0);
34  uint64_t compressed_value(0);
35  vfeCompression_.compressSingle(stc.getSumHwPt(), code, compressed_value);
36 
37  if (compressed_value > std::numeric_limits<uint32_t>::max())
38  edm::LogWarning("CompressedValueDowncasting") << "Compressed value cannot fit into 32-bit word. Downcasting.";
39 
40  return static_cast<uint32_t>(compressed_value);
41 }
42 
44  std::unordered_map<unsigned, SuperTriggerCell>& STCs, std::vector<l1t::HGCalTriggerCell>& trigCellVecOutput) const {
45  for (auto& s : STCs) {
46  std::vector<uint32_t> output_ids = superTCmapping_.getConstituentTriggerCells(s.second.getSTCId());
47  if (output_ids.empty())
48  continue;
49 
51  int thickness = (!output_ids.empty() ? triggerTools_.thicknessIndex(output_ids.at(0)) : 0);
52 
53  for (const auto& id : output_ids) {
56  continue;
57  }
58 
60  continue;
61  }
62 
63  l1t::HGCalTriggerCell triggerCell;
64  triggerCell.setDetId(id);
65  if (energyDivisionType_ == superTriggerCell && id != s.second.getMaxId()) {
66  continue;
67  }
68 
69  DetId tc_Id(id);
70 
71  if (superTCmapping_.getCoarseTriggerCellId(id) != s.second.getSTCId()) {
72  throw cms::Exception("NonExistingCoarseTC")
73  << "The coarse trigger cell correponsing to the nominal trigger cell does not exist";
74  }
75  trigCellVecOutput.push_back(triggerCell);
76  if (energyDivisionType_ == oneBitFraction) { //Get the 1 bit fractions
77 
78  if (id != s.second.getMaxId()) {
79  float tc_fraction = getTriggerCellOneBitFraction(s.second.getTCpt(id), s.second.getSumPt());
80  s.second.addToFractionSum(tc_fraction);
81  }
82  }
83  }
84  }
85  // assign energy
86  for (l1t::HGCalTriggerCell& tc : trigCellVecOutput) {
87  const auto& stc = STCs[superTCmapping_.getCoarseTriggerCellId(tc.detId())];
89  }
90 }
91 
93  const SuperTriggerCell& stc) const {
94  //Compress and recalibrate STC energy
95  uint32_t compressed_value = getCompressedSTCEnergy(stc);
96 
98  int thickness = triggerTools_.thicknessIndex(c.detId());
99 
100  bool isSilicon = triggerTools_.isSilicon(c.detId());
101  bool isEM = triggerTools_.isEm(c.detId());
102  bool isNose = triggerTools_.isNose(c.detId());
103 
107  } else {
108  point = triggerTools_.getTCPosition(c.detId());
109  }
110  c.setPosition(point);
111 
112  math::PtEtaPhiMLorentzVector p4(c.pt(), point.eta(), point.phi(), 0.);
113  c.setP4(p4);
114 
116  if (c.detId() == stc.getMaxId()) {
117  c.setHwPt(compressed_value);
118  } else {
119  throw cms::Exception("NonMaxIdSuperTriggerCell")
120  << "Trigger Cell with detId not equal to the maximum of the superTriggerCell found";
121  }
122  } else if (energyDivisionType_ == equalShare) {
123  double coarseTriggerCellSize =
124  coarsenTriggerCells_[subdet]
125  ? double(
127  .size())
128  : 1.;
129 
130  double denominator =
132  ? double(kTriggerCellsForDivision_)
133  : double(superTCmapping_.getConstituentTriggerCells(stc.getSTCId()).size()) / coarseTriggerCellSize;
134 
135  c.setHwPt(std::round(compressed_value / denominator));
136 
137  } else if (energyDivisionType_ == oneBitFraction) {
138  double frac = 0;
139 
140  if (c.detId() != stc.getMaxId()) {
141  frac = getTriggerCellOneBitFraction(stc.getTCpt(c.detId()), stc.getSumPt());
142  } else {
143  frac = 1 - stc.getFractionSum();
144  }
145 
146  c.setHwPt(std::round(compressed_value * frac));
147  }
148  // calibration
149  if (isNose) {
151  } else if (isSilicon) {
152  if (isEM) {
154  } else {
156  }
157  } else {
159  }
160 }
161 
163  double f = tcPt / sumPt;
164  double frac = 0;
165  if (f < oneBitFractionThreshold_) {
167  } else {
169  }
170 
171  return frac;
172 }
173 
174 void HGCalConcentratorSuperTriggerCellImpl::select(const std::vector<l1t::HGCalTriggerCell>& trigCellVecInput,
175  std::vector<l1t::HGCalTriggerCell>& trigCellVecOutput) {
176  std::unordered_map<unsigned, SuperTriggerCell> STCs;
177  // first pass, fill the "coarse" trigger cells
178  for (const l1t::HGCalTriggerCell& tc : trigCellVecInput) {
179  uint32_t stcid = superTCmapping_.getCoarseTriggerCellId(tc.detId());
180  STCs[stcid].add(tc, stcid);
181  }
182 
183  createAllTriggerCells(STCs, trigCellVecOutput);
184 }
size
Write out results.
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
void createAllTriggerCells(std::unordered_map< unsigned, SuperTriggerCell > &STCs, std::vector< l1t::HGCalTriggerCell > &trigCellVecOutput) const
std::vector< uint32_t > getConstituentTriggerCells(uint32_t ctcId) const
uint32_t getRepresentativeDetId(uint32_t tcid) const
uint32_t getCompressedSTCEnergy(const SuperTriggerCell &stc) const
bool isSilicon(const DetId &) const
int thicknessIndex(const DetId &) const
const HGCalTriggerGeometryBase * getTriggerGeometry() const
void calibrateInGeV(l1t::HGCalTriggerCell &) const
void select(const std::vector< l1t::HGCalTriggerCell > &trigCellVecInput, std::vector< l1t::HGCalTriggerCell > &trigCellVecOutput)
uint32_t getCoarseTriggerCellId(uint32_t detid) const
HGCalConcentratorSuperTriggerCellImpl(const edm::ParameterSet &conf)
PtEtaPhiMLorentzVectorD PtEtaPhiMLorentzVector
Lorentz vector with cartesian internal representation.
Definition: LorentzVector.h:25
virtual bool validTriggerCell(const unsigned trigger_cell_id) const =0
void setDetId(uint32_t detid)
GlobalPoint getTCPosition(const DetId &id) const
SubDetectorType getSubDetectorType(const DetId &id) const
void compressSingle(const uint64_t value, uint32_t &compressedCode, uint64_t &compressedValue) const
void assignSuperTriggerCellEnergyAndPosition(l1t::HGCalTriggerCell &c, const SuperTriggerCell &stc) const
double f[11][100]
GlobalPoint getCoarseTriggerCellPosition(uint32_t ctcId) const
bool isNose(const DetId &) const
bool isEm(const DetId &) const
Definition: DetId.h:17
unsigned long long uint64_t
Definition: Time.h:13
ParameterSet const & getParameterSet(ParameterSetID const &id)
float getTriggerCellOneBitFraction(float tcPt, float sumPt) const
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle point
Definition: invegas.h:5