CMS 3D CMS Logo

SimHitsValidationHcal.cc
Go to the documentation of this file.
5 
6 #define DebugLog
7 
9  g4Label_ = ps.getParameter<std::string>("ModuleLabel");
10  hcalHits_ = ps.getParameter<std::string>("HitCollection");
11  verbose_ = ps.getParameter<bool>("Verbose");
12  testNumber_ = ps.getParameter<bool>("TestNumber");
13 
14  tok_hits_ = consumes<edm::PCaloHitContainer>(edm::InputTag(g4Label_, hcalHits_));
15 
16  edm::LogInfo("HitsValidationHcal") << "Module Label: " << g4Label_ << " Hits: " << hcalHits_ << " TestNumbering "
17  << testNumber_;
18 }
19 
21 
24  es.get<HcalRecNumberingRecord>().get(pHRNDC);
25  hcons = &(*pHRNDC);
30 
31  // Get Phi segmentation from geometry, use the max phi number so that all iphi
32  // values are included.
33 
34  int NphiMax = hcons->getNPhi(0);
35 
36  NphiMax = (hcons->getNPhi(1) > NphiMax ? hcons->getNPhi(1) : NphiMax);
37  NphiMax = (hcons->getNPhi(2) > NphiMax ? hcons->getNPhi(2) : NphiMax);
38  NphiMax = (hcons->getNPhi(3) > NphiMax ? hcons->getNPhi(3) : NphiMax);
39 
40  // Center the iphi bins on the integers
41  float iphi_min = 0.5;
42  float iphi_max = NphiMax + 0.5;
43  int iphi_bins = (int)(iphi_max - iphi_min);
44 
45  int iEtaHBMax = hcons->getEtaRange(0).second;
46  int iEtaHEMax = hcons->getEtaRange(1).second;
47  int iEtaHFMax = hcons->getEtaRange(2).second;
48  int iEtaHOMax = hcons->getEtaRange(3).second;
49 
50  // Retain classic behavior, all plots have same ieta range.
51  // Comment out code to allow each subdetector to have its on range
52 
53  int iEtaMax = (iEtaHBMax > iEtaHEMax ? iEtaHBMax : iEtaHEMax);
54  iEtaMax = (iEtaMax > iEtaHFMax ? iEtaMax : iEtaHFMax);
55  iEtaMax = (iEtaMax > iEtaHOMax ? iEtaMax : iEtaHOMax);
56 
57  iEtaHBMax = iEtaMax;
58  iEtaHEMax = iEtaMax;
59  iEtaHFMax = iEtaMax;
60  iEtaHOMax = iEtaMax;
61 
62  // Give an empty bin around the subdet ieta range to make it clear that all
63  // ieta rings have been included float ieta_min_HB = -iEtaHBMax - 1.5; float
64  // ieta_max_HB = iEtaHBMax + 1.5; int ieta_bins_HB = (int) (ieta_max_HB -
65  // ieta_min_HB);
66 
67  // float ieta_min_HE = -iEtaHEMax - 1.5;
68  // float ieta_max_HE = iEtaHEMax + 1.5;
69  // int ieta_bins_HE = (int) (ieta_max_HE - ieta_min_HE);
70 
71  // float ieta_min_HF = -iEtaHFMax - 1.5;
72  // float ieta_max_HF = iEtaHFMax + 1.5;
73  // int ieta_bins_HF = (int) (ieta_max_HF - ieta_min_HF);
74 
75  // float ieta_min_HO = -iEtaHOMax - 1.5;
76  // float ieta_max_HO = iEtaHOMax + 1.5;
77  // int ieta_bins_HO = (int) (ieta_max_HO - ieta_min_HO);
78 
79 #ifdef DebugLog
80  edm::LogInfo("HitsValidationHcal") << " Maximum Depths HB:" << maxDepthHB_ << " HE:" << maxDepthHE_
81  << " HO:" << maxDepthHO_ << " HF:" << maxDepthHF_;
82 #endif
83  std::vector<std::pair<std::string, std::string>> divisions = getHistogramTypes();
84 
85  edm::LogInfo("HitsValidationHcal") << "Booking the Histograms";
86  ib.setCurrentFolder("HcalHitsV/SimHitsValidationHcal");
87 
88  // Histograms for Hits
89 
90  char name[100], title[200];
91  for (unsigned int i = 0; i < types.size(); ++i) {
93  sprintf(name, "HcalHitEta%s", divisions[i].first.c_str());
94  sprintf(title, "Hit energy as a function of eta tower index in %s", divisions[i].second.c_str());
95  meHcalHitEta_.push_back(ib.book1D(name, title, limit.bins, limit.low, limit.high));
96 
97  sprintf(name, "HcalHitTimeAEta%s", divisions[i].first.c_str());
98  sprintf(title, "Hit time as a function of eta tower index in %s", divisions[i].second.c_str());
99  meHcalHitTimeEta_.push_back(ib.book1D(name, title, limit.bins, limit.low, limit.high));
100 
101  sprintf(name, "HcalHitE25%s", divisions[i].first.c_str());
102  sprintf(title, "Energy in time window 0 to 25 for a tower in %s", divisions[i].second.c_str());
103  meHcalEnergyl25_.push_back(
104  ib.book2D(name, title, limit.bins, limit.low, limit.high, iphi_bins, iphi_min, iphi_max));
105 
106  sprintf(name, "HcalHitE50%s", divisions[i].first.c_str());
107  sprintf(title, "Energy in time window 0 to 50 for a tower in %s", divisions[i].second.c_str());
108  meHcalEnergyl50_.push_back(
109  ib.book2D(name, title, limit.bins, limit.low, limit.high, iphi_bins, iphi_min, iphi_max));
110 
111  sprintf(name, "HcalHitE100%s", divisions[i].first.c_str());
112  sprintf(title, "Energy in time window 0 to 100 for a tower in %s", divisions[i].second.c_str());
113  meHcalEnergyl100_.push_back(
114  ib.book2D(name, title, limit.bins, limit.low, limit.high, iphi_bins, iphi_min, iphi_max));
115 
116  sprintf(name, "HcalHitE250%s", divisions[i].first.c_str());
117  sprintf(title, "Energy in time window 0 to 250 for a tower in %s", divisions[i].second.c_str());
118  meHcalEnergyl250_.push_back(
119  ib.book2D(name, title, limit.bins, limit.low, limit.high, iphi_bins, iphi_min, iphi_max));
120  }
121 
122  sprintf(name, "Energy_HB");
123  meEnergy_HB = ib.book1D(name, name, 100, 0, 1);
124  sprintf(name, "Energy_HE");
125  meEnergy_HE = ib.book1D(name, name, 100, 0, 1);
126  sprintf(name, "Energy_HO");
127  meEnergy_HO = ib.book1D(name, name, 100, 0, 1);
128  sprintf(name, "Energy_HF");
129  meEnergy_HF = ib.book1D(name, name, 100, 0, 50);
130 
131  sprintf(name, "Time_HB");
132  metime_HB = ib.book1D(name, name, 300, -150, 150);
133  sprintf(name, "Time_HE");
134  metime_HE = ib.book1D(name, name, 300, -150, 150);
135  sprintf(name, "Time_HO");
136  metime_HO = ib.book1D(name, name, 300, -150, 150);
137  sprintf(name, "Time_HF");
138  metime_HF = ib.book1D(name, name, 300, -150, 150);
139 
140  sprintf(name, "Time_Enweighted_HB");
141  metime_enweighted_HB = ib.book1D(name, name, 300, -150, 150);
142  sprintf(name, "Time_Enweighted_HE");
143  metime_enweighted_HE = ib.book1D(name, name, 300, -150, 150);
144  sprintf(name, "Time_Enweighted_HO");
145  metime_enweighted_HO = ib.book1D(name, name, 300, -150, 150);
146  sprintf(name, "Time_Enweighted_HF");
147  metime_enweighted_HF = ib.book1D(name, name, 300, -150, 150);
148 }
149 
151 #ifdef DebugLog
152  edm::LogInfo("HitsValidationHcal") << "Run = " << e.id().run() << " Event = " << e.id().event();
153 #endif
154  std::vector<PCaloHit> caloHits;
156 
157  bool getHits = false;
158  e.getByToken(tok_hits_, hitsHcal);
159  if (hitsHcal.isValid())
160  getHits = true;
161 #ifdef DebugLog
162  edm::LogInfo("HitsValidationHcal") << "HitsValidationHcal.: Input flags Hits " << getHits;
163 #endif
164  if (getHits) {
165  caloHits.insert(caloHits.end(), hitsHcal->begin(), hitsHcal->end());
166 #ifdef DebugLog
167  edm::LogInfo("HitsValidationHcal") << "testNumber_:" << testNumber_;
168 #endif
169  if (testNumber_) {
170  for (unsigned int i = 0; i < caloHits.size(); ++i) {
171  unsigned int id_ = caloHits[i].id();
173  caloHits[i].setID(hid.rawId());
174 #ifdef DebugLog
175  edm::LogInfo("HitsValidationHcal") << "Hit[" << i << "] " << hid;
176 #endif
177  }
178  }
179 #ifdef DebugLog
180  edm::LogInfo("HitsValidationHcal") << "HitsValidationHcal: Hit buffer " << caloHits.size();
181 #endif
182  analyzeHits(caloHits);
183  }
184 }
185 
186 void SimHitsValidationHcal::analyzeHits(std::vector<PCaloHit> &hits) {
187  int nHit = hits.size();
188  double entotHB = 0, entotHE = 0, entotHF = 0, entotHO = 0;
189  double timetotHB = 0, timetotHE = 0, timetotHF = 0, timetotHO = 0;
190  int nHB = 0, nHE = 0, nHO = 0, nHF = 0;
191 
192  std::map<std::pair<HcalDetId, unsigned int>, energysum> map_try;
193  map_try.clear();
194  std::map<std::pair<HcalDetId, unsigned int>, energysum>::iterator itr;
195 
196  for (int i = 0; i < nHit; i++) {
197  double energy = hits[i].energy();
198  double time = hits[i].time();
199  HcalDetId id = HcalDetId(hits[i].id());
200  int itime = (int)(time);
201  int subdet = id.subdet();
202  int depth = id.depth();
203  int eta = id.ieta();
204  unsigned int dep = hits[i].depth();
205 
206  std::pair<int, int> types = histId(subdet, eta, depth, dep);
207  if (subdet == static_cast<int>(HcalBarrel)) {
208  entotHB += energy;
209  timetotHB += time;
210  nHB++;
211  } else if (subdet == static_cast<int>(HcalEndcap)) {
212  entotHE += energy;
213  timetotHE += time;
214  nHE++;
215  } else if (subdet == static_cast<int>(HcalOuter)) {
216  entotHO += energy;
217  timetotHO += time;
218  nHO++;
219  } else if (subdet == static_cast<int>(HcalForward)) {
220  entotHF += energy;
221  timetotHF += time;
222  nHF++;
223  }
224 
225  std::pair<HcalDetId, unsigned int> id0(id, dep);
226  energysum ensum;
227  if (map_try.count(id0) != 0)
228  ensum = map_try[id0];
229  if (itime < 250) {
230  ensum.e250 += energy;
231  if (itime < 100) {
232  ensum.e100 += energy;
233  if (itime < 50) {
234  ensum.e50 += energy;
235  if (itime < 25)
236  ensum.e25 += energy;
237  }
238  }
239  }
240  map_try[id0] = ensum;
241 
242 #ifdef DebugLog
243  edm::LogInfo("HitsValidationHcal") << "Hit[" << i << "] ID " << std::dec << " " << id << std::dec << " Det "
244  << id.det() << " Sub " << subdet << " depth " << depth << " depthX " << dep
245  << " Eta " << eta << " Phi " << id.iphi() << " E " << energy << " time " << time
246  << " type " << types.first << " " << types.second;
247 #endif
248 
249  double etax = eta - 0.5;
250  if (eta < 0)
251  etax += 1;
252  if (types.first >= 0) {
253  meHcalHitEta_[types.first]->Fill(etax, energy);
254  meHcalHitTimeEta_[types.first]->Fill(etax, time);
255  }
256  if (types.second >= 0) {
257  meHcalHitEta_[types.second]->Fill(etax, energy);
258  meHcalHitTimeEta_[types.second]->Fill(etax, time);
259  }
260  }
261 
262  meEnergy_HB->Fill(entotHB);
263  meEnergy_HE->Fill(entotHE);
264  meEnergy_HF->Fill(entotHF);
265  meEnergy_HO->Fill(entotHO);
266 
267  metime_HB->Fill(timetotHB);
268  metime_HE->Fill(timetotHE);
269  metime_HF->Fill(timetotHF);
270  metime_HO->Fill(timetotHO);
271 
272  metime_enweighted_HB->Fill(timetotHB, entotHB);
273  metime_enweighted_HE->Fill(timetotHE, entotHE);
274  metime_enweighted_HF->Fill(timetotHF, entotHF);
275  metime_enweighted_HO->Fill(timetotHO, entotHO);
276 
277  for (itr = map_try.begin(); itr != map_try.end(); ++itr) {
278  HcalDetId id = (*itr).first.first;
279  energysum ensum = (*itr).second;
280  std::pair<int, int> types = histId((int)(id.subdet()), id.ieta(), id.depth(), (*itr).first.second);
281  int eta = id.ieta();
282  int phi = id.iphi();
283  double etax = eta - 0.5;
284  double phix = phi - 0.5;
285  if (types.first >= 0) {
286  meHcalEnergyl25_[types.first]->Fill(etax, phix, ensum.e25);
287  meHcalEnergyl50_[types.first]->Fill(etax, phix, ensum.e50);
288  meHcalEnergyl100_[types.first]->Fill(etax, phix, ensum.e100);
289  meHcalEnergyl250_[types.first]->Fill(etax, phix, ensum.e250);
290  }
291  if (types.second >= 0) {
292  meHcalEnergyl25_[types.second]->Fill(etax, phix, ensum.e25);
293  meHcalEnergyl50_[types.second]->Fill(etax, phix, ensum.e50);
294  meHcalEnergyl100_[types.second]->Fill(etax, phix, ensum.e100);
295  meHcalEnergyl250_[types.second]->Fill(etax, phix, ensum.e250);
296  }
297 
298 #ifdef DebugLog
299  edm::LogInfo("HitsValidationHcal") << " energy of tower =" << (*itr).first.first
300  << " in time 25ns is == " << (*itr).second.e25
301  << " in time 25-50ns == " << (*itr).second.e50
302  << " in time 50-100ns == " << (*itr).second.e100
303  << " in time 100-250 ns == " << (*itr).second.e250;
304 #endif
305  }
306 }
307 
309  int bins;
310  std::pair<int, int> range;
311  double low, high;
312 
313  if (type.subdet == HcalBarrel) {
314  range = hcons->getEtaRange(0);
315  low = -range.second;
316  high = range.second;
317  bins = (high - low);
318  } else if (type.subdet == HcalEndcap) {
319  range = hcons->getEtaRange(1);
320  bins = range.second - range.first;
321  if (type.z == 1) {
322  low = range.first;
323  high = range.second;
324  } else {
325  low = -range.second;
326  high = -range.first;
327  }
328  } else if (type.subdet == HcalOuter) {
329  range = hcons->getEtaRange(3);
330  low = -range.second;
331  high = range.second;
332  bins = high - low;
333  } else if (type.subdet == HcalForward) {
334  range = hcons->getEtaRange(2);
335  bins = range.second - range.first;
336  if (type.z == 1) {
337  low = range.first;
338  high = range.second;
339  } else {
340  low = -range.second;
341  high = -range.first;
342  }
343  } else {
344  bins = 82;
345  low = -41;
346  high = 41;
347  }
348 #ifdef DebugLog
349  edm::LogInfo("HitsValidationHcal") << "Subdetector:" << type.subdet << " z:" << type.z
350  << " range.first:" << range.first << " and second:" << range.second;
351  edm::LogInfo("HitsValidationHcal") << "bins: " << bins << " low:" << low << " high:" << high;
352 #endif
353  return SimHitsValidationHcal::etaRange(bins, low, high);
354 }
355 
356 std::pair<int, int> SimHitsValidationHcal::histId(int subdet, int eta, int depth, unsigned int dep) {
357  int id1(-1), id2(-1);
358  for (unsigned int k = 0; k < types.size(); ++k) {
359  if (subdet == HcalForward) {
360  if (subdet == (int)(types[k].subdet) && depth == types[k].depth1 && eta * types[k].z > 0 &&
361  dep == (unsigned int)(types[k].depth2)) {
362  id1 = k;
363  break;
364  }
365  } else if (subdet == HcalEndcap) {
366  if (subdet == (int)(types[k].subdet) && depth == types[k].depth1 && eta * types[k].z > 0) {
367  id1 = k;
368  break;
369  }
370  } else {
371  if (subdet == (int)(types[k].subdet) && depth == types[k].depth1) {
372  id1 = k;
373  break;
374  }
375  }
376  }
377  if (subdet == HcalForward)
378  depth += 2 * dep;
379  for (unsigned int k = 0; k < types.size(); ++k) {
380  if (types[k].subdet == HcalEmpty && types[k].depth1 == depth) {
381  id2 = k;
382  break;
383  }
384  }
385  return std::pair<int, int>(id1, id2);
386 }
387 
388 std::vector<std::pair<std::string, std::string>> SimHitsValidationHcal::getHistogramTypes() {
390  maxDepth = std::max(maxDepth, maxDepthHF_);
391  maxDepth = std::max(maxDepth, maxDepthHO_);
392 
393  std::vector<std::pair<std::string, std::string>> divisions;
394  std::pair<std::string, std::string> names;
395  char name1[40], name2[40];
397  // first overall Hcal
398  for (int depth = 0; depth < maxDepth; ++depth) {
399  snprintf(name1, 40, "HC%d", depth);
400  snprintf(name2, 40, "HCAL depth%d", depth + 1);
401  names = std::pair<std::string, std::string>(std::string(name1), std::string(name2));
402  type = SimHitsValidationHcal::idType(HcalEmpty, 0, depth + 1, depth + 1);
403  divisions.push_back(names);
404  types.push_back(type);
405  }
406  // HB
407  for (int depth = 0; depth < maxDepthHB_; ++depth) {
408  snprintf(name1, 40, "HB%d", depth);
409  snprintf(name2, 40, "HB depth%d", depth + 1);
410  names = std::pair<std::string, std::string>(std::string(name1), std::string(name2));
412  divisions.push_back(names);
413  types.push_back(type);
414  }
415  // HE
416  for (int depth = 0; depth < maxDepthHE_; ++depth) {
417  snprintf(name1, 40, "HE%d+z", depth);
418  snprintf(name2, 40, "HE +z depth%d", depth + 1);
419  names = std::pair<std::string, std::string>(std::string(name1), std::string(name2));
421  divisions.push_back(names);
422  types.push_back(type);
423  snprintf(name1, 40, "HE%d-z", depth);
424  snprintf(name2, 40, "HE -z depth%d", depth + 1);
425  names = std::pair<std::string, std::string>(std::string(name1), std::string(name2));
426  type = SimHitsValidationHcal::idType(HcalEndcap, -1, depth + 1, depth + 1);
427  divisions.push_back(names);
428  types.push_back(type);
429  }
430  // HO
431  {
432  int depth = maxDepthHO_;
433  snprintf(name1, 40, "HO%d", depth);
434  snprintf(name2, 40, "HO depth%d", depth);
435  names = std::pair<std::string, std::string>(std::string(name1), std::string(name2));
436  type = SimHitsValidationHcal::idType(HcalOuter, 0, depth, depth);
437  divisions.push_back(names);
438  types.push_back(type);
439  }
440  // HF (first absorber, then different types of abnormal hits)
441  std::string hfty1[4] = {"A", "W", "B", "J"};
442  std::string hfty2[4] = {"Absorber", "Window", "Bundle", "Jungle"};
443  int dept0[4] = {0, 1, 2, 3};
444  for (int k = 0; k < 4; ++k) {
445  for (int depth = 0; depth < maxDepthHF_; ++depth) {
446  snprintf(name1, 40, "HF%s%d+z", hfty1[k].c_str(), depth);
447  snprintf(name2, 40, "HF (%s) +z depth%d", hfty2[k].c_str(), depth + 1);
448  names = std::pair<std::string, std::string>(std::string(name1), std::string(name2));
449  type = SimHitsValidationHcal::idType(HcalForward, 1, depth + 1, dept0[k]);
450  divisions.push_back(names);
451  types.push_back(type);
452  snprintf(name1, 40, "HF%s%d-z", hfty1[k].c_str(), depth);
453  snprintf(name2, 40, "HF (%s) -z depth%d", hfty2[k].c_str(), depth + 1);
454  names = std::pair<std::string, std::string>(std::string(name1), std::string(name2));
455  type = SimHitsValidationHcal::idType(HcalForward, -1, depth + 1, dept0[k]);
456  divisions.push_back(names);
457  types.push_back(type);
458  }
459  }
460 
461  return divisions;
462 }
463 
466  desc.add<std::string>("ModuleLabel", "g4SimHits");
467  desc.add<std::string>("HitCollection", "HcalHits");
468  desc.add<bool>("Verbose", false);
469  desc.add<bool>("TestNumber", false);
470 
471  descriptions.addDefault(desc);
472 }
473 
RunNumber_t run() const
Definition: EventID.h:39
SimHitsValidationHcal(const edm::ParameterSet &ps)
type
Definition: HCALResponse.h:21
MonitorElement * meEnergy_HF
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:41
const HcalDDDRecConstants * hcons
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
MonitorElement * metime_enweighted_HO
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
void analyze(const edm::Event &e, const edm::EventSetup &c) override
const std::string names[nVars_]
std::pair< int, int > getEtaRange(const int &i) const
void Fill(long long x)
MonitorElement * metime_enweighted_HB
std::vector< MonitorElement * > meHcalEnergyl25_
U second(std::pair< T, U > const &p)
MonitorElement * meEnergy_HB
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void addDefault(ParameterSetDescription const &psetDescription)
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
std::vector< MonitorElement * > meHcalEnergyl100_
MonitorElement * metime_enweighted_HF
ParameterDescriptionBase * add(U const &iLabel, T const &value)
bool isValid() const
Definition: HandleBase.h:74
MonitorElement * metime_enweighted_HE
int k[5][pyjets_maxn]
std::vector< MonitorElement * > meHcalEnergyl250_
std::vector< MonitorElement * > meHcalHitEta_
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:109
int getMaxDepth(const int &type) const
MonitorElement * meEnergy_HE
std::vector< MonitorElement * > meHcalEnergyl50_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::EventID id() const
Definition: EventBase.h:59
T get() const
Definition: EventSetup.h:71
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
std::vector< MonitorElement * > meHcalHitTimeEta_
std::pair< int, int > histId(int subdet, int eta, int depth, unsigned int dep)
DetId relabel(const uint32_t testId) const
MonitorElement * meEnergy_HO
edm::EDGetTokenT< edm::PCaloHitContainer > tok_hits_
Definition: Run.h:45
int getNPhi(const int &type) const
ib
Definition: cuy.py:662
std::vector< std::pair< std::string, std::string > > getHistogramTypes()
void analyzeHits(std::vector< PCaloHit > &)