CMS 3D CMS Logo

RecAnalyzerMinbias.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: HcalCalibAlgos
4 // Class: RecAnalyzerMinbias
5 //
13 //
14 // Original Author: Sunanda Banerjee
15 // Created: Thu Mar 4 18:52:02 CST 2012
16 //
17 //
18 
19 // system include files
20 #include <memory>
21 #include <string>
22 #include <iostream>
23 #include <fstream>
24 #include <sstream>
25 #include <vector>
26 #include <map>
27 
28 // user include files
55 
57 
58 #include "TH1D.h"
59 #include "TH2D.h"
60 #include "TMath.h"
61 #include "TProfile.h"
62 #include "TTree.h"
63 
64 //#define EDM_ML_DEBUG
65 
66 // class declaration
67 class RecAnalyzerMinbias : public edm::one::EDAnalyzer<edm::one::WatchRuns, edm::one::SharedResources> {
68 public:
69  explicit RecAnalyzerMinbias(const edm::ParameterSet&);
70  ~RecAnalyzerMinbias() override;
71 
72  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
73 
74 private:
75  void analyze(edm::Event const&, edm::EventSetup const&) override;
76  void beginJob() override;
77  void endJob() override;
78  void beginRun(edm::Run const&, edm::EventSetup const&) override;
79  void endRun(edm::Run const&, edm::EventSetup const&) override {}
80 
81 private:
82  void analyzeHcal(const HBHERecHitCollection&, const HFRecHitCollection&, int, bool, double);
83 
84  // ----------member data ---------------------------
91  std::map<DetId, double> corrFactor_;
92  std::vector<unsigned int> hcalID_;
93  TTree *myTree_, *myTree1_;
94  TH1D* h_[4];
95  TH2D *hbhe_, *hb_, *he_, *hf_;
99  TProfile *hbherun_, *hbrun_, *herun_, *hfrun_;
100  std::vector<TH1D*> histo_;
101  std::map<HcalDetId, TH1D*> histHC_;
102  std::vector<int> trigbit_;
103  double rnnum_;
104  struct myInfo {
107  };
108  // Root tree members
109  double rnnumber;
113  std::map<std::pair<int, HcalDetId>, myInfo> myMap_;
125 };
126 
127 // constructors and destructor
129  usesResource("TFileService");
130 
131  // get name of output file with histogramms
132  runNZS_ = iConfig.getParameter<bool>("runNZS");
133  Noise_ = iConfig.getParameter<bool>("noise");
134  eLowHB_ = iConfig.getParameter<double>("eLowHB");
135  eHighHB_ = iConfig.getParameter<double>("eHighHB");
136  eLowHE_ = iConfig.getParameter<double>("eLowHE");
137  eHighHE_ = iConfig.getParameter<double>("eHighHE");
138  eLowHF_ = iConfig.getParameter<double>("eLowHF");
139  eHighHF_ = iConfig.getParameter<double>("eHighHF");
140  eMin_ = iConfig.getUntrackedParameter<double>("eMin", 2.0);
141  // The following run range is suited to study 2017 commissioning period
142  runMin_ = iConfig.getUntrackedParameter<int>("RunMin", 308327);
143  runMax_ = iConfig.getUntrackedParameter<int>("RunMax", 315250);
144  trigbit_ = iConfig.getUntrackedParameter<std::vector<int>>("triggerBits");
145  ignoreL1_ = iConfig.getUntrackedParameter<bool>("ignoreL1", false);
146  std::string cfile = iConfig.getUntrackedParameter<std::string>("corrFile");
147  fillHist_ = iConfig.getUntrackedParameter<bool>("fillHisto", false);
148  extraHist_ = iConfig.getUntrackedParameter<bool>("extraHisto", false);
149  std::vector<int> ieta = iConfig.getUntrackedParameter<std::vector<int>>("hcalIeta");
150  std::vector<int> iphi = iConfig.getUntrackedParameter<std::vector<int>>("hcalIphi");
151  std::vector<int> depth = iConfig.getUntrackedParameter<std::vector<int>>("hcalDepth");
152 
153  // get token names of modules, producing object collections
154  tok_hbherecoMB_ = consumes<HBHERecHitCollection>(iConfig.getParameter<edm::InputTag>("hbheInputMB"));
155  tok_hfrecoMB_ = consumes<HFRecHitCollection>(iConfig.getParameter<edm::InputTag>("hfInputMB"));
156  tok_hltL1GtMap_ = consumes<L1GlobalTriggerObjectMapRecord>(edm::InputTag("hltL1GtObjectMap"));
157  tok_ew_ = consumes<GenEventInfoProduct>(edm::InputTag("generator"));
158  tok_hbhedigi_ = consumes<HBHEDigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"));
159  tok_qie11digi_ = consumes<QIE11DigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"));
160  tok_hodigi_ = consumes<HODigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"));
161  tok_hfdigi_ = consumes<HFDigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"));
162  tok_qie10digi_ = consumes<QIE10DigiCollection>(iConfig.getParameter<edm::InputTag>("hcalDigiCollectionTag"));
163  tok_gtRec_ = consumes<L1GlobalTriggerReadoutRecord>(edm::InputTag("gtDigisAlCaMB"));
164 
165  tok_htopo_ = esConsumes<HcalTopology, HcalRecNumberingRecord, edm::Transition::BeginRun>();
166 
167  // Read correction factors
168  std::ifstream infile(cfile.c_str());
169  if (!infile.is_open()) {
170  theRecalib_ = false;
171  edm::LogWarning("RecAnalyzer") << "Cannot open '" << cfile << "' for the correction file";
172  } else {
173  unsigned int ndets(0), nrec(0);
174  while (true) {
175  unsigned int id;
176  double cfac;
177  infile >> id >> cfac;
178  if (!infile.good())
179  break;
180  HcalDetId detId(id);
181  nrec++;
182  std::map<DetId, double>::iterator itr = corrFactor_.find(detId);
183  if (itr == corrFactor_.end()) {
184  corrFactor_[detId] = cfac;
185  ndets++;
186  }
187  }
188  infile.close();
189  edm::LogVerbatim("RecAnalyzer") << "Reads " << nrec << " correction factors for " << ndets << " detIds";
190  theRecalib_ = (ndets > 0);
191  }
192 
193  edm::LogVerbatim("RecAnalyzer") << " Flags (ReCalib): " << theRecalib_ << " (IgnoreL1): " << ignoreL1_ << " (NZS) "
194  << runNZS_ << " and with " << ieta.size() << " detId for full histogram";
195  edm::LogVerbatim("RecAnalyzer") << "Thresholds for HB " << eLowHB_ << ":" << eHighHB_ << " for HE " << eLowHE_ << ":"
196  << eHighHE_ << " for HF " << eLowHF_ << ":" << eHighHF_;
197  for (unsigned int k = 0; k < ieta.size(); ++k) {
198  HcalSubdetector subd =
199  ((std::abs(ieta[k]) > 29) ? HcalForward
200  : (std::abs(ieta[k]) > 16) ? HcalEndcap
201  : ((std::abs(ieta[k]) == 16) && (depth[k] == 3))
202  ? HcalEndcap
203  : (depth[k] == 4) ? HcalOuter : HcalBarrel);
204  unsigned int id = (HcalDetId(subd, ieta[k], iphi[k], depth[k])).rawId();
205  hcalID_.push_back(id);
206  edm::LogVerbatim("RecAnalyzer") << "DetId[" << k << "] " << HcalDetId(id);
207  }
208  edm::LogVerbatim("RecAnalyzer") << "Select on " << trigbit_.size() << " L1 Trigger selection";
209  for (unsigned int k = 0; k < trigbit_.size(); ++k)
210  edm::LogVerbatim("RecAnalyzer") << "Bit[" << k << "] " << trigbit_[k];
211 }
212 
214 
216  std::vector<int> iarray;
218  desc.add<bool>("runNZS", true);
219  desc.add<bool>("noise", false);
220  desc.add<double>("eLowHB", 4);
221  desc.add<double>("eHighHB", 100);
222  desc.add<double>("eLowHE", 4);
223  desc.add<double>("eHighHE", 150);
224  desc.add<double>("eLowHF", 10);
225  desc.add<double>("eHighHF", 150);
226  // Suitable cutoff to remove fluctuation of pedestal
227  desc.addUntracked<double>("eMin", 2.0);
228  // The following run range is suited to study 2017 commissioning period
229  desc.addUntracked<int>("runMin", 308327);
230  desc.addUntracked<int>("runMax", 308347);
231  desc.addUntracked<std::vector<int>>("triggerBits", iarray);
232  desc.addUntracked<bool>("ignoreL1", false);
233  desc.addUntracked<std::string>("corrFile", "CorFactor.txt");
234  desc.addUntracked<bool>("fillHisto", false);
235  desc.addUntracked<bool>("extraHisto", false);
236  desc.addUntracked<std::vector<int>>("hcalIeta", iarray);
237  desc.addUntracked<std::vector<int>>("hcalIphi", iarray);
238  desc.addUntracked<std::vector<int>>("hcalDepth", iarray);
239  desc.add<edm::InputTag>("hbheInputMB", edm::InputTag("hbherecoMB"));
240  desc.add<edm::InputTag>("hfInputMB", edm::InputTag("hfrecoMB"));
241  desc.add<edm::InputTag>("gtDigisAlCaMB", edm::InputTag("gtDigisAlCaMB"));
242  desc.add<edm::InputTag>("hcalDigiCollectionTag", edm::InputTag("hcalDigis"));
243  descriptions.add("recAnalyzerMinbias", desc);
244 }
245 
247  std::string hc[5] = {"Empty", "HB", "HE", "HO", "HF"};
248  char name[700], title[700];
249  hbhe_ = fs_->make<TH2D>("hbhe", "Noise in HB/HE", 61, -30.5, 30.5, 72, 0.5, 72.5);
250  hb_ = fs_->make<TH2D>("hb", "Noise in HB", 61, -16.5, 16.5, 72, 0.5, 72.5);
251  he_ = fs_->make<TH2D>("he", "Noise in HE", 61, -30.5, 30.5, 72, 0.5, 72.5);
252  hf_ = fs_->make<TH2D>("hf", "Noise in HF", 82, -41.5, 41.5, 72, 0.5, 72.5);
253  int nbin = (runMax_ - runMin_ + 1);
254  sprintf(title, "Fraction of channels in HB/HE with E > %4.1f GeV vs Run number", eMin_);
255  hbherun_ = fs_->make<TProfile>("hbherun", title, nbin, runMin_ - 0.5, runMax_ + 0.5, 0.0, 1.0);
256  sprintf(title, "Fraction of channels in HB with E > %4.1f GeV vs Run number", eMin_);
257  hbrun_ = fs_->make<TProfile>("hbrun", title, nbin, runMin_ - 0.5, runMax_ + 0.5, 0.0, 1.0);
258  sprintf(title, "Fraction of channels in HE with E > %4.1f GeV vs Run number", eMin_);
259  herun_ = fs_->make<TProfile>("herun", title, nbin, runMin_ - 0.5, runMax_ + 0.5, 0.0, 1.0);
260  sprintf(title, "Fraction of channels in HF with E > %4.1f GeV vs Run number", eMin_);
261  hfrun_ = fs_->make<TProfile>("hfrun", title, nbin, runMin_ - 0.5, runMax_ + 0.5, 0.0, 1.0);
262  for (int idet = 1; idet <= 4; idet++) {
263  sprintf(name, "%s", hc[idet].c_str());
264  sprintf(title, "Noise distribution for %s", hc[idet].c_str());
265  h_[idet - 1] = fs_->make<TH1D>(name, title, 48, -6., 6.);
266  }
267 
268  for (const auto& hcalid : hcalID_) {
269  HcalDetId id = HcalDetId(hcalid);
270  int subdet = id.subdetId();
271  sprintf(name, "%s%d_%d_%d", hc[subdet].c_str(), id.ieta(), id.iphi(), id.depth());
272  sprintf(title,
273  "Energy Distribution for %s ieta %d iphi %d depth %d",
274  hc[subdet].c_str(),
275  id.ieta(),
276  id.iphi(),
277  id.depth());
278  double xmin = (subdet == 4) ? -10 : -1;
279  double xmax = (subdet == 4) ? 90 : 9;
280  TH1D* hh = fs_->make<TH1D>(name, title, 50, xmin, xmax);
281  histo_.push_back(hh);
282  };
283 
284  if (extraHist_) {
285  h_AmplitudeHBtest_ = fs_->make<TH1D>("h_AmplitudeHBtest", "", 5000, 0., 5000.);
286  h_AmplitudeHEtest_ = fs_->make<TH1D>("h_AmplitudeHEtest", "", 3000, 0., 3000.);
287  h_AmplitudeHFtest_ = fs_->make<TH1D>("h_AmplitudeHFtest", "", 10000, 0., 10000.);
288  h_AmplitudeHB_ = fs_->make<TH1D>("h_AmplitudeHB", "", 100000, 0., 100000.);
289  h_AmplitudeHE_ = fs_->make<TH1D>("h_AmplitudeHE", "", 300000, 0., 300000.);
290  h_AmplitudeHF_ = fs_->make<TH1D>("h_AmplitudeHF", "", 100000, 0., 1000000.);
291  }
292 
293  if (!fillHist_) {
294  myTree_ = fs_->make<TTree>("RecJet", "RecJet Tree");
295  myTree_->Branch("cells", &cells, "cells/I");
296  myTree_->Branch("mysubd", &mysubd, "mysubd/I");
297  myTree_->Branch("depth", &depth, "depth/I");
298  myTree_->Branch("ieta", &ieta, "ieta/I");
299  myTree_->Branch("iphi", &iphi, "iphi/I");
300  myTree_->Branch("mom0_MB", &mom0_MB, "mom0_MB/F");
301  myTree_->Branch("mom1_MB", &mom1_MB, "mom1_MB/F");
302  myTree_->Branch("mom2_MB", &mom2_MB, "mom2_MB/F");
303  myTree_->Branch("mom3_MB", &mom3_MB, "mom3_MB/F");
304  myTree_->Branch("mom4_MB", &mom4_MB, "mom4_MB/F");
305  myTree_->Branch("trigbit", &trigbit, "trigbit/I");
306  myTree_->Branch("rnnumber", &rnnumber, "rnnumber/D");
307  }
308  myTree1_ = fs_->make<TTree>("RecJet1", "RecJet1 Tree");
309  myTree1_->Branch("rnnum_", &rnnum_, "rnnum_/D");
310  myTree1_->Branch("HBHEsize", &HBHEsize, "HBHEsize/I");
311  myTree1_->Branch("HFsize", &HFsize, "HFsize/I");
312 
313  myMap_.clear();
314 }
315 
316 // EndJob
317 //
319  if (!fillHist_) {
320  cells = 0;
321  for (const auto& itr : myMap_) {
322  edm::LogVerbatim("RecAnalyzer") << "Fired trigger bit number " << itr.first.first;
323  myInfo info = itr.second;
324  if (info.theMB0 > 0) {
325  mom0_MB = info.theMB0;
326  mom1_MB = info.theMB1;
327  mom2_MB = info.theMB2;
328  mom3_MB = info.theMB3;
329  mom4_MB = info.theMB4;
330  rnnumber = info.runcheck;
331  trigbit = itr.first.first;
332  mysubd = itr.first.second.subdet();
333  depth = itr.first.second.depth();
334  iphi = itr.first.second.iphi();
335  ieta = itr.first.second.ieta();
336  edm::LogVerbatim("RecAnalyzer") << " Result= " << trigbit << " " << mysubd << " " << ieta << " " << iphi
337  << " mom0 " << mom0_MB << " mom1 " << mom1_MB << " mom2 " << mom2_MB
338  << " mom3 " << mom3_MB << " mom4 " << mom4_MB;
339  myTree_->Fill();
340  cells++;
341  }
342  }
343  edm::LogVerbatim("RecAnalyzer") << "cells"
344  << " " << cells;
345  }
346 #ifdef EDM_ML_DEBUG
347  edm::LogVerbatim("RecAnalyzer") << "Exiting from RecAnalyzerMinbias::endjob";
348 #endif
349 }
350 
352  if (!init_) {
353  init_ = true;
354  if (fillHist_) {
355  const HcalTopology* hcaltopology = &iS.getData(tok_htopo_);
356 
357  char name[700], title[700];
358  // For HB
359  int maxDepthHB = hcaltopology->maxDepthHB();
360  int nbinHB = (Noise_) ? 18 : int(2000 * eHighHB_);
361  double x_min = (Noise_) ? -3. : 0.;
362  double x_max = (Noise_) ? 3. : 2. * eHighHB_;
363  for (int eta = -50; eta < 50; eta++) {
364  for (int phi = 0; phi < 100; phi++) {
365  for (int depth = 1; depth <= maxDepthHB; depth++) {
366  HcalDetId cell(HcalBarrel, eta, phi, depth);
367  if (hcaltopology->valid(cell)) {
368  sprintf(name, "HBeta%dphi%ddep%d", eta, phi, depth);
369  sprintf(title, "HB #eta %d #phi %d depth %d", eta, phi, depth);
370  TH1D* h = fs_->make<TH1D>(name, title, nbinHB, x_min, x_max);
371  histHC_[cell] = h;
372  }
373  }
374  }
375  }
376  // For HE
377  int maxDepthHE = hcaltopology->maxDepthHE();
378  int nbinHE = (Noise_) ? 18 : int(2000 * eHighHE_);
379  x_min = (Noise_) ? -3. : 0.;
380  x_max = (Noise_) ? 3. : 2. * eHighHE_;
381  for (int eta = -50; eta < 50; eta++) {
382  for (int phi = 0; phi < 100; phi++) {
383  for (int depth = 1; depth <= maxDepthHE; depth++) {
384  HcalDetId cell(HcalEndcap, eta, phi, depth);
385  if (hcaltopology->valid(cell)) {
386  sprintf(name, "HEeta%dphi%ddep%d", eta, phi, depth);
387  sprintf(title, "HE #eta %d #phi %d depth %d", eta, phi, depth);
388  TH1D* h = fs_->make<TH1D>(name, title, nbinHE, x_min, x_max);
389  histHC_[cell] = h;
390  }
391  }
392  }
393  }
394  // For HF
395  int maxDepthHF = 4;
396  int nbinHF = (Noise_) ? 200 : int(2000 * eHighHF_);
397  x_min = (Noise_) ? -10. : 0.;
398  x_max = (Noise_) ? 10. : 2. * eHighHF_;
399  for (int eta = -50; eta < 50; eta++) {
400  for (int phi = 0; phi < 100; phi++) {
401  for (int depth = 1; depth <= maxDepthHF; depth++) {
402  HcalDetId cell(HcalForward, eta, phi, depth);
403  if (hcaltopology->valid(cell)) {
404  sprintf(name, "HFeta%dphi%ddep%d", eta, phi, depth);
405  sprintf(title, "Energy (HF #eta %d #phi %d depth %d)", eta, phi, depth);
406  TH1D* h = fs_->make<TH1D>(name, title, nbinHF, x_min, x_max);
407  histHC_[cell] = h;
408  }
409  }
410  }
411  }
412  }
413  }
414 }
415 
416 //
417 // member functions
418 //
419 // ------------ method called to produce the data ------------
420 
422  rnnum_ = (double)iEvent.run();
423 
424  if (extraHist_) {
425  double amplitudefullHB(0), amplitudefullHE(0), amplitudefullHF(0);
427  iEvent.getByToken(tok_hbhedigi_, hbhedigi);
428  if (hbhedigi.isValid()) {
429  for (auto const& digi : *(hbhedigi.product())) {
430  int nTS = digi.size();
431  double amplitudefullTSs = 0.;
432  if (digi.id().subdet() == HcalBarrel) {
433  if (nTS <= 10) {
434  for (int i = 0; i < nTS; i++)
435  amplitudefullTSs += digi.sample(i).adc();
436  h_AmplitudeHBtest_->Fill(amplitudefullTSs);
437  amplitudefullHB += amplitudefullTSs;
438  }
439  }
440  if (digi.id().subdet() == HcalEndcap) {
441  if (nTS <= 10) {
442  for (int i = 0; i < nTS; i++)
443  amplitudefullTSs += digi.sample(i).adc();
444  h_AmplitudeHEtest_->Fill(amplitudefullTSs);
445  amplitudefullHE += amplitudefullTSs;
446  }
447  }
448  }
449  }
450 
452  iEvent.getByToken(tok_qie11digi_, qie11digi);
453  if (qie11digi.isValid()) {
454  for (QIE11DataFrame const digi : *(qie11digi.product())) {
455  double amplitudefullTSs = 0.;
456  if (HcalDetId(digi.id()).subdet() == HcalBarrel) {
457  for (int i = 0; i < digi.samples(); i++)
458  amplitudefullTSs += digi[i].adc();
459  h_AmplitudeHBtest_->Fill(amplitudefullTSs);
460  amplitudefullHB += amplitudefullTSs;
461  }
462  if (HcalDetId(digi.id()).subdet() == HcalEndcap) {
463  for (int i = 0; i < digi.samples(); i++)
464  amplitudefullTSs += digi[i].adc();
465  h_AmplitudeHEtest_->Fill(amplitudefullTSs);
466  amplitudefullHE += amplitudefullTSs;
467  }
468  }
469  }
470 
472  iEvent.getByToken(tok_hfdigi_, hfdigi);
473  if (hfdigi.isValid()) {
474  for (auto const& digi : *(hfdigi.product())) {
475  int nTS = digi.size();
476  double amplitudefullTSs = 0.;
477  if (digi.id().subdet() == HcalForward) {
478  if (nTS <= 10) {
479  for (int i = 0; i < nTS; i++)
480  amplitudefullTSs += digi.sample(i).adc();
481  h_AmplitudeHFtest_->Fill(amplitudefullTSs);
482  amplitudefullHF += amplitudefullTSs;
483  }
484  }
485  }
486  }
487 
489  iEvent.getByToken(tok_qie10digi_, qie10digi);
490  if (qie10digi.isValid()) {
491  for (QIE10DataFrame const digi : *(qie10digi.product())) {
492  double amplitudefullTSs = 0.;
493  if (HcalDetId(digi.id()).subdet() == HcalForward) {
494  for (int i = 0; i < digi.samples(); i++)
495  amplitudefullTSs += digi[i].adc();
496  h_AmplitudeHFtest_->Fill(amplitudefullTSs);
497  amplitudefullHF += amplitudefullTSs;
498  }
499  }
500  }
501 
502  h_AmplitudeHB_->Fill(amplitudefullHB);
503  h_AmplitudeHE_->Fill(amplitudefullHE);
504  h_AmplitudeHF_->Fill(amplitudefullHF);
505  }
506 
508  iEvent.getByToken(tok_hbherecoMB_, hbheMB);
509  if (!hbheMB.isValid()) {
510  edm::LogWarning("RecAnalyzer") << "HcalCalibAlgos: Error! can't get hbhe product!";
511  return;
512  }
513  const HBHERecHitCollection HithbheMB = *(hbheMB.product());
514  HBHEsize = HithbheMB.size();
515  edm::LogVerbatim("RecAnalyzer") << "HBHE MB size of collection " << HithbheMB.size();
516  if (HithbheMB.size() < 5100 && runNZS_) {
517  edm::LogWarning("RecAnalyzer") << "HBHE problem " << rnnum_ << " size " << HBHEsize;
518  }
519 
521  iEvent.getByToken(tok_hfrecoMB_, hfMB);
522  if (!hfMB.isValid()) {
523  edm::LogWarning("RecAnalyzer") << "HcalCalibAlgos: Error! can't get hf product!";
524  return;
525  }
526  const HFRecHitCollection HithfMB = *(hfMB.product());
527  edm::LogVerbatim("RecAnalyzer") << "HF MB size of collection " << HithfMB.size();
528  HFsize = HithfMB.size();
529  if (HithfMB.size() < 1700 && runNZS_) {
530  edm::LogWarning("RecAnalyzer") << "HF problem " << rnnum_ << " size " << HFsize;
531  }
532 
533  bool select(false);
534  if (!trigbit_.empty()) {
536  iEvent.getByToken(tok_hltL1GtMap_, gtObjectMapRecord);
537  if (gtObjectMapRecord.isValid()) {
538  const std::vector<L1GlobalTriggerObjectMap>& objMapVec = gtObjectMapRecord->gtObjectMap();
539  for (std::vector<L1GlobalTriggerObjectMap>::const_iterator itMap = objMapVec.begin(); itMap != objMapVec.end();
540  ++itMap) {
541  bool resultGt = (*itMap).algoGtlResult();
542  if (resultGt) {
543  int algoBit = (*itMap).algoBitNumber();
544  if (std::find(trigbit_.begin(), trigbit_.end(), algoBit) != trigbit_.end()) {
545  select = true;
546  break;
547  }
548  }
549  }
550  }
551  }
552 
553  if (!trigbit_.empty() || select)
554  myTree1_->Fill();
555 
556  //event weight for FLAT sample and PU information
557  double eventWeight = 1.0;
559  iEvent.getByToken(tok_ew_, genEventInfo);
560  if (genEventInfo.isValid())
561  eventWeight = genEventInfo->weight();
562 #ifdef EDM_ML_DEBUG
563  edm::LogVerbatim("RecAnalyzer") << "Test HB " << HBHEsize << " HF " << HFsize << " Trigger " << trigbit_.size() << ":"
564  << select << ":" << ignoreL1_ << " Wt " << eventWeight;
565 #endif
566  if (ignoreL1_ || (!trigbit_.empty() && select)) {
567  analyzeHcal(HithbheMB, HithfMB, 1, true, eventWeight);
568  } else if ((!ignoreL1_) && (trigbit_.empty())) {
570  iEvent.getByToken(tok_hltL1GtMap_, gtObjectMapRecord);
571  if (gtObjectMapRecord.isValid()) {
572  const std::vector<L1GlobalTriggerObjectMap>& objMapVec = gtObjectMapRecord->gtObjectMap();
573  bool ok(false);
574  for (std::vector<L1GlobalTriggerObjectMap>::const_iterator itMap = objMapVec.begin(); itMap != objMapVec.end();
575  ++itMap) {
576  bool resultGt = (*itMap).algoGtlResult();
577  if (resultGt) {
578  int algoBit = (*itMap).algoBitNumber();
579  analyzeHcal(HithbheMB, HithfMB, algoBit, (!ok), eventWeight);
580  ok = true;
581  }
582  }
583  if (!ok) {
584  edm::LogVerbatim("RecAnalyzer") << "No passed L1 Trigger found";
585  }
586  }
587  }
588 }
589 
591  const HBHERecHitCollection& HithbheMB, const HFRecHitCollection& HithfMB, int algoBit, bool fill, double weight) {
592  // Signal part for HB HE
593  int count(0), countHB(0), countHE(0), count2(0), count2HB(0), count2HE(0);
594  for (HBHERecHitCollection::const_iterator hbheItr = HithbheMB.begin(); hbheItr != HithbheMB.end(); hbheItr++) {
595  // Recalibration of energy
596  DetId mydetid = hbheItr->id().rawId();
597  double icalconst(1.);
598  if (theRecalib_) {
599  std::map<DetId, double>::iterator itr = corrFactor_.find(mydetid);
600  if (itr != corrFactor_.end())
601  icalconst = itr->second;
602  }
603  HBHERecHit aHit(hbheItr->id(), hbheItr->energy() * icalconst, hbheItr->time());
604  double energyhit = aHit.energy();
605  DetId id = (*hbheItr).detid();
606  HcalDetId hid = HcalDetId(id);
607  double eLow = (hid.subdet() == HcalEndcap) ? eLowHE_ : eLowHB_;
608  double eHigh = (hid.subdet() == HcalEndcap) ? eHighHE_ : eHighHB_;
609  ++count;
610  if (id.subdetId() == HcalBarrel)
611  ++countHB;
612  else
613  ++countHE;
614  if (fill) {
615  for (unsigned int i = 0; i < hcalID_.size(); i++) {
616  if (hcalID_[i] == id.rawId()) {
617  histo_[i]->Fill(energyhit);
618  break;
619  }
620  }
621  if (fillHist_) {
622  std::map<HcalDetId, TH1D*>::iterator itr1 = histHC_.find(hid);
623  if (itr1 != histHC_.end())
624  itr1->second->Fill(energyhit);
625  }
626  h_[hid.subdet() - 1]->Fill(energyhit);
627  if (energyhit > eMin_) {
628  hbhe_->Fill(hid.ieta(), hid.iphi());
629  ++count2;
630  if (id.subdetId() == HcalBarrel) {
631  ++count2HB;
632  hb_->Fill(hid.ieta(), hid.iphi());
633  } else {
634  ++count2HE;
635  he_->Fill(hid.ieta(), hid.iphi());
636  }
637  }
638  }
639  if (!fillHist_) {
640  if (Noise_ || runNZS_ || (energyhit >= eLow && energyhit <= eHigh)) {
641  std::map<std::pair<int, HcalDetId>, myInfo>::iterator itr1 =
642  myMap_.find(std::pair<int, HcalDetId>(algoBit, hid));
643  if (itr1 == myMap_.end()) {
644  myInfo info;
645  myMap_[std::pair<int, HcalDetId>(algoBit, hid)] = info;
646  itr1 = myMap_.find(std::pair<int, HcalDetId>(algoBit, hid));
647  }
648  itr1->second.theMB0 += weight;
649  itr1->second.theMB1 += (weight * energyhit);
650  itr1->second.theMB2 += (weight * energyhit * energyhit);
651  itr1->second.theMB3 += (weight * energyhit * energyhit * energyhit);
652  itr1->second.theMB4 += (weight * energyhit * energyhit * energyhit * energyhit);
653  itr1->second.runcheck = rnnum_;
654  }
655  }
656  } // HBHE_MB
657  if (fill) {
658  if (count > 0)
659  hbherun_->Fill(rnnum_, (double)(count2) / count);
660  if (countHB > 0)
661  hbrun_->Fill(rnnum_, (double)(count2HB) / countHB);
662  if (countHE > 0)
663  herun_->Fill(rnnum_, (double)(count2HE) / countHE);
664  }
665 #ifdef EDM_ML_DEBUG
666  edm::LogVerbatim("RecAnalyzer") << "HBHE " << count2 << ":" << count << ":" << (double)(count2) / count << "\t HB "
667  << count2HB << ":" << countHB << ":" << (double)(count2HB) / countHB << "\t HE "
668  << count2HE << ":" << countHE << ":" << (double)(count2HE) / countHE;
669 #endif
670  int countHF(0), count2HF(0);
671  // Signal part for HF
672  for (HFRecHitCollection::const_iterator hfItr = HithfMB.begin(); hfItr != HithfMB.end(); hfItr++) {
673  // Recalibration of energy
674  DetId mydetid = hfItr->id().rawId();
675  double icalconst(1.);
676  if (theRecalib_) {
677  std::map<DetId, double>::iterator itr = corrFactor_.find(mydetid);
678  if (itr != corrFactor_.end())
679  icalconst = itr->second;
680  }
681  HFRecHit aHit(hfItr->id(), hfItr->energy() * icalconst, hfItr->time());
682 
683  double energyhit = aHit.energy();
684  DetId id = (*hfItr).detid();
685  HcalDetId hid = HcalDetId(id);
686  ++countHF;
687  if (fill) {
688  for (unsigned int i = 0; i < hcalID_.size(); i++) {
689  if (hcalID_[i] == id.rawId()) {
690  histo_[i]->Fill(energyhit);
691  break;
692  }
693  }
694  if (fillHist_) {
695  std::map<HcalDetId, TH1D*>::iterator itr1 = histHC_.find(hid);
696  if (itr1 != histHC_.end())
697  itr1->second->Fill(energyhit);
698  }
699  h_[hid.subdet() - 1]->Fill(energyhit);
700  if (energyhit > eMin_) {
701  hf_->Fill(hid.ieta(), hid.iphi());
702  ++count2HF;
703  }
704  }
705 
706  //
707  // Remove PMT hits
708  //
709  if (!fillHist_) {
710  if (((Noise_ || runNZS_) && fabs(energyhit) <= 40.) || (energyhit >= eLowHF_ && energyhit <= eHighHF_)) {
711  std::map<std::pair<int, HcalDetId>, myInfo>::iterator itr1 =
712  myMap_.find(std::pair<int, HcalDetId>(algoBit, hid));
713  if (itr1 == myMap_.end()) {
714  myInfo info;
715  myMap_[std::pair<int, HcalDetId>(algoBit, hid)] = info;
716  itr1 = myMap_.find(std::pair<int, HcalDetId>(algoBit, hid));
717  }
718  itr1->second.theMB0 += weight;
719  itr1->second.theMB1 += (weight * energyhit);
720  itr1->second.theMB2 += (weight * energyhit * energyhit);
721  itr1->second.theMB3 += (weight * energyhit * energyhit * energyhit);
722  itr1->second.theMB4 += (weight * energyhit * energyhit * energyhit * energyhit);
723  itr1->second.runcheck = rnnum_;
724  }
725  }
726  }
727  if (fill && countHF > 0)
728  hfrun_->Fill(rnnum_, (double)(count2HF) / countHF);
729 #ifdef EDM_ML_DEBUG
730  if (count)
731  edm::LogVerbatim("RecAnalyzer") << "HF " << count2HF << ":" << countHF << ":" << (double)(count2HF) / countHF;
732 #endif
733 }
734 
735 //define this as a plug-in
ConfigurationDescriptions.h
RecAnalyzerMinbias::myInfo::theMB4
double theMB4
Definition: RecAnalyzerMinbias.cc:105
RecAnalyzerMinbias::trigbit_
std::vector< int > trigbit_
Definition: RecAnalyzerMinbias.cc:102
HFDataFrame.h
HcalRespCorrsRcd.h
runGCPTkAlMap.title
string title
Definition: runGCPTkAlMap.py:94
EDAnalyzer.h
mps_fire.i
i
Definition: mps_fire.py:428
edm::SortedCollection::const_iterator
std::vector< T >::const_iterator const_iterator
Definition: SortedCollection.h:80
MessageLogger.h
funct::false
false
Definition: Factorize.h:29
CaloRecHit::energy
constexpr float energy() const
Definition: CaloRecHit.h:29
edm::Handle::product
T const * product() const
Definition: Handle.h:70
RecAnalyzerMinbias::h_AmplitudeHE_
TH1D * h_AmplitudeHE_
Definition: RecAnalyzerMinbias.cc:98
RecAnalyzerMinbias::tok_hltL1GtMap_
edm::EDGetTokenT< L1GlobalTriggerObjectMapRecord > tok_hltL1GtMap_
Definition: RecAnalyzerMinbias.cc:116
TriggerResults.h
HcalTopology::maxDepthHE
int maxDepthHE() const
Definition: HcalTopology.h:140
RecAnalyzerMinbias::hf_
TH2D * hf_
Definition: RecAnalyzerMinbias.cc:95
HcalDetId::iphi
constexpr int iphi() const
get the cell iphi
Definition: HcalDetId.h:157
RecAnalyzerMinbias::tok_ew_
edm::EDGetTokenT< GenEventInfoProduct > tok_ew_
Definition: RecAnalyzerMinbias.cc:117
HcalCalibrationEventTypes.h
RecAnalyzerMinbias::HFsize
int HFsize
Definition: RecAnalyzerMinbias.cc:112
edm::Run
Definition: Run.h:45
edm::EDGetTokenT
Definition: EDGetToken.h:33
gpuClustering::adc
uint16_t *__restrict__ uint16_t const *__restrict__ adc
Definition: gpuClusterChargeCut.h:20
RecAnalyzerMinbias::eHighHE_
double eHighHE_
Definition: RecAnalyzerMinbias.cc:88
mps_merge.weight
weight
Definition: mps_merge.py:88
h
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
Definition: L1TUtmAlgorithmRcd.h:4
HBHERecHit
Definition: HBHERecHit.h:13
singleTopDQM_cfi.select
select
Definition: singleTopDQM_cfi.py:50
HcalTopology
Definition: HcalTopology.h:26
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89285
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
hcalSLHCTopologyConstants_cfi.maxDepthHB
maxDepthHB
Definition: hcalSLHCTopologyConstants_cfi.py:5
RecAnalyzerMinbias::he_
TH2D * he_
Definition: RecAnalyzerMinbias.cc:95
RecAnalyzerMinbias::h_AmplitudeHFtest_
TH1D * h_AmplitudeHFtest_
Definition: RecAnalyzerMinbias.cc:97
RecAnalyzerMinbias::corrFactor_
std::map< DetId, double > corrFactor_
Definition: RecAnalyzerMinbias.cc:91
RecAnalyzerMinbias::myInfo::theMB3
double theMB3
Definition: RecAnalyzerMinbias.cc:105
HODataFrame.h
RecAnalyzerMinbias::~RecAnalyzerMinbias
~RecAnalyzerMinbias() override
Definition: RecAnalyzerMinbias.cc:213
edm::SortedCollection
Definition: SortedCollection.h:49
edm::SortedCollection::size
size_type size() const
Definition: SortedCollection.h:215
info
static const TGPicture * info(bool iBackgroundIsBlack)
Definition: FWCollectionSummaryWidget.cc:153
RecAnalyzerMinbias
Definition: RecAnalyzerMinbias.cc:67
RecAnalyzerMinbias::myInfo::theMB1
double theMB1
Definition: RecAnalyzerMinbias.cc:105
RecAnalyzerMinbias::hbrun_
TProfile * hbrun_
Definition: RecAnalyzerMinbias.cc:99
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
edm::one::EDAnalyzer
Definition: EDAnalyzer.h:30
HcalBarrel
Definition: HcalAssistant.h:33
RecAnalyzerMinbias::mom3_MB
float mom3_MB
Definition: RecAnalyzerMinbias.cc:111
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
convertSQLiteXML.ok
bool ok
Definition: convertSQLiteXML.py:98
edm::Handle
Definition: AssociativeIterator.h:50
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
RecAnalyzerMinbias::tok_hbherecoMB_
edm::EDGetTokenT< HBHERecHitCollection > tok_hbherecoMB_
Definition: RecAnalyzerMinbias.cc:114
RecAnalyzerMinbias::analyze
void analyze(edm::Event const &, edm::EventSetup const &) override
Definition: RecAnalyzerMinbias.cc:421
RecAnalyzerMinbias::mom2_MB
float mom2_MB
Definition: RecAnalyzerMinbias.cc:111
RecAnalyzerMinbias::endRun
void endRun(edm::Run const &, edm::EventSetup const &) override
Definition: RecAnalyzerMinbias.cc:79
RecAnalyzerMinbias::trigbit
int trigbit
Definition: RecAnalyzerMinbias.cc:110
DetId
Definition: DetId.h:17
MakerMacros.h
RecAnalyzerMinbias::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: RecAnalyzerMinbias.cc:215
RecAnalyzerMinbias::myInfo::theMB0
double theMB0
Definition: RecAnalyzerMinbias.cc:105
HFRecHit
Definition: HFRecHit.h:11
RecAnalyzerMinbias::cells
int cells
Definition: RecAnalyzerMinbias.cc:110
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
RecAnalyzerMinbias::h_AmplitudeHEtest_
TH1D * h_AmplitudeHEtest_
Definition: RecAnalyzerMinbias.cc:96
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
edm::SortedCollection::begin
const_iterator begin() const
Definition: SortedCollection.h:262
Service.h
HcalDigiCollections.h
PVValHelper::eta
Definition: PVValidationHelpers.h:70
RecAnalyzerMinbias::tok_gtRec_
edm::EDGetTokenT< L1GlobalTriggerReadoutRecord > tok_gtRec_
Definition: RecAnalyzerMinbias.cc:123
RecAnalyzerMinbias::histo_
std::vector< TH1D * > histo_
Definition: RecAnalyzerMinbias.cc:100
RecAnalyzerMinbias::runNZS_
bool runNZS_
Definition: RecAnalyzerMinbias.cc:86
RecAnalyzerMinbias::mom4_MB
float mom4_MB
Definition: RecAnalyzerMinbias.cc:111
RecAnalyzerMinbias::tok_hodigi_
edm::EDGetTokenT< HODigiCollection > tok_hodigi_
Definition: RecAnalyzerMinbias.cc:120
RecAnalyzerMinbias::hb_
TH2D * hb_
Definition: RecAnalyzerMinbias.cc:95
RecAnalyzerMinbias::Noise_
bool Noise_
Definition: RecAnalyzerMinbias.cc:86
RecAnalyzerMinbias::h_AmplitudeHB_
TH1D * h_AmplitudeHB_
Definition: RecAnalyzerMinbias.cc:98
RecAnalyzerMinbias::tok_qie10digi_
edm::EDGetTokenT< QIE10DigiCollection > tok_qie10digi_
Definition: RecAnalyzerMinbias.cc:122
submitPVResolutionJobs.count
count
Definition: submitPVResolutionJobs.py:352
HcalOuter
Definition: HcalAssistant.h:35
RecAnalyzerMinbias::mysubd
int mysubd
Definition: RecAnalyzerMinbias.cc:110
h
dqmdumpme.k
k
Definition: dqmdumpme.py:60
ParameterSetDescription.h
RecAnalyzerMinbias::eLowHE_
double eLowHE_
Definition: RecAnalyzerMinbias.cc:88
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
RecAnalyzerMinbias::theRecalib_
bool theRecalib_
Definition: RecAnalyzerMinbias.cc:86
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
hcalSLHCTopologyConstants_cfi.maxDepthHE
maxDepthHE
Definition: hcalSLHCTopologyConstants_cfi.py:6
TFileService.h
RecAnalyzerMinbias::beginRun
void beginRun(edm::Run const &, edm::EventSetup const &) override
Definition: RecAnalyzerMinbias.cc:351
RecAnalyzerMinbias::myInfo
Definition: RecAnalyzerMinbias.cc:104
hh
const auto & hh
Definition: CAHitNtupletGeneratorKernelsImpl.h:455
ntuplemaker.fill
fill
Definition: ntuplemaker.py:304
RecAnalyzerMinbias::mom0_MB
float mom0_MB
Definition: RecAnalyzerMinbias.cc:111
RecAnalyzerMinbias::eMin_
double eMin_
Definition: RecAnalyzerMinbias.cc:89
HcalDetId::ieta
constexpr int ieta() const
get the cell ieta
Definition: HcalDetId.h:155
edm::ParameterSet
Definition: ParameterSet.h:47
RecAnalyzerMinbias::tok_htopo_
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord > tok_htopo_
Definition: RecAnalyzerMinbias.cc:124
GenEventInfoProduct.h
Event.h
RecAnalyzerMinbias::tok_hfdigi_
edm::EDGetTokenT< HFDigiCollection > tok_hfdigi_
Definition: RecAnalyzerMinbias.cc:121
RecAnalyzerMinbias::myInfo::runcheck
double runcheck
Definition: RecAnalyzerMinbias.cc:105
RecAnalyzerMinbias::runMin_
int runMin_
Definition: RecAnalyzerMinbias.cc:90
edm::SortedCollection::end
const_iterator end() const
Definition: SortedCollection.h:267
HcalDetId.h
HcalDetId::subdet
constexpr HcalSubdetector subdet() const
get the subdetector
Definition: HcalDetId.h:138
HcalDetId
Definition: HcalDetId.h:12
edm::Service< TFileService >
TriggerNames.h
iEvent
int iEvent
Definition: GenABIO.cc:224
RecAnalyzerMinbias::myTree1_
TTree * myTree1_
Definition: RecAnalyzerMinbias.cc:93
RecAnalyzerMinbias::fs_
edm::Service< TFileService > fs_
Definition: RecAnalyzerMinbias.cc:85
RecAnalyzerMinbias::endJob
void endJob() override
Definition: RecAnalyzerMinbias.cc:318
RecAnalyzerMinbias::eHighHB_
double eHighHB_
Definition: RecAnalyzerMinbias.cc:88
edm::EventSetup
Definition: EventSetup.h:58
RecAnalyzerMinbias::beginJob
void beginJob() override
Definition: RecAnalyzerMinbias.cc:246
HcalSubdetector.h
RecAnalyzerMinbias::tok_hbhedigi_
edm::EDGetTokenT< HBHEDigiCollection > tok_hbhedigi_
Definition: RecAnalyzerMinbias.cc:118
HcalRespCorrs.h
RecAnalyzerMinbias::init_
bool init_
Definition: RecAnalyzerMinbias.cc:87
RecAnalyzerMinbias::h_AmplitudeHF_
TH1D * h_AmplitudeHF_
Definition: RecAnalyzerMinbias.cc:98
RecAnalyzerMinbias::myInfo::myInfo
myInfo()
Definition: RecAnalyzerMinbias.cc:106
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord >
RecAnalyzerMinbias::mom1_MB
float mom1_MB
Definition: RecAnalyzerMinbias.cc:111
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition: EventSetup.h:127
HcalSubdetector
HcalSubdetector
Definition: HcalAssistant.h:31
HcalForward
Definition: HcalAssistant.h:36
HcalTopology::valid
bool valid(const DetId &id) const override
Definition: HcalTopology.cc:225
DDAxes::phi
RecAnalyzerMinbias::myInfo::theMB2
double theMB2
Definition: RecAnalyzerMinbias.cc:105
RecAnalyzerMinbias::tok_qie11digi_
edm::EDGetTokenT< QIE11DigiCollection > tok_qie11digi_
Definition: RecAnalyzerMinbias.cc:119
RecAnalyzerMinbias::rnnum_
double rnnum_
Definition: RecAnalyzerMinbias.cc:103
HcalTopology.h
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
RecAnalyzerMinbias::myTree_
TTree * myTree_
Definition: RecAnalyzerMinbias.cc:93
genParticles2HepMC_cfi.genEventInfo
genEventInfo
Definition: genParticles2HepMC_cfi.py:6
RecAnalyzerMinbias::h_
TH1D * h_[4]
Definition: RecAnalyzerMinbias.cc:94
RecAnalyzerMinbias::fillHist_
bool fillHist_
Definition: RecAnalyzerMinbias.cc:87
QIE10DataFrame
Definition: QIE10DataFrame.h:11
HcalEndcap
Definition: HcalAssistant.h:34
Frameworkfwd.h
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:29
RecAnalyzerMinbias::hbhe_
TH2D * hbhe_
Definition: RecAnalyzerMinbias.cc:95
TrackerOfflineValidation_Dqm_cff.xmax
xmax
Definition: TrackerOfflineValidation_Dqm_cff.py:11
QIE11DataFrame
Definition: QIE11DataFrame.h:11
RecAnalyzerMinbias::rnnumber
double rnnumber
Definition: RecAnalyzerMinbias.cc:109
RecAnalyzerMinbias::eHighHF_
double eHighHF_
Definition: RecAnalyzerMinbias.cc:89
RecAnalyzerMinbias::depth
int depth
Definition: RecAnalyzerMinbias.cc:110
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
EventSetup.h
L1GlobalTriggerObjectMapRecord::gtObjectMap
const std::vector< L1GlobalTriggerObjectMap > & gtObjectMap() const
get / set the vector of object maps
Definition: L1GlobalTriggerObjectMapRecord.h:64
RecAnalyzerMinbias::RecAnalyzerMinbias
RecAnalyzerMinbias(const edm::ParameterSet &)
Definition: RecAnalyzerMinbias.cc:128
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
HcalRecHitCollections.h
RecAnalyzerMinbias::hbherun_
TProfile * hbherun_
Definition: RecAnalyzerMinbias.cc:99
timingPdfMaker.infile
infile
Definition: timingPdfMaker.py:350
RecAnalyzerMinbias::eLowHB_
double eLowHB_
Definition: RecAnalyzerMinbias.cc:88
RecAnalyzerMinbias::hfrun_
TProfile * hfrun_
Definition: RecAnalyzerMinbias.cc:99
RecAnalyzerMinbias::hcalID_
std::vector< unsigned int > hcalID_
Definition: RecAnalyzerMinbias.cc:92
RecAnalyzerMinbias::tok_hfrecoMB_
edm::EDGetTokenT< HFRecHitCollection > tok_hfrecoMB_
Definition: RecAnalyzerMinbias.cc:115
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
RecAnalyzerMinbias::histHC_
std::map< HcalDetId, TH1D * > histHC_
Definition: RecAnalyzerMinbias.cc:101
L1GlobalTriggerObjectMapRecord.h
ParameterSet.h
RecAnalyzerMinbias::iphi
int iphi
Definition: RecAnalyzerMinbias.cc:110
TrackerOfflineValidation_Dqm_cff.xmin
xmin
Definition: TrackerOfflineValidation_Dqm_cff.py:10
RecAnalyzerMinbias::ieta
int ieta
Definition: RecAnalyzerMinbias.cc:110
RecAnalyzerMinbias::ignoreL1_
bool ignoreL1_
Definition: RecAnalyzerMinbias.cc:86
RecAnalyzerMinbias::herun_
TProfile * herun_
Definition: RecAnalyzerMinbias.cc:99
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
RecAnalyzerMinbias::eLowHF_
double eLowHF_
Definition: RecAnalyzerMinbias.cc:89
edm::Event
Definition: Event.h:73
L1GlobalTriggerObjectMap.h
edm::Log
Definition: MessageLogger.h:70
RecAnalyzerMinbias::h_AmplitudeHBtest_
TH1D * h_AmplitudeHBtest_
Definition: RecAnalyzerMinbias.cc:96
edm::InputTag
Definition: InputTag.h:15
L1GlobalTriggerReadoutRecord.h
RecAnalyzerMinbias::analyzeHcal
void analyzeHcal(const HBHERecHitCollection &, const HFRecHitCollection &, int, bool, double)
Definition: RecAnalyzerMinbias.cc:590
RecAnalyzerMinbias::runMax_
int runMax_
Definition: RecAnalyzerMinbias.cc:90
weight
Definition: weight.py:1
RecAnalyzerMinbias::myMap_
std::map< std::pair< int, HcalDetId >, myInfo > myMap_
Definition: RecAnalyzerMinbias.cc:113
RecAnalyzerMinbias::HBHEsize
int HBHEsize
Definition: RecAnalyzerMinbias.cc:112
TFileService::make
T * make(const Args &... args) const
make new ROOT object
Definition: TFileService.h:64
RecAnalyzerMinbias::extraHist_
bool extraHist_
Definition: RecAnalyzerMinbias.cc:87
HBHEDataFrame.h
HcalTopology::maxDepthHB
int maxDepthHB() const
Definition: HcalTopology.h:139