CMS 3D CMS Logo

HcalHBHEMuonAnalyzer.cc
Go to the documentation of this file.
1 #include <memory>
2 #include <iostream>
3 #include <fstream>
4 #include <vector>
5 #include <TFile.h>
6 #include <TTree.h>
7 #include "TPRegexp.h"
8 
9 // user include files
19 
27 
29 
39 
42 
45 
49 
53 
57 
69 
70 //#define EDM_ML_DEBUG
71 
72 class HcalHBHEMuonAnalyzer : public edm::one::EDAnalyzer<edm::one::WatchRuns,edm::one::SharedResources> {
73 
74 public:
75  explicit HcalHBHEMuonAnalyzer(const edm::ParameterSet&);
76 
77  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
78 
79 private:
80  void beginJob() override;
81  void analyze(edm::Event const&, edm::EventSetup const&) override;
82  void beginRun(edm::Run const&, edm::EventSetup const&) override;
83  void endRun(edm::Run const&, edm::EventSetup const&) override {}
84  void clearVectors();
85  int matchId(const HcalDetId&, const HcalDetId&);
86  double activeLength(const DetId&);
87  bool isGoodVertex(const reco::Vertex& vtx);
88  double respCorr(const DetId& id);
89  double gainFactor(const edm::ESHandle<HcalDbService>&, const HcalDetId& id);
90  int depth16HE(int ieta, int iphi);
91  bool goodCell(const HcalDetId& hcid, const reco::Track* pTrack,
92  const CaloGeometry* geo, const MagneticField* bField);
93 
94  // ----------member data ---------------------------
100  const std::vector<std::string> triggers_;
101  const int verbosity_, useRaw_;
107 
111 
119 
121  static const int depthMax_ = 7;
122  TTree *tree_;
124  unsigned int goodVertex_;
126  std::vector<double> ptGlob_, etaGlob_, phiGlob_, energyMuon_, pMuon_;
129  std::vector<bool> innerTrack_, outerTrack_, globalTrack_;
130  std::vector<double> chiTracker_, dxyTracker_, dzTracker_;
132  std::vector<double> tight_validFraction_, outerTrackChi_;
136  std::vector<int> globalMuonHits_, matchedStat_;
138  std::vector<double> isolationR04_, isolationR03_;
139  std::vector<double> ecalEnergy_, hcalEnergy_, hoEnergy_;
140  std::vector<bool> matchedId_, hcalHot_;
141  std::vector<double> ecal3x3Energy_, hcal1x1Energy_;
142  std::vector<unsigned int> ecalDetId_, hcalDetId_, ehcalDetId_;
143  std::vector<double> hcalDepthEnergy_[depthMax_];
144  std::vector<double> hcalDepthActiveLength_[depthMax_];
145  std::vector<double> hcalDepthEnergyHot_[depthMax_];
146  std::vector<double> hcalDepthActiveLengthHot_[depthMax_];
147  std::vector<double> hcalDepthChargeHot_[depthMax_];
148  std::vector<double> hcalDepthChargeHotBG_[depthMax_];
149  std::vector<double> hcalDepthEnergyCorr_[depthMax_];
150  std::vector<double> hcalDepthEnergyHotCorr_[depthMax_];
151  std::vector<bool> hcalDepthMatch_[depthMax_];
152  std::vector<bool> hcalDepthMatchHot_[depthMax_];
154  std::vector<std::string> all_triggers_;
155  std::vector<int> hltresults_;
156 
157  std::vector<HcalDDDRecConstants::HcalActiveLength> actHB, actHE;
158  std::map<DetId,double> corrValue_;
160 
161 };
162 
164  hlTriggerResults_(iConfig.getParameter<edm::InputTag>("hlTriggerResults")),
165  labelEBRecHit_(iConfig.getParameter<edm::InputTag>("labelEBRecHit")),
166  labelEERecHit_(iConfig.getParameter<edm::InputTag>("labelEERecHit")),
167  labelHBHERecHit_(iConfig.getParameter<edm::InputTag>("labelHBHERecHit")),
168  labelVtx_(iConfig.getParameter<std::string>("labelVertex")),
169  labelBS_(iConfig.getParameter<std::string>("labelBeamSpot")),
170  labelMuon_(iConfig.getParameter<std::string>("labelMuon")),
171  fileInCorr_(iConfig.getUntrackedParameter<std::string>("fileInCorr","")),
172  triggers_(iConfig.getParameter<std::vector<std::string>>("triggers")),
173  verbosity_(iConfig.getUntrackedParameter<int>("verbosity",0)),
174  useRaw_(iConfig.getParameter<int>("useRaw")),
175  unCorrect_(iConfig.getParameter<bool>("unCorrect")),
176  collapseDepth_(iConfig.getParameter<bool>("collapseDepth")),
177  isItPlan1_(iConfig.getParameter<bool>("isItPlan1")),
178  ignoreHECorr_(iConfig.getUntrackedParameter<bool>("ignoreHECorr",false)),
179  isItPreRecHit_(iConfig.getUntrackedParameter<bool>("isItPreRecHit",false)),
180  getCharge_(iConfig.getParameter<bool>("getCharge")),
181  writeRespCorr_(iConfig.getUntrackedParameter<bool>("writeRespCorr",false)),
183 
184  usesResource(TFileService::kSharedResource);
185  //now do what ever initialization is needed
186  kount_ = 0;
187  maxDepth_ = iConfig.getUntrackedParameter<int>("maxDepth",4);
189  else if (maxDepth_ < 1) maxDepth_ = 4;
190  std::string modnam = iConfig.getUntrackedParameter<std::string>("moduleName","");
191  std::string procnm = iConfig.getUntrackedParameter<std::string>("processName","");
192 
194  tok_trigRes_ = consumes<edm::TriggerResults>(hlTriggerResults_);
195  tok_bs_ = consumes<reco::BeamSpot>(labelBS_);
196  tok_EB_ = consumes<EcalRecHitCollection>(labelEBRecHit_);
197  tok_EE_ = consumes<EcalRecHitCollection>(labelEERecHit_);
198  tok_HBHE_ = consumes<HBHERecHitCollection>(labelHBHERecHit_);
199  if (modnam.empty()) {
200  tok_Vtx_ = consumes<reco::VertexCollection>(labelVtx_);
201  tok_Muon_ = consumes<reco::MuonCollection>(labelMuon_);
202  edm::LogVerbatim("HBHEMuon") << "Labels used: Trig " << hlTriggerResults_
203  << " Vtx " << labelVtx_ << " EB "
204  << labelEBRecHit_ << " EE "
205  << labelEERecHit_ << " HBHE "
206  << labelHBHERecHit_ << " MU " << labelMuon_;
207  } else {
208  tok_Vtx_ = consumes<reco::VertexCollection>(edm::InputTag(modnam,labelVtx_,procnm));
209  tok_Muon_ = consumes<reco::MuonCollection>(edm::InputTag(modnam,labelMuon_,procnm));
210  edm::LogVerbatim("HBHEMuon") << "Labels used Trig " << hlTriggerResults_
211  << "\n Vtx " << edm::InputTag(modnam,labelVtx_,procnm)
212  << "\n EB " << labelEBRecHit_
213  << "\n EE " << labelEERecHit_
214  << "\n HBHE " << labelHBHERecHit_
215  << "\n MU " << edm::InputTag(modnam,labelMuon_,procnm);
216  }
217 
218  if (!fileInCorr_.empty()) {
219  std::ifstream infile(fileInCorr_.c_str());
220  if (infile.is_open()) {
221  while (true) {
222  unsigned int id;
223  double cfac;
224  infile >> id >> cfac;
225  if (!infile.good()) break;
226  corrValue_[DetId(id)] = cfac;
227  }
228  infile.close();
229  }
230  }
231  useMyCorr_ = (!corrValue_.empty());
232  edm::LogVerbatim("HBHEMuon") << "Flags used: UseRaw " << useRaw_
233  << " GetCharge " << getCharge_ << " UnCorrect "
234  << unCorrect_ << " IgnoreHECorr "
235  << ignoreHECorr_ << " CollapseDepth "
236  << collapseDepth_ << ":" << mergedDepth_
237  << " IsItPlan1 " << isItPlan1_
238  << " IsItPreRecHit " << isItPreRecHit_
239  << " UseMyCorr " << useMyCorr_;
240 }
241 
242 //
243 // member functions
244 //
245 
246 // ------------ method called for each event ------------
248  ++kount_;
249  clearVectors();
250  runNumber_ = iEvent.id().run();
251  eventNumber_ = iEvent.id().event();
252  lumiNumber_ = iEvent.id().luminosityBlock();
253  bxNumber_ = iEvent.bunchCrossing();
254 #ifdef EDM_ML_DEBUG
255  edm::LogVerbatim("HBHEMuon") << "Run " << runNumber_ << " Event "
256  << eventNumber_ << " Lumi " << lumiNumber_
257  << " BX " << bxNumber_ << std::endl;
258 #endif
260  iEvent.getByToken(tok_trigRes_, _Triggers);
261 #ifdef EDM_ML_DEBUG
262  if ((verbosity_/10000)%10>0)
263  edm::LogVerbatim("HBHEMuon") << "Size of all triggers "
264  << all_triggers_.size() << std::endl;
265 #endif
266  int Ntriggers = all_triggers_.size();
267 #ifdef EDM_ML_DEBUG
268  if ((verbosity_/10000)%10>0)
269  edm::LogVerbatim("HBHEMuon") << "Size of HLT MENU: " << _Triggers->size()
270  << std::endl;
271 #endif
272  if (_Triggers.isValid()) {
273  const edm::TriggerNames &triggerNames_ = iEvent.triggerNames(*_Triggers);
274  std::vector<int> index;
275  for (int i=0; i<Ntriggers; i++) {
276  index.push_back(triggerNames_.triggerIndex(all_triggers_[i]));
277  int triggerSize = int( _Triggers->size());
278 #ifdef EDM_ML_DEBUG
279  if ((verbosity_/10000)%10>0)
280  edm::LogVerbatim("HBHEMuon") << "outside loop " << index[i]
281  << "\ntriggerSize " << triggerSize
282  << std::endl;
283 #endif
284  if (index[i] < triggerSize) {
285  hltresults_.push_back(_Triggers->accept(index[i]));
286 #ifdef EDM_ML_DEBUG
287  if ((verbosity_/10000)%10>0)
288  edm::LogVerbatim("HBHEMuon") << "Trigger_info " << triggerSize
289  << " triggerSize " << index[i]
290  << " trigger_index " << hltresults_.at(i)
291  << " hltresult" << std::endl;
292 #endif
293  } else {
294  if ((verbosity_/10000)%10>0)
295  edm::LogVerbatim("HBHEMuon") << "Requested HLT path \""
296  << "\" does not exist\n";
297  }
298  }
299  }
300 
301  // get handles to calogeometry and calotopology
303  iSetup.get<CaloGeometryRecord>().get(pG);
304  const CaloGeometry* geo = pG.product();
305 
307  iSetup.get<IdealMagneticFieldRecord>().get(bFieldH);
308  const MagneticField* bField = bFieldH.product();
309 
311  iSetup.get<EcalChannelStatusRcd>().get(ecalChStatus);
312  const EcalChannelStatus* theEcalChStatus = ecalChStatus.product();
313 
315  iSetup.get<EcalSeverityLevelAlgoRcd>().get(sevlv);
316 
317  edm::ESHandle<CaloTopology> theCaloTopology;
318  iSetup.get<CaloTopologyRecord>().get(theCaloTopology);
319  const CaloTopology *caloTopology = theCaloTopology.product();
320 
321  edm::ESHandle<HcalDbService> conditions;
322  iSetup.get<HcalDbRecord>().get(conditions);
323 
324  // Relevant blocks from iEvent
326  iEvent.getByToken(tok_Vtx_, vtx);
327  edm::Handle<reco::BeamSpot> beamSpotH;
328  iEvent.getByToken(tok_bs_, beamSpotH);
329 
330  edm::Handle<EcalRecHitCollection> barrelRecHitsHandle;
331  iEvent.getByToken(tok_EB_, barrelRecHitsHandle);
332  edm::Handle<EcalRecHitCollection> endcapRecHitsHandle;
333  iEvent.getByToken(tok_EE_, endcapRecHitsHandle);
334 
336  iEvent.getByToken(tok_HBHE_, hbhe);
337 
339  iEvent.getByToken(tok_Muon_, _Muon);
340 
341  // require a good vertex
342  math::XYZPoint pvx;
343  bool goodVtx(false);
344  goodVertex_ = 0;
345  if (vtx.isValid()) {
346  reco::VertexCollection::const_iterator firstGoodVertex = vtx->end();
347  for (reco::VertexCollection::const_iterator it = vtx->begin();
348  it != vtx->end(); it++) {
349  if (isGoodVertex(*it)) {
350  if (firstGoodVertex == vtx->end()) firstGoodVertex = it;
351  ++goodVertex_;
352  }
353  }
354  if (firstGoodVertex != vtx->end()) {
355  pvx = firstGoodVertex->position();
356  goodVtx = true;
357  }
358  }
359  if (!goodVtx) {
360  if (beamSpotH.isValid()) {
361  pvx = beamSpotH->position();
362  goodVtx = true;
363  }
364  }
365  if (!goodVtx) {
366 #ifdef EDM_ML_DEBUG
367  edm::LogVerbatim("HBHEMuon") << "No Good Vertex found == Reject\n";
368 #endif
369  return;
370  }
371 
372  bool accept(false);
373  if (_Muon.isValid() && barrelRecHitsHandle.isValid() &&
374  endcapRecHitsHandle.isValid() && hbhe.isValid()) {
375  for (reco::MuonCollection::const_iterator RecMuon = _Muon->begin(); RecMuon!= _Muon->end(); ++RecMuon) {
376 
377  muon_is_good_.push_back(RecMuon->isPFMuon());
378  muon_global_.push_back(RecMuon->isGlobalMuon());
379  muon_tracker_.push_back(RecMuon->isTrackerMuon());
380  ptGlob_.push_back((RecMuon)->pt());
381  etaGlob_.push_back(RecMuon->eta());
382  phiGlob_.push_back(RecMuon->phi());
383  energyMuon_.push_back(RecMuon->energy());
384  pMuon_.push_back(RecMuon->p());
385 #ifdef EDM_ML_DEBUG
386  edm::LogVerbatim("HBHEMuon") << "Energy:" << RecMuon->energy() << " P:"
387  << RecMuon->p() << std::endl;
388 #endif
389  muon_trkKink.push_back(RecMuon->combinedQuality().trkKink);
390  muon_chi2LocalPosition.push_back(RecMuon->combinedQuality().chi2LocalPosition);
391  muon_segComp.push_back(muon::segmentCompatibility(*RecMuon));
392  // acessing tracker hits info
393  if (RecMuon->track().isNonnull()) {
394  trackerLayer_.push_back(RecMuon->track()->hitPattern().trackerLayersWithMeasurement());
395  } else {
396  trackerLayer_.push_back(-1);
397  }
398  if (RecMuon->innerTrack().isNonnull()) {
399  innerTrack_.push_back(true);
400  numPixelLayers_.push_back(RecMuon->innerTrack()->hitPattern().pixelLayersWithMeasurement());
401  chiTracker_.push_back(RecMuon->innerTrack()->normalizedChi2());
402  dxyTracker_.push_back(fabs(RecMuon->innerTrack()->dxy(pvx)));
403  dzTracker_.push_back(fabs(RecMuon->innerTrack()->dz(pvx)));
404  innerTrackpt_.push_back(RecMuon->innerTrack()->pt());
405  innerTracketa_.push_back(RecMuon->innerTrack()->eta());
406  innerTrackphi_.push_back(RecMuon->innerTrack()->phi());
407  tight_PixelHits_.push_back(RecMuon->innerTrack()->hitPattern().numberOfValidPixelHits());
408  tight_validFraction_.push_back(RecMuon->innerTrack()->validFraction());
409  } else {
410  innerTrack_.push_back(false);
411  numPixelLayers_.push_back(0);
412  chiTracker_.push_back(0);
413  dxyTracker_.push_back(0);
414  dzTracker_.push_back(0);
415  innerTrackpt_.push_back(0);
416  innerTracketa_.push_back(0);
417  innerTrackphi_.push_back(0);
418  tight_PixelHits_.push_back(0);
419  tight_validFraction_.push_back(-99);
420  }
421  // outer track info
422  if (RecMuon->outerTrack().isNonnull()) {
423  outerTrack_.push_back(true);
424  outerTrackPt_.push_back(RecMuon->outerTrack()->pt());
425  outerTrackEta_.push_back(RecMuon->outerTrack()->eta());
426  outerTrackPhi_.push_back(RecMuon->outerTrack()->phi());
427  outerTrackChi_.push_back(RecMuon->outerTrack()->normalizedChi2());
428  outerTrackHits_.push_back(RecMuon->outerTrack()->numberOfValidHits());
429  outerTrackRHits_.push_back(RecMuon->outerTrack()->recHitsSize());
430  } else {
431  outerTrack_.push_back(false);
432  outerTrackPt_.push_back(0);
433  outerTrackEta_.push_back(0);
434  outerTrackPhi_.push_back(0);
435  outerTrackChi_.push_back(0);
436  outerTrackHits_.push_back(0);
437  outerTrackRHits_.push_back(0);
438  }
439  // Tight Muon cuts
440  if (RecMuon->globalTrack().isNonnull()) {
441  globalTrack_.push_back(true);
442  chiGlobal_.push_back(RecMuon->globalTrack()->normalizedChi2());
443  globalMuonHits_.push_back(RecMuon->globalTrack()->hitPattern().numberOfValidMuonHits());
444  matchedStat_.push_back(RecMuon->numberOfMatchedStations());
445  globalTrckPt_.push_back(RecMuon->globalTrack()->pt());
446  globalTrckEta_.push_back(RecMuon->globalTrack()->eta());
447  globalTrckPhi_.push_back(RecMuon->globalTrack()->phi());
448  tight_TransImpara_.push_back(fabs(RecMuon->muonBestTrack()->dxy(pvx)));
449  tight_LongPara_.push_back(fabs(RecMuon->muonBestTrack()->dz(pvx)));
450  } else {
451  globalTrack_.push_back(false);
452  chiGlobal_.push_back(0);
453  globalMuonHits_.push_back(0);
454  matchedStat_.push_back(0);
455  globalTrckPt_.push_back(0);
456  globalTrckEta_.push_back(0);
457  globalTrckPhi_.push_back(0);
458  tight_TransImpara_.push_back(0);
459  tight_LongPara_.push_back(0);
460  }
461 
462  isolationR04_.push_back(((RecMuon->pfIsolationR04().sumChargedHadronPt + std::max(0.,RecMuon->pfIsolationR04().sumNeutralHadronEt + RecMuon->pfIsolationR04().sumPhotonEt - (0.5 *RecMuon->pfIsolationR04().sumPUPt))) / RecMuon->pt()) );
463 
464  isolationR03_.push_back(((RecMuon->pfIsolationR03().sumChargedHadronPt + std::max(0.,RecMuon->pfIsolationR03().sumNeutralHadronEt + RecMuon->pfIsolationR03().sumPhotonEt - (0.5 * RecMuon->pfIsolationR03().sumPUPt))) / RecMuon->pt()));
465 
466  ecalEnergy_.push_back(RecMuon->calEnergy().emS9);
467  hcalEnergy_.push_back(RecMuon->calEnergy().hadS9);
468  hoEnergy_.push_back(RecMuon->calEnergy().hoS9);
469 
470  double eEcal(0), eHcal(0), activeLengthTot(0), activeLengthHotTot(0);
471  double eHcalDepth[depthMax_], eHcalDepthHot[depthMax_];
472  double eHcalDepthC[depthMax_], eHcalDepthHotC[depthMax_];
473  double cHcalDepthHot[depthMax_], cHcalDepthHotBG[depthMax_];
474  double activeL[depthMax_], activeHotL[depthMax_];
475  bool matchDepth[depthMax_], matchDepthHot[depthMax_];
476  HcalDetId eHcalDetId[depthMax_];
477  unsigned int isHot(0);
478  bool tmpmatch(false);
479  for (int i=0; i<depthMax_; ++i) {
480  eHcalDepth[i] = eHcalDepthHot[i] = 0;
481  eHcalDepthC[i] = eHcalDepthHotC[i] = 0;
482  cHcalDepthHot[i] = cHcalDepthHotBG[i]= 0;
483  activeL[i] = activeHotL[i] = 0;
484  matchDepth[i] = matchDepthHot[i] = true;
485  }
486  if (RecMuon->innerTrack().isNonnull()) {
487  const reco::Track* pTrack = (RecMuon->innerTrack()).get();
488  spr::propagatedTrackID trackID = spr::propagateCALO(pTrack, geo, bField, (((verbosity_/100)%10>0)));
489  if ((RecMuon->p()>10.0) && (trackID.okHCAL)) accept = true;
490 
491  ecalDetId_.push_back((trackID.detIdECAL)());
492  hcalDetId_.push_back((trackID.detIdHCAL)());
493  ehcalDetId_.push_back((trackID.detIdEHCAL)());
494 
496  std::pair<bool,HcalDetId> info = spr::propagateHCALBack(pTrack, geo, bField, (((verbosity_/100)%10>0)));
497  if (info.first) {
498  check = info.second;
499  }
500 
501  bool okE = trackID.okECAL;
502  if (okE) {
503  const DetId isoCell(trackID.detIdECAL);
504  std::pair<double,bool> e3x3 = spr::eECALmatrix(isoCell,barrelRecHitsHandle,endcapRecHitsHandle,*theEcalChStatus,geo,caloTopology,sevlv.product(),1,1,-100.0,-100.0,-500.0,500.0,false);
505  eEcal = e3x3.first;
506  okE = e3x3.second;
507  }
508 #ifdef EDM_ML_DEBUG
509  edm::LogVerbatim("HBHEMuon") << "Propagate Track to ECAL: " << okE
510  << ":" << trackID.okECAL << " E " <<eEcal;
511 #endif
512 
513  if (trackID.okHCAL) {
514  DetId closestCell(trackID.detIdHCAL);
515  HcalDetId hcidt(closestCell.rawId());
516  if ((hcidt.ieta() == check.ieta()) && (hcidt.iphi() == check.iphi()))
517  tmpmatch = true;
518 #ifdef EDM_ML_DEBUG
519  edm::LogVerbatim("HBHEMuon") << "Front " << hcidt << " Back "
520  << info.first << ":" << check
521  << " Match " << tmpmatch;
522 #endif
523 
524  HcalSubdetector subdet = hcidt.subdet();
525  int ieta = hcidt.ieta();
526  int iphi = hcidt.iphi();
527  bool hborhe = (std::abs(ieta) == 16);
528 
529  eHcal = spr::eHCALmatrix(theHBHETopology_, closestCell, hbhe,0,0, false, true, -100.0, -100.0, -100.0, -100.0, -500.,500.,useRaw_);
530  std::vector<std::pair<double,int> > ehdepth;
531  spr::energyHCALCell((HcalDetId)closestCell, hbhe, ehdepth, maxDepth_, -100.0, -100.0, -100.0, -100.0, -500.0, 500.0, useRaw_, depth16HE(ieta,iphi), (((verbosity_/1000)%10)>0));
532  for (int i=0; i<depthMax_; ++i) eHcalDetId[i] = HcalDetId();
533  for (unsigned int i=0; i<ehdepth.size(); ++i) {
534  HcalSubdetector subdet0 = (hborhe) ? ((ehdepth[i].second >= depth16HE(ieta,iphi)) ? HcalEndcap : HcalBarrel) : subdet;
535  HcalDetId hcid0(subdet0,ieta,iphi,ehdepth[i].second);
536  double actL = activeLength(DetId(hcid0));
537  double ene = ehdepth[i].first;
538  bool tmpC(false);
539  if (ene > 0.0) {
540  if (!(theHBHETopology_->validHcal(hcid0))) {
541  edm::LogWarning("HBHEMuon") << "(1) Invalid ID " << hcid0
542  << " with E = " << ene;
543  edm::LogWarning("HBHEMuon") << HcalDetId(closestCell)
544  << " with " << ehdepth.size()
545  << " depths:";
546  for (const auto& ehd : ehdepth)
547  edm::LogWarning("HBHEMuon") << " " << ehd.second << ":"
548  << ehd.first;
549  } else {
550  tmpC = goodCell(hcid0, pTrack, geo, bField);
551  double enec(ene);
552  if (unCorrect_) {
553  double corr = (ignoreHECorr_ && (subdet0==HcalEndcap)) ? 1.0 : respCorr(DetId(hcid0));
554  if (corr != 0) ene /= corr;
555 #ifdef EDM_ML_DEBUG
556  HcalDetId id = (isItPlan1_ && isItPreRecHit_) ? hdc_->mergedDepthDetId(hcid0) : hcid0;
557  edm::LogVerbatim("HBHEMuon") << hcid0 << ":" << id << " Corr "
558  << corr;
559 #endif
560  }
561  int depth = ehdepth[i].second - 1;
562  if (collapseDepth_) {
563  HcalDetId id = hdc_->mergedDepthDetId(hcid0);
564  depth = id.depth() - 1;
565  }
566  eHcalDepth[depth] += ene;
567  eHcalDepthC[depth]+= enec;
568  activeL[depth] += actL;
569  activeLengthTot += actL;
570  matchDepth[depth] = (matchDepth[depth] && tmpC);
571 #ifdef EDM_ML_DEBUG
572  if ((verbosity_%10) > 0)
573  edm::LogVerbatim("HBHEMuon") << hcid0 << " E " << ene << ":"
574  << enec << " L " << actL
575  << " Match " << tmpC;
576 #endif
577  }
578  }
579  }
580 #ifdef EDM_ML_DEBUG
581  if ((verbosity_%10) > 0) {
582  std::cout << hcidt << " Match " << tmpmatch << " Depths "
583  << ehdepth.size();
584  for (unsigned int k=0; k<ehdepth.size(); ++k)
585  std::cout << " [" << ehdepth[k].second << "] " << matchDepth[k];
586  std::cout << std::endl;
587  }
588 #endif
589  HcalDetId hotCell;
590  spr::eHCALmatrix(geo, theHBHETopology_, closestCell, hbhe, 1,1, hotCell, false, useRaw_, false);
591  isHot = matchId(closestCell,hotCell);
592  if (hotCell != HcalDetId()) {
593  subdet = HcalDetId(hotCell).subdet();
594  ieta = HcalDetId(hotCell).ieta();
595  iphi = HcalDetId(hotCell).iphi();
596  hborhe = (std::abs(ieta) == 16);
597  std::vector<std::pair<double,int> > ehdepth;
598  spr::energyHCALCell(hotCell, hbhe, ehdepth, maxDepth_, -100.0, -100.0, -100.0, -100.0, -500.0, 500.0, useRaw_, depth16HE(ieta,iphi), false);//(((verbosity_/1000)%10)>0 ));
599  for (int i=0; i<depthMax_; ++i) eHcalDetId[i] = HcalDetId();
600  for (unsigned int i=0; i<ehdepth.size(); ++i) {
601  HcalSubdetector subdet0 = (hborhe) ? ((ehdepth[i].second >= depth16HE(ieta,iphi)) ? HcalEndcap : HcalBarrel) : subdet;
602  HcalDetId hcid0(subdet0,ieta,iphi,ehdepth[i].second);
603  double actL = activeLength(DetId(hcid0));
604  double ene = ehdepth[i].first;
605  bool tmpC(false);
606  if (ene > 0.0) {
607  if (!(theHBHETopology_->validHcal(hcid0))) {
608  edm::LogWarning("HBHEMuon") << "(2) Invalid ID " << hcid0
609  << " with E = " << ene;
610  edm::LogWarning("HBHEMuon") << HcalDetId(hotCell)
611  << " with " << ehdepth.size()
612  << " depths:";
613  for (const auto& ehd : ehdepth)
614  edm::LogWarning("HBHEMuon") << " " << ehd.second << ":"
615  << ehd.first;
616  } else {
617  tmpC = goodCell(hcid0, pTrack, geo, bField);
618  double chg(ene), enec(ene);
619  if (unCorrect_) {
620  double corr = (ignoreHECorr_ && (subdet0==HcalEndcap)) ? 1.0 : respCorr(DetId(hcid0));
621  if (corr != 0) ene /= corr;
622 #ifdef EDM_ML_DEBUG
623  HcalDetId id = (isItPlan1_ && isItPreRecHit_) ? hdc_->mergedDepthDetId(hcid0) : hcid0;
624  edm::LogVerbatim("HBHEMuon") << hcid0 << ":" << id
625  << " Corr " << corr << " E "
626  << ene << ":" << enec;
627 #endif
628  }
629  if (getCharge_) {
630  double gain = gainFactor(conditions,hcid0);
631  if (gain != 0) chg /= gain;
632 #ifdef EDM_ML_DEBUG
633  edm::LogVerbatim("HBHEMuon") << hcid0 << " Gain " << gain
634  << " C " << chg;
635 #endif
636  }
637  int depth = ehdepth[i].second - 1;
638  if (collapseDepth_) {
639  HcalDetId id = hdc_->mergedDepthDetId(hcid0);
640  depth = id.depth() - 1;
641  }
642  eHcalDepthHot[depth] += ene;
643  eHcalDepthHotC[depth] += enec;
644  cHcalDepthHot[depth] += chg;
645  activeHotL[depth] += actL;
646  activeLengthHotTot += actL;
647  matchDepthHot[depth] = (matchDepthHot[depth] && tmpC);
648 #ifdef EDM_ML_DEBUG
649  if ((verbosity_%10) > 0)
650  edm::LogVerbatim("HBHEMuon") << hcid0 << " depth " << depth
651  << " E " << ene << ":" << enec
652  << " C " << chg << " L "
653  << actL << " Match " << tmpC;
654 #endif
655  }
656  }
657  }
658 
659  HcalDetId oppCell(subdet,-ieta,iphi,HcalDetId(hotCell).depth());
660  std::vector<std::pair<double,int> > ehdeptho;
661  spr::energyHCALCell(oppCell, hbhe, ehdeptho, maxDepth_, -100.0, -100.0, -100.0, -100.0, -500.0, 500.0, useRaw_, depth16HE(-ieta,iphi), false); //(((verbosity_/1000)%10)>0));
662  for (unsigned int i=0; i<ehdeptho.size(); ++i) {
663  HcalSubdetector subdet0 = (hborhe) ? ((ehdeptho[i].second >= depth16HE(-ieta,iphi)) ? HcalEndcap : HcalBarrel) : subdet;
664  HcalDetId hcid0(subdet0,-ieta,iphi,ehdeptho[i].second);
665  double ene = ehdeptho[i].first;
666  if (ene > 0.0) {
667  if (!(theHBHETopology_->validHcal(hcid0))) {
668  edm::LogWarning("HBHEMuon") << "(3) Invalid ID " << hcid0
669  << " with E = " << ene;
670  edm::LogWarning("HBHEMuon") << oppCell << " with "
671  << ehdeptho.size() << " depths:";
672  for (const auto& ehd : ehdeptho)
673  edm::LogWarning("HBHEMuon") << " " << ehd.second << ":"
674  << ehd.first;
675  } else {
676  double chg(ene);
677  if (unCorrect_) {
678  double corr = (ignoreHECorr_ && (subdet0==HcalEndcap)) ? 1.0 : respCorr(DetId(hcid0));
679  if (corr != 0) ene /= corr;
680 #ifdef EDM_ML_DEBUG
681  HcalDetId id = (isItPlan1_ && isItPreRecHit_) ? hdc_->mergedDepthDetId(hcid0) : hcid0;
682  edm::LogVerbatim("HBHEMuon") << hcid0 << ":" << id
683  << " Corr " << corr << " E "
684  << ene << ":"
685  << ehdeptho[i].first;
686 #endif
687  }
688  if (getCharge_) {
689  double gain = gainFactor(conditions,hcid0);
690  if (gain != 0) chg /= gain;
691 #ifdef EDM_ML_DEBUG
692  edm::LogVerbatim("HBHEMuon") << hcid0 << " Gain " << gain
693  << " C " << chg;
694 #endif
695  }
696  int depth = ehdeptho[i].second - 1;
697  if (collapseDepth_) {
698  HcalDetId id = hdc_->mergedDepthDetId(hcid0);
699  depth = id.depth() - 1;
700  }
701  cHcalDepthHotBG[depth] += chg;
702 #ifdef EDM_ML_DEBUG
703  if ((verbosity_%10) > 0)
704  edm::LogVerbatim("HBHEMuon") << hcid0 << " Depth " << depth
705  << " E " << ene << " C "
706  << chg;
707 #endif
708  }
709  }
710  }
711  }
712  }
713 #ifdef EDM_ML_DEBUG
714  edm::LogVerbatim("HBHEMuon") << "Propagate Track to HCAL: "
715  << trackID.okHCAL << " Match " << tmpmatch
716  << " Hot " << isHot << " Energy "
717  << eHcal << std::endl;
718 #endif
719 
720  } else {
721  ecalDetId_.push_back(0);
722  hcalDetId_.push_back(0);
723  ehcalDetId_.push_back(0);
724  }
725 
726  matchedId_.push_back(tmpmatch);
727  ecal3x3Energy_.push_back(eEcal);
728  hcal1x1Energy_.push_back(eHcal);
729  for (int i=0; i<depthMax_; ++i) {
730  hcalDepthEnergy_[i].push_back(eHcalDepth[i]);
731  hcalDepthActiveLength_[i].push_back(activeL[i]);
732  hcalDepthEnergyHot_[i].push_back(eHcalDepthHot[i]);
733  hcalDepthActiveLengthHot_[i].push_back(activeHotL[i]);
734  hcalDepthEnergyCorr_[i].push_back(eHcalDepthC[i]);
735  hcalDepthEnergyHotCorr_[i].push_back(eHcalDepthHotC[i]);
736  hcalDepthChargeHot_[i].push_back(cHcalDepthHot[i]);
737  hcalDepthChargeHotBG_[i].push_back(cHcalDepthHotBG[i]);
738  hcalDepthMatch_[i].push_back(matchDepth[i]);
739  hcalDepthMatchHot_[i].push_back(matchDepthHot[i]);
740  }
741  hcalActiveLength_.push_back(activeLengthTot);
742  hcalHot_.push_back(isHot);
743  hcalActiveLengthHot_.push_back(activeLengthHotTot);
744  }
745  }
746  if (accept) tree_->Fill();
747 }
748 
749 // ------------ method called once each job just before starting event loop ------------
751 
752  tree_ = fs->make<TTree>("TREE", "TREE");
753  tree_->Branch("Event_No", &eventNumber_);
754  tree_->Branch("Run_No", &runNumber_);
755  tree_->Branch("LumiNumber", &lumiNumber_);
756  tree_->Branch("BXNumber", &bxNumber_);
757  tree_->Branch("GoodVertex", &goodVertex_);
758  tree_->Branch("PF_Muon", &muon_is_good_);
759  tree_->Branch("Global_Muon", &muon_global_);
760  tree_->Branch("Tracker_muon", &muon_tracker_);
761  tree_->Branch("pt_of_muon", &ptGlob_);
762  tree_->Branch("eta_of_muon", &etaGlob_);
763  tree_->Branch("phi_of_muon", &phiGlob_);
764  tree_->Branch("energy_of_muon", &energyMuon_);
765  tree_->Branch("p_of_muon", &pMuon_);
766  tree_->Branch("muon_trkKink", &muon_trkKink);
767  tree_->Branch("muon_chi2LocalPosition", &muon_chi2LocalPosition);
768  tree_->Branch("muon_segComp", &muon_segComp);
769 
770  tree_->Branch("TrackerLayer", &trackerLayer_);
771  tree_->Branch("NumPixelLayers", &numPixelLayers_);
772  tree_->Branch("InnerTrackPixelHits", &tight_PixelHits_);
773  tree_->Branch("innerTrack", &innerTrack_);
774  tree_->Branch("chiTracker", &chiTracker_);
775  tree_->Branch("DxyTracker", &dxyTracker_);
776  tree_->Branch("DzTracker", &dzTracker_);
777  tree_->Branch("innerTrackpt", &innerTrackpt_);
778  tree_->Branch("innerTracketa", &innerTracketa_);
779  tree_->Branch("innerTrackphi", &innerTrackphi_);
780  tree_->Branch("tight_validFraction", &tight_validFraction_);
781 
782  tree_->Branch("OuterTrack", &outerTrack_);
783  tree_->Branch("OuterTrackChi", &outerTrackChi_);
784  tree_->Branch("OuterTrackPt", &outerTrackPt_);
785  tree_->Branch("OuterTrackEta", &outerTrackEta_);
786  tree_->Branch("OuterTrackPhi", &outerTrackPhi_);
787  tree_->Branch("OuterTrackHits", &outerTrackHits_);
788  tree_->Branch("OuterTrackRHits", &outerTrackRHits_);
789 
790  tree_->Branch("GlobalTrack", &globalTrack_);
791  tree_->Branch("GlobalTrckPt", &globalTrckPt_);
792  tree_->Branch("GlobalTrckEta", &globalTrckEta_);
793  tree_->Branch("GlobalTrckPhi", &globalTrckPhi_);
794  tree_->Branch("Global_Muon_Hits", &globalMuonHits_);
795  tree_->Branch("MatchedStations", &matchedStat_);
796  tree_->Branch("GlobTrack_Chi", &chiGlobal_);
797  tree_->Branch("Tight_LongitudinalImpactparameter",&tight_LongPara_);
798  tree_->Branch("Tight_TransImpactparameter", &tight_TransImpara_);
799 
800  tree_->Branch("IsolationR04", &isolationR04_);
801  tree_->Branch("IsolationR03", &isolationR03_);
802  tree_->Branch("ecal_3into3", &ecalEnergy_);
803  tree_->Branch("hcal_3into3", &hcalEnergy_);
804  tree_->Branch("tracker_3into3", &hoEnergy_);
805 
806  tree_->Branch("matchedId", &matchedId_);
807  tree_->Branch("hcal_cellHot", &hcalHot_);
808 
809  tree_->Branch("ecal_3x3", &ecal3x3Energy_);
810  tree_->Branch("hcal_1x1", &hcal1x1Energy_);
811  tree_->Branch("ecal_detID", &ecalDetId_);
812  tree_->Branch("hcal_detID", &hcalDetId_);
813  tree_->Branch("ehcal_detID", &ehcalDetId_);
814 
815  char name[100];
816  for (int k=0; k<maxDepth_; ++k) {
817  sprintf (name, "hcal_edepth%d", (k+1));
818  tree_->Branch(name, &hcalDepthEnergy_[k]);
819  sprintf (name, "hcal_activeL%d", (k+1));
820  tree_->Branch(name, &hcalDepthActiveLength_[k]);
821  sprintf (name, "hcal_edepthHot%d", (k+1));
822  tree_->Branch(name, &hcalDepthEnergyHot_[k]);
823  sprintf (name, "hcal_activeHotL%d", (k+1));
824  tree_->Branch(name, &hcalDepthActiveLengthHot_[k]);
825  sprintf (name, "hcal_cdepthHot%d", (k+1));
826  tree_->Branch(name, &hcalDepthChargeHot_[k]);
827  sprintf (name, "hcal_cdepthHotBG%d", (k+1));
828  tree_->Branch(name, &hcalDepthChargeHotBG_[k]);
829  sprintf (name, "hcal_edepthCorrect%d", (k+1));
830  tree_->Branch(name, &hcalDepthEnergyCorr_[k]);
831  sprintf (name, "hcal_edepthHotCorrect%d", (k+1));
832  tree_->Branch(name, &hcalDepthEnergyHotCorr_[k]);
833  sprintf (name, "hcal_depthMatch%d", (k+1));
834  tree_->Branch(name, &hcalDepthMatch_[k]);
835  sprintf (name, "hcal_depthMatchHot%d", (k+1));
836  tree_->Branch(name, &hcalDepthMatchHot_[k]);
837  }
838 
839  tree_->Branch("activeLength", &hcalActiveLength_);
840  tree_->Branch("activeLengthHot", &hcalActiveLengthHot_);
841 
842  tree_->Branch("hltresults", &hltresults_);
843  tree_->Branch("all_triggers", &all_triggers_);
844 }
845 
846 // ------------ method called when starting to processes a run ------------
847 void HcalHBHEMuonAnalyzer::beginRun(edm::Run const& iRun, edm::EventSetup const& iSetup) {
848 
850  iSetup.get<HcalRecNumberingRecord>().get(pHRNDC);
851  hdc_ = pHRNDC.product();
852  actHB.clear();
853  actHE.clear();
854  actHB = hdc_->getThickActive(0);
855  actHE = hdc_->getThickActive(1);
856 #ifdef EDM_ML_DEBUG
857  unsigned int k1(0), k2(0);
858  edm::LogVerbatim("HBHEMuon") << actHB.size() << " Active Length for HB";
859  for (const auto& act : actHB) {
860  edm::LogVerbatim("HBHEMuon") << "[" << k1 << "] ieta " << act.ieta
861  << " depth " << act.depth << " zside "
862  << act.zside << " type " << act.stype
863  << " phi " << act.iphis.size() << ":"
864  << act.iphis[0] << " L " << act.thick;
865  HcalDetId hcid1(HcalBarrel,(act.ieta)*(act.zside),act.iphis[0],act.depth);
866  HcalDetId hcid2 = mergedDepth_ ? hdc_->mergedDepthDetId(hcid1) : hcid1;
867  edm::LogVerbatim("HBHEMuon") << hcid1 << " | " << hcid2 << " L "
868  << activeLength(DetId(hcid2));
869  ++k1;
870  }
871  edm::LogVerbatim("HBHEMuon") << actHE.size() << " Active Length for HE";
872  for (const auto& act : actHE) {
873  edm::LogVerbatim("HBHEMuon") << "[" << k2 << "] ieta " << act.ieta
874  << " depth " << act.depth << " zside "
875  << act.zside << " type " << act.stype
876  << " phi " << act.iphis.size() << ":"
877  << act.iphis[0] << " L " << act.thick;
878  HcalDetId hcid1(HcalEndcap,(act.ieta)*(act.zside),act.iphis[0],act.depth);
879  HcalDetId hcid2 = mergedDepth_ ? hdc_->mergedDepthDetId(hcid1) : hcid1;
880  edm::LogVerbatim("HBHEMuon") << hcid1 << " | " << hcid2 << " L "
881  << activeLength(DetId(hcid2));
882  ++k2;
883  }
884 #endif
885 
886  bool changed = true;
887  all_triggers_.clear();
888  if (hltConfig_.init(iRun, iSetup, "HLT" , changed)) {
889  // if init returns TRUE, initialisation has succeeded!
890 #ifdef EDM_ML_DEBUG
891  edm::LogVerbatim("HBHEMuon") << "HLT config with process name "
892  << "HLT" << " successfully extracted"
893  << std::endl;
894 #endif
895  unsigned int ntriggers = hltConfig_.size();
896  for (unsigned int t=0;t<ntriggers;++t) {
898  for (unsigned int ik=0; ik<6; ++ik) {
899  if (hltname.find(triggers_[ik])!=std::string::npos ){
900  all_triggers_.push_back(hltname);
901  break;
902  }
903  }
904  }//loop over ntriggers
905  edm::LogVerbatim("HBHEMuon") << "All triggers size in begin run "
906  << all_triggers_.size() << std::endl;
907  } else {
908  edm::LogError("HBHEMuon") << "Error! HLT config extraction with process "
909  << "name HLT failed";
910  }
911 
913  iSetup.get<HcalRecNumberingRecord>().get(htopo);
914  theHBHETopology_ = htopo.product();
915 
917  iSetup.get<HcalRespCorrsRcd>().get(resp);
918  respCorrs_ = new HcalRespCorrs(*resp.product());
920 
921  // Write correction factors for all HB/HE events
922  if (writeRespCorr_) {
924  iSetup.get<CaloGeometryRecord>().get(pG);
925  const CaloGeometry* geo = pG.product();
927  const std::vector<DetId>& ids = gHcal->getValidDetIds(DetId::Hcal,0);
928  edm::LogVerbatim("HBHEMuon") << "\nTable of Correction Factors for Run "
929  << iRun.run() << "\n";
930  for (auto const& id: ids) {
931  if ((id.det() == DetId::Hcal) &&
932  ((id.subdetId() == HcalBarrel) || (id.subdetId() == HcalEndcap))) {
933  edm::LogVerbatim("HBHEMuon") << HcalDetId(id) << " " << id.rawId() <<" "
934  << (respCorrs_->getValues(id))->getValue();
935  }
936  }
937  }
938 }
939 
940 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
943  desc.add<edm::InputTag>("hlTriggerResults",edm::InputTag("TriggerResults","","HLT"));
944  desc.add<edm::InputTag>("labelEBRecHit",edm::InputTag("ecalRecHit","EcalRecHitsEB"));
945  desc.add<edm::InputTag>("labelEERecHit",edm::InputTag("ecalRecHit","EcalRecHitsEE"));
946  desc.add<edm::InputTag>("labelHBHERecHit",edm::InputTag("hbhereco"));
947  desc.add<std::string>("labelBeamSpot","offlineBeamSpot");
948  desc.add<std::string>("labelVertex","offlinePrimaryVertices");
949  desc.add<std::string>("labelMuon","muons");
950 // std::vector<std::string> trig = {"HLT_IsoMu_","HLT_L1SingleMu_","HLT_L2Mu","HLT_Mu","HLT_RelIso1p0Mu"};
951  std::vector<std::string> trig = {"HLT_IsoMu17","HLT_IsoMu20",
952  "HLT_IsoMu24","HLT_IsoMu27",
953  "HLT_Mu45","HLT_Mu50"};
954  desc.add<std::vector<std::string>>("triggers",trig);
955  desc.addUntracked<int>("verbosity",0);
956  desc.add<int>("useRaw",0);
957  desc.add<bool>("unCorrect",false);
958  desc.add<bool>("getCharge",false);
959  desc.add<bool>("collapseDepth",false);
960  desc.add<bool>("isItPlan1",false);
961  desc.addUntracked<bool>("ignoreHECorr",false);
962  desc.addUntracked<bool>("isItPreRecHit",false);
963  desc.addUntracked<std::string>("moduleName","");
964  desc.addUntracked<std::string>("processName","");
965  desc.addUntracked<int>("maxDepth",4);
966  desc.addUntracked<std::string>("fileInCorr","");
967  desc.addUntracked<bool>("writeRespCorr",false);
968  descriptions.add("hcalHBHEMuon",desc);
969 }
970 
973  eventNumber_ = -99999;
974  runNumber_ = -99999;
975  lumiNumber_ = -99999;
976  bxNumber_ = -99999;
977  goodVertex_ = -99999;
978 
979  muon_is_good_.clear();
980  muon_global_.clear();
981  muon_tracker_.clear();
982  ptGlob_.clear();
983  etaGlob_.clear();
984  phiGlob_.clear();
985  energyMuon_.clear();
986  pMuon_.clear();
987  muon_trkKink.clear();
988  muon_chi2LocalPosition.clear();
989  muon_segComp.clear();
990 
991  trackerLayer_.clear();
992  numPixelLayers_.clear();
993  tight_PixelHits_.clear();
994  innerTrack_.clear();
995  chiTracker_.clear();
996  dxyTracker_.clear();
997  dzTracker_.clear();
998  innerTrackpt_.clear();
999  innerTracketa_.clear();
1000  innerTrackphi_.clear();
1001  tight_validFraction_.clear();
1002 
1003  outerTrack_.clear();
1004  outerTrackPt_.clear();
1005  outerTrackEta_.clear();
1006  outerTrackPhi_.clear();
1007  outerTrackHits_.clear();
1008  outerTrackRHits_.clear();
1009  outerTrackChi_.clear();
1010 
1011  globalTrack_.clear();
1012  globalTrckPt_.clear();
1013  globalTrckEta_.clear();
1014  globalTrckPhi_.clear();
1015  globalMuonHits_.clear();
1016  matchedStat_.clear();
1017  chiGlobal_.clear();
1018  tight_LongPara_.clear();
1019  tight_TransImpara_.clear();
1020 
1021  isolationR04_.clear();
1022  isolationR03_.clear();
1023  ecalEnergy_.clear();
1024  hcalEnergy_.clear();
1025  hoEnergy_.clear();
1026  matchedId_.clear();
1027  hcalHot_.clear();
1028  ecal3x3Energy_.clear();
1029  hcal1x1Energy_.clear();
1030  ecalDetId_.clear();
1031  hcalDetId_.clear();
1032  ehcalDetId_.clear();
1033  for (int i=0; i<maxDepth_; ++i) {
1034  hcalDepthEnergy_[i].clear();
1035  hcalDepthActiveLength_[i].clear();
1036  hcalDepthEnergyHot_[i].clear();
1037  hcalDepthActiveLengthHot_[i].clear();
1038  hcalDepthChargeHot_[i].clear();
1039  hcalDepthChargeHotBG_[i].clear();
1040  hcalDepthEnergyCorr_[i].clear();
1041  hcalDepthEnergyHotCorr_[i].clear();
1042  hcalDepthMatch_[i].clear();
1043  hcalDepthMatchHot_[i].clear();
1044  }
1045  hcalActiveLength_.clear();
1046  hcalActiveLengthHot_.clear();
1047  hltresults_.clear();
1048 }
1049 
1051 
1052  HcalDetId kd1(id1.subdet(),id1.ieta(),id1.iphi(),1);
1053  HcalDetId kd2(id1.subdet(),id2.ieta(),id2.iphi(),1);
1054  int match = ((kd1 == kd2) ? 1 : 0);
1055  return match;
1056 }
1057 
1059  HcalDetId id(id_);
1060  int ieta = id.ietaAbs();
1061  int zside= id.zside();
1062  int iphi = id.iphi();
1063  std::vector<int> dpths;
1064  if (mergedDepth_) {
1065  std::vector<HcalDetId> ids;
1066  hdc_->unmergeDepthDetId(id,ids);
1067  for (auto idh : ids)
1068  dpths.emplace_back(idh.depth());
1069  } else {
1070  dpths.emplace_back(id.depth());
1071  }
1072  double lx(0);
1073  if (id.subdet() == HcalBarrel) {
1074  for (unsigned int i=0; i<actHB.size(); ++i) {
1075  if ((ieta == actHB[i].ieta) && (zside == actHB[i].zside) &&
1076  (std::find(dpths.begin(),dpths.end(),actHB[i].depth) != dpths.end())&&
1077  (std::find(actHB[i].iphis.begin(),actHB[i].iphis.end(),iphi) !=
1078  actHB[i].iphis.end())) {
1079  lx += actHB[i].thick;
1080  }
1081  }
1082  } else {
1083  for (unsigned int i=0; i<actHE.size(); ++i) {
1084  if ((ieta == actHE[i].ieta) && (zside == actHE[i].zside) &&
1085  (std::find(dpths.begin(),dpths.end(),actHE[i].depth) != dpths.end())&&
1086  (std::find(actHE[i].iphis.begin(),actHE[i].iphis.end(),iphi) !=
1087  actHE[i].iphis.end())) {
1088  lx += actHE[i].thick;
1089  }
1090  }
1091  }
1092  return lx;
1093 }
1094 
1096  if (vtx.isFake()) return false;
1097  if (vtx.ndof() < 4) return false;
1098  if (vtx.position().Rho() > 2.) return false;
1099  if (fabs(vtx.position().Z()) > 24.) return false;
1100  return true;
1101 }
1102 
1104  double cfac(1.0);
1105  if (useMyCorr_) {
1106  auto itr = corrValue_.find(id);
1107  if (itr != corrValue_.end()) cfac = itr->second;
1108  } else if (respCorrs_ != nullptr) {
1109  cfac = (respCorrs_->getValues(id))->getValue();
1110  }
1111  return cfac;
1112 }
1113 
1115  double gain(0.0);
1116  const HcalCalibrations& calibs=conditions->getHcalCalibrations(id);
1117  for (int capid=0; capid<4; ++capid)
1118  gain += (0.25*calibs.respcorrgain(capid));
1119  return gain;
1120 }
1121 
1122 int HcalHBHEMuonAnalyzer::depth16HE(int ieta, int iphi) {
1123  // Transition between HB/HE is special
1124  // For Run 1 or for Plan1 standard reconstruction it is 3
1125  // For runs beyond 2018 or in Plan1 for HEP17 it is 4
1126  int zside = (ieta > 0) ? 1 : -1;
1127  int depth = theHBHETopology_->dddConstants()->getMinDepth(1,16,iphi,zside);
1128  if (isItPlan1_ && (!isItPreRecHit_)) depth = 3;
1129 #ifdef EDM_ML_DEBUG
1130  edm::LogVerbatim("HBHEMuon") << "Plan1 " << isItPlan1_ << " PreRecHit "
1131  << isItPreRecHit_ << " phi " << iphi
1132  << " depth " << depth;
1133 #endif
1134  return depth;
1135 }
1136 
1138  const reco::Track* pTrack,
1139  const CaloGeometry* geo,
1140  const MagneticField* bField) {
1141 
1142  std::pair<double,double> rz = hdc_->getRZ(hcid);
1143  bool typeRZ = (hcid.subdet() == HcalEndcap) ? false : true;
1144  bool match = spr::propagateHCAL(pTrack, geo, bField, typeRZ, rz, (((verbosity_/10000)%10)>0));
1145  return match;
1146 }
1147 
1148 //define this as a plug-in
1150 
RunNumber_t run() const
Definition: EventID.h:39
unsigned int size() const
number of trigger paths in trigger table
static const std::string kSharedResource
Definition: TFileService.h:76
std::vector< double > tight_validFraction_
std::vector< int > hltresults_
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:44
EventNumber_t event() const
Definition: EventID.h:41
std::vector< double > innerTrackphi_
HcalHBHEMuonAnalyzer(const edm::ParameterSet &)
const std::string labelMuon_
T getUntrackedParameter(std::string const &, T const &) const
std::vector< spr::propagatedTrackID > propagateCALO(edm::Handle< reco::TrackCollection > &trkCollection, const CaloGeometry *geo, const MagneticField *bField, const std::string &theTrackQuality, bool debug=false)
const HcalTopology * theHBHETopology_
const HcalDDDRecConstants * dddConstants() const
Definition: HcalTopology.h:167
static const TGPicture * info(bool iBackgroundIsBlack)
double respcorrgain(int fCapId) const
get response corrected gain for capid=0..3
std::vector< std::string > all_triggers_
std::vector< double > dzTracker_
HcalSubdetector subdet() const
get the subdetector
Definition: HcalDetId.h:49
RunNumber_t run() const
Definition: RunBase.h:40
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
void analyze(edm::Event const &, edm::EventSetup const &) override
const std::string & triggerName(unsigned int triggerIndex) const
std::vector< double > outerTrackChi_
const float chg[109]
Definition: CoreSimTrack.cc:5
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
HcalDetId mergedDepthDetId(const HcalDetId &id) const
std::vector< double > hcalDepthChargeHotBG_[depthMax_]
std::vector< double > tight_LongPara_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::pair< math::XYZPoint, bool > propagateHCAL(const reco::Track *, const MagneticField *, bool debug=false)
edm::EDGetTokenT< EcalRecHitCollection > tok_EE_
std::vector< unsigned int > ecalDetId_
const std::vector< DetId > & getValidDetIds(DetId::Detector det=DetId::Detector(0), int subdet=0) const override
Get a list of valid detector ids (for the given subdetector)
Definition: HcalGeometry.cc:76
std::vector< double > pMuon_
bool accept() const
Has at least one path accepted the event?
std::vector< double > globalTrckPhi_
int bunchCrossing() const
Definition: EventBase.h:66
double respCorr(const DetId &id)
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
const Item * getValues(DetId fId, bool throwOnFail=true) const
int zside(DetId const &)
std::vector< HcalDDDRecConstants::HcalActiveLength > actHE
bool validHcal(const HcalDetId &id) const
const edm::InputTag hlTriggerResults_
std::vector< double > isolationR03_
std::vector< int > outerTrackHits_
#define nullptr
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:20
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:30
LuminosityBlockNumber_t luminosityBlock() const
Definition: EventID.h:40
const Point & position() const
position
Definition: Vertex.h:109
double gainFactor(const edm::ESHandle< HcalDbService > &, const HcalDetId &id)
std::vector< bool > muon_global_
edm::EDGetTokenT< edm::TriggerResults > tok_trigRes_
std::vector< float > muon_trkKink
std::vector< double > hcalDepthEnergy_[depthMax_]
const edm::InputTag labelEERecHit_
std::vector< double > outerTrackPt_
std::map< DetId, double > corrValue_
uint32_t rawId() const
get the raw id
Definition: DetId.h:44
U second(std::pair< T, U > const &p)
edm::EDGetTokenT< reco::BeamSpot > tok_bs_
const edm::InputTag labelEBRecHit_
edm::EDGetTokenT< reco::VertexCollection > tok_Vtx_
void beginRun(edm::Run const &, edm::EventSetup const &) override
std::vector< double > globalTrckPt_
int depth() const
get the tower depth
Definition: HcalDetId.cc:108
std::vector< int > tight_PixelHits_
int iEvent
Definition: GenABIO.cc:230
std::vector< bool > muon_tracker_
std::vector< double > ecalEnergy_
unsigned int triggerIndex(std::string const &name) const
Definition: TriggerNames.cc:32
std::vector< int > numPixelLayers_
spr::propagatedTrackDirection propagateHCALBack(unsigned int thisTrk, edm::Handle< edm::SimTrackContainer > &SimTk, edm::Handle< edm::SimVertexContainer > &SimVtx, const CaloGeometry *geo, const MagneticField *bField, bool debug=false)
std::vector< double > hcalActiveLengthHot_
std::vector< double > innerTracketa_
std::vector< double > globalTrckEta_
std::vector< double > isolationR04_
unsigned int size() const
Get number of paths stored.
std::vector< double > hcalDepthActiveLengthHot_[depthMax_]
std::vector< double > hcalDepthEnergyHotCorr_[depthMax_]
int getMinDepth(const int &itype, const int &ieta, const int &iphi, const int &zside) const
double getRZ(const int &subdet, const int &ieta, const int &depth) const
std::vector< double > ptGlob_
std::vector< unsigned int > ehcalDetId_
int ieta() const
get the cell ieta
Definition: HcalDetId.h:56
HcalSubdetector
Definition: HcalAssistant.h:31
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
float segmentCompatibility(const reco::Muon &muon, reco::Muon::ArbitrationType arbitrationType=reco::Muon::SegmentAndTrackArbitration)
std::vector< double > hcalEnergy_
const std::string labelVtx_
ParameterDescriptionBase * add(U const &iLabel, T const &value)
std::vector< double > outerTrackEta_
bool isValid() const
Definition: HandleBase.h:74
double activeLength(const DetId &)
std::vector< bool > globalTrack_
std::vector< double > hcal1x1Energy_
edm::EDGetTokenT< reco::MuonCollection > tok_Muon_
bool goodCell(const HcalDetId &hcid, const reco::Track *pTrack, const CaloGeometry *geo, const MagneticField *bField)
std::vector< int > outerTrackRHits_
double ndof() const
Definition: Vertex.h:105
std::vector< bool > hcalHot_
JetCorrectorParameters corr
Definition: classes.h:5
const edm::InputTag labelHBHERecHit_
int k[5][pyjets_maxn]
std::vector< bool > muon_is_good_
int iphi() const
get the cell iphi
Definition: HcalDetId.cc:103
Definition: DetId.h:18
std::vector< double > chiGlobal_
std::vector< HcalDDDRecConstants::HcalActiveLength > actHB
std::vector< float > muon_segComp
int depth16HE(int ieta, int iphi)
std::vector< unsigned int > hcalDetId_
bool isFake() const
Definition: Vertex.h:72
std::vector< double > hcalDepthEnergyHot_[depthMax_]
std::vector< int > matchedStat_
std::vector< bool > matchedId_
void endRun(edm::Run const &, edm::EventSetup const &) override
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
std::vector< double > hcalDepthEnergyCorr_[depthMax_]
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
d&#39;tor
const T & get() const
Definition: EventSetup.h:59
void unmergeDepthDetId(const HcalDetId &id, std::vector< HcalDetId > &ids) const
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::vector< double > hcalDepthActiveLength_[depthMax_]
std::vector< double > hoEnergy_
int matchId(const HcalDetId &, const HcalDetId &)
const HcalDDDRecConstants * hdc_
edm::EventID id() const
Definition: EventBase.h:60
std::vector< double > phiGlob_
HLT enums.
HLTConfigProvider hltConfig_
edm::EDGetTokenT< EcalRecHitCollection > tok_EB_
std::vector< int > globalMuonHits_
std::vector< double > hcalActiveLength_
std::vector< double > chiTracker_
std::vector< double > hcalDepthChargeHot_[depthMax_]
const JetExtendedData & getValue(const Container &, const reco::JetBaseRef &)
get value for the association. Throw exception if no association found
std::vector< bool > hcalDepthMatchHot_[depthMax_]
std::vector< HcalActiveLength > getThickActive(const int &type) const
const Point & position() const
position
Definition: BeamSpot.h:62
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
std::vector< int > trackerLayer_
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
std::vector< bool > outerTrack_
const HcalCalibrations & getHcalCalibrations(const HcalGenericDetId &fId) const
def check(config)
Definition: trackerTree.py:14
edm::EDGetTokenT< HBHERecHitCollection > tok_HBHE_
const std::string fileInCorr_
edm::Service< TFileService > fs
T const * product() const
Definition: ESHandle.h:86
std::vector< double > dxyTracker_
const std::string labelBS_
void energyHCALCell(HcalDetId detId, edm::Handle< T > &hits, std::vector< std::pair< double, int > > &energyCell, int maxDepth=1, double hbThr=-100, double heThr=-100, double hfThr=-100, double hoThr=-100, double tMin=-500, double tMax=500, int useRaw=0, int depthHE=3, bool debug=false)
edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const override
Definition: Event.cc:301
std::vector< double > ecal3x3Energy_
void setTopo(const HcalTopology *topo)
std::vector< double > tight_TransImpara_
const std::vector< std::string > triggers_
std::vector< double > energyMuon_
std::vector< double > etaGlob_
Definition: Run.h:43
bool isGoodVertex(const reco::Vertex &vtx)
std::vector< double > outerTrackPhi_
std::vector< double > innerTrackpt_
std::vector< bool > innerTrack_
std::vector< bool > hcalDepthMatch_[depthMax_]
double eECALmatrix(const DetId &detId, edm::Handle< T > &hitsEB, edm::Handle< T > &hitsEE, const CaloGeometry *geo, const CaloTopology *caloTopology, int ieta, int iphi, double ebThr=-100, double eeThr=-100, double tMin=-500, double tMax=500, bool debug=false)
double eHCALmatrix(const HcalTopology *topology, const DetId &det, edm::Handle< T > &hits, int ieta, int iphi, bool includeHO=false, bool algoNew=true, double hbThr=-100, double heThr=-100, double hfThr=-100, double hoThr=-100, double tMin=-500, double tMax=500, int useRaw=0, bool debug=false)
std::vector< float > muon_chi2LocalPosition