CMS 3D CMS Logo

HcalHBHEMuonSimAnalyzer.cc
Go to the documentation of this file.
1 #include <memory>
2 #include <iostream>
3 #include <vector>
4 
5 #include <TTree.h>
6 
7 // user include files
16 
25 
29 
40 
41 #define EDM_ML_DEBUG
42 
43 class HcalHBHEMuonSimAnalyzer : public edm::one::EDAnalyzer<edm::one::WatchRuns,edm::one::SharedResources> {
44 
45 public:
47  ~HcalHBHEMuonSimAnalyzer() override;
48 
49  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
50 
51 private:
52  void beginJob() override;
53  void analyze(edm::Event const&, edm::EventSetup const&) override;
54  void beginRun(edm::Run const&, edm::EventSetup const&) override;
55  void endRun(edm::Run const&, edm::EventSetup const&) override {}
58  void clearVectors();
59  unsigned int matchId(const HcalDetId&, const HcalDetId&);
60  double activeLength(const DetId&);
61 
65  double etaMax_;
66  std::vector<HcalDDDRecConstants::HcalActiveLength> actHB_, actHE_;
67 
74 
75  static const int depthMax_=7;
76  const int idMuon_=13;
77  TTree *tree_;
79  std::vector<double> ptGlob_, etaGlob_, phiGlob_, pMuon_;
80  std::vector<double> ecal3x3Energy_, hcal1x1Energy_;
81  std::vector<unsigned int> ecalDetId_, hcalDetId_, hcalHot_;
82  std::vector<double> matchedId_;
83  std::vector<double> hcalDepthEnergy_[depthMax_];
84  std::vector<double> hcalDepthActiveLength_[depthMax_];
85  std::vector<double> hcalDepthEnergyHot_[depthMax_];
86  std::vector<double> hcalDepthActiveLengthHot_[depthMax_];
88 };
89 
91 
92  usesResource(TFileService::kSharedResource);
93 
94  //now do what ever initialization is needed
95  g4Label_ = iConfig.getParameter<std::string>("ModuleLabel");
96  ebLabel_ = iConfig.getParameter<std::string>("EBCollection");
97  eeLabel_ = iConfig.getParameter<std::string>("EECollection");
98  hcLabel_ = iConfig.getParameter<std::string>("HCCollection");
99  verbosity_ = iConfig.getUntrackedParameter<int>("Verbosity",0);
100  maxDepth_ = iConfig.getUntrackedParameter<int>("MaxDepth",4);
101  etaMax_ = iConfig.getUntrackedParameter<double>("EtaMax", 3.0);
102  tMinE_ = iConfig.getUntrackedParameter<double>("TimeMinCutECAL", -500.);
103  tMaxE_ = iConfig.getUntrackedParameter<double>("TimeMaxCutECAL", 500.);
104  tMinH_ = iConfig.getUntrackedParameter<double>("TimeMinCutHCAL", -500.);
105  tMaxH_ = iConfig.getUntrackedParameter<double>("TimeMaxCutHCAL", 500.);
106 
107  tok_SimTk_ = consumes<edm::SimTrackContainer>(edm::InputTag(g4Label_));
108  tok_SimVtx_ = consumes<edm::SimVertexContainer>(edm::InputTag(g4Label_));
109  tok_caloEB_ = consumes<edm::PCaloHitContainer>(edm::InputTag(g4Label_,ebLabel_));
110  tok_caloEE_ = consumes<edm::PCaloHitContainer>(edm::InputTag(g4Label_,eeLabel_));
111  tok_caloHH_ = consumes<edm::PCaloHitContainer>(edm::InputTag(g4Label_,hcLabel_));
112  if (maxDepth_ > depthMax_) maxDepth_ = depthMax_;
113  else if (maxDepth_ < 1) maxDepth_ = 4;
114 #ifdef EDM_ML_DEBUG
115  std::cout << "Labels: " << g4Label_ << ":" << ebLabel_ << ":" << eeLabel_
116  << ":" << hcLabel_ << "\nVerbosity " << verbosity_ << " MaxDepth "
117  << maxDepth_ << " Maximum Eta " << etaMax_ << " tMin|tMax "
118  << tMinE_ << ":" << tMaxE_ << ":" << tMinH_ << ":" << tMaxH_
119  << std::endl;
120 #endif
121 }
122 
124 
126  const edm::EventSetup& iSetup) {
127 
128  clearVectors();
129  bool debug(false);
130 #ifdef EDM_ML_DEBUG
131  debug = ((verbosity_/10)>0);
132 #endif
133 
135  iSetup.get<HcalRecNumberingRecord>().get(pHRNDC);
136  const HcalDDDRecConstants* hcons = &(*pHRNDC);
137 
138  runNumber_ = iEvent.id().run();
139  eventNumber_ = iEvent.id().event();
140  lumiNumber_ = iEvent.id().luminosityBlock();
141  bxNumber_ = iEvent.bunchCrossing();
142 
143  //get Handles to SimTracks and SimHits
145  iEvent.getByToken(tok_SimTk_,SimTk);
147  iEvent.getByToken(tok_SimVtx_,SimVtx);
148 
149  //get Handles to PCaloHitContainers of eb/ee/hbhe
151  iEvent.getByToken(tok_caloEB_, pcaloeb);
153  iEvent.getByToken(tok_caloEE_, pcaloee);
155  iEvent.getByToken(tok_caloHH_, pcalohh);
156  std::vector<PCaloHit> calohh;
157  bool testN(false);
158  for (unsigned int k=1; k<pcalohh->size(); ++k) {
159  // if it is a standard DetId bits 28..31 will carry the det #
160  // for HCAL det # is 4 and if there is at least one hit in the collection
161  // have det # which is not 4 this collection is created using TestNumbering
162  int det = ((((*pcalohh)[k].id())>>28)&0xF);
163  if (det != 4) {testN = true; break;}
164  }
165  if (testN) {
166  for (edm::PCaloHitContainer::const_iterator itr=pcalohh->begin(); itr != pcalohh->end(); ++itr) {
167  PCaloHit hit(*itr);
168  DetId newid = HcalHitRelabeller::relabel(hit.id(),hcons);
169 #ifdef EDM_ML_DEBUG
170  std::cout << "Old ID " << std::hex << hit.id() << std::dec << " New "
171  << HcalDetId(newid) << std::endl;
172 #endif
173  hit.setID(newid.rawId());
174  calohh.push_back(hit);
175  }
176  } else {
177  calohh.insert(calohh.end(),pcalohh->begin(),pcalohh->end());
178  }
179 
180  // get handles to calogeometry and calotopology
182  iSetup.get<CaloGeometryRecord>().get(pG);
183  const CaloGeometry* geo = pG.product();
184 
186  iSetup.get<IdealMagneticFieldRecord>().get(bFieldH);
187  const MagneticField* bField = bFieldH.product();
188 
189  edm::ESHandle<CaloTopology> theCaloTopology;
190  iSetup.get<CaloTopologyRecord>().get(theCaloTopology);
191  const CaloTopology *caloTopology = theCaloTopology.product();
192 
194  iSetup.get<HcalRecNumberingRecord>().get(htopo);
195  const HcalTopology* theHBHETopology = htopo.product();
196 
197  // Loop over all SimTracks
198  for (edm::SimTrackContainer::const_iterator simTrkItr=SimTk->begin();
199  simTrkItr!= SimTk->end(); simTrkItr++) {
200  if ((std::abs(simTrkItr->type()) == idMuon_) && (simTrkItr->vertIndex() == 0) &&
201  (std::abs(simTrkItr->momentum().eta()) < etaMax_)) {
202  unsigned int thisTrk = simTrkItr->trackId();
203  spr::propagatedTrackDirection trkD = spr::propagateCALO(thisTrk, SimTk, SimVtx, geo, bField, debug);
204 
205  double eEcal(0), eHcal(0), activeLengthTot(0), activeLengthHotTot(0);
206  double eHcalDepth[depthMax_], eHcalDepthHot[depthMax_];
207  double activeL[depthMax_], activeHotL[depthMax_];
208  unsigned int isHot(0);
209  bool tmpmatch(false);
210  for (int i=0; i<depthMax_; ++i)
211  eHcalDepth[i] = eHcalDepthHot[i] = activeL[i] = activeHotL[i] = -10000;
212 
213 #ifdef EDM_ML_DEBUG
214  if ((verbosity_%10) > 0)
215  std::cout << "Track Type " << simTrkItr->type() << " Vertex "
216  << simTrkItr->vertIndex() << " Charge " << simTrkItr->charge()
217  << " Momentum " << simTrkItr->momentum().P() << ":"
218  << simTrkItr->momentum().eta() << ":"
219  << simTrkItr->momentum().phi() << " ECAL|HCAL " << trkD.okECAL
220  << ":" << trkD.okHCAL << " Point " << trkD.pointECAL << ":"
221  << trkD.pointHCAL << " Direction " << trkD.directionECAL.eta()
222  << ":" << trkD.directionECAL.phi() << " | "
223  << trkD.directionHCAL.eta() << ":" << trkD.directionHCAL.phi()
224  << std::endl;
225 #endif
226  bool propageback(false);
227  spr::propagatedTrackDirection trkD_back = spr::propagateHCALBack(thisTrk, SimTk, SimVtx, geo, bField, debug);
228  HcalDetId closestCell_back;
229  if(trkD_back.okHCAL) {
230  closestCell_back = (HcalDetId) (trkD_back.detIdHCAL);
231  propageback = true;
232  }
233  if (trkD.okHCAL) {
234  // Muon properties
235  spr::trackAtOrigin tkvx = spr::simTrackAtOrigin(thisTrk, SimTk, SimVtx, debug);
236  ptGlob_.push_back(tkvx.momentum.perp());
237  etaGlob_.push_back(tkvx.momentum.eta());
238  phiGlob_.push_back(tkvx.momentum.phi());
239  pMuon_.push_back(tkvx.momentum.mag());
240 #ifdef EDM_ML_DEBUG
241  if ((verbosity_%10) > 0)
242  std::cout << "Track at vertex " << tkvx.ok << " position "
243  << tkvx.position << " Momentum " << tkvx.momentum.mag()
244  << ":" << tkvx.momentum.eta() << ":"
245  << tkvx.momentum.phi() << " Charge " << tkvx.charge
246  << std::endl;
247 #endif
248 
249 
250  // Energy in ECAL
251  DetId isoCell;
252  if (trkD.okECAL) {
253  isoCell = trkD.detIdECAL;
254  eEcal = spr::eECALmatrix(isoCell, pcaloeb, pcaloee, geo, caloTopology, 1, 1, -100.0, -100.0, tMinE_, tMaxE_, debug);
255  }
256 
257  // Energy in Hcal
258  const DetId closestCell(trkD.detIdHCAL);
259  if ((propageback) &&
260  (HcalDetId(closestCell).ieta()==HcalDetId(closestCell_back).ieta()) &&
261  (HcalDetId(closestCell).iphi() == HcalDetId(closestCell_back).iphi()))
262  tmpmatch= true;
263 
264  eHcal = spr::eHCALmatrix(theHBHETopology, closestCell, calohh,0,0, false, -100.0, -100.0, -100.0, -100.0, tMinH_, tMaxH_, debug);
265 #ifdef EDM_ML_DEBUG
266  if ((verbosity_%10) > 0)
267  std::cout << "eEcal " << trkD.okECAL << ":" << eEcal << " eHcal "
268  << eHcal << std::endl;
269 #endif
270 
271  HcalSubdetector subdet = HcalDetId(closestCell).subdet();
272  int ieta = HcalDetId(closestCell).ieta();
273  int iphi = HcalDetId(closestCell).iphi();
274  int zside = HcalDetId(closestCell).zside();
275  bool hbhe = (std::abs(ieta) == 16);
276  int depthHE= hcons->getMinDepth(1,16,iphi,zside);
277  std::vector<std::pair<double,int> > ehdepth;
278  spr::energyHCALCell((HcalDetId)closestCell, calohh, ehdepth, maxDepth_, -100.0, -100.0, -100.0, -100.0, -500.0, 500.0, depthHE, debug);
279  for (unsigned int i=0; i<ehdepth.size(); ++i) {
280  eHcalDepth[ehdepth[i].second-1] = ehdepth[i].first;
281  HcalSubdetector subdet0 = (hbhe) ? ((ehdepth[i].second >= depthHE) ? HcalEndcap : HcalBarrel) : subdet;
282  HcalDetId hcid0(subdet0,ieta,iphi,ehdepth[i].second);
283  double actL = activeLength(DetId(hcid0));
284  activeL[ehdepth[i].second-1] = actL;
285  activeLengthTot += actL;
286 #ifdef EDM_ML_DEBUG
287  if ((verbosity_%10) > 0)
288  std::cout << hcid0 << " E " << ehdepth[i].first << " L " << actL
289  << std::endl;
290 #endif
291  }
292 
293  HcalDetId hotCell;
294 #ifdef EDM_ML_DEBUG
295  double h3x3 =
296 #endif
297  spr::eHCALmatrix(geo,theHBHETopology, closestCell, calohh, 1,1, hotCell, debug);
298  isHot = matchId(closestCell,hotCell);
299 #ifdef EDM_ML_DEBUG
300  if ((verbosity_%10) > 0)
301  std::cout << "hcal 3X3 < " << h3x3 << ">" << " ClosestCell <"
302  << (HcalDetId)(closestCell) << "> hotCell id < " << hotCell
303  << "> isHot" << isHot << std::endl;
304 #endif
305 
306  if (hotCell != HcalDetId()) {
307  subdet = HcalDetId(hotCell).subdet();
308  ieta = HcalDetId(hotCell).ieta();
309  iphi = HcalDetId(hotCell).iphi();
310  zside = HcalDetId(hotCell).zside();
311  hbhe = (std::abs(ieta) == 16);
312  depthHE= hcons->getMinDepth(1,16,iphi,zside);
313  std::vector<std::pair<double,int> > ehdepth;
314  spr::energyHCALCell(hotCell, calohh, ehdepth, maxDepth_, -100.0, -100.0, -100.0, -100.0, tMinH_, tMaxH_, depthHE, debug);
315  for (unsigned int i=0; i<ehdepth.size(); ++i) {
316  eHcalDepthHot[ehdepth[i].second-1] = ehdepth[i].first;
317  HcalSubdetector subdet0 = (hbhe) ? ((ehdepth[i].second >= depthHE) ? HcalEndcap : HcalBarrel) : subdet;
318  HcalDetId hcid0(subdet0,ieta,iphi,ehdepth[i].second);
319  double actL = activeLength(DetId(hcid0));
320  activeHotL[ehdepth[i].second-1] = actL;
321  activeLengthHotTot += actL;
322 #ifdef EDM_ML_DEBUG
323  if ((verbosity_%10) > 0)
324  std::cout << hcid0 << " E " << ehdepth[i].first << " L "
325  << actL << std::endl;
326 #endif
327  }
328  }
329 #ifdef EDM_ML_DEBUG
330  if ((verbosity_%10) > 0) {
331  for (int k=0; k<depthMax_; ++k)
332  std::cout << "Depth " << k << " E " << eHcalDepth[k] << ":"
333  << eHcalDepthHot[k] << std::endl;
334  }
335 #endif
336  matchedId_.push_back(tmpmatch);
337  ecal3x3Energy_.push_back(eEcal);
338  ecalDetId_.push_back(isoCell.rawId());
339  hcal1x1Energy_.push_back(eHcal);
340  hcalDetId_.push_back(closestCell.rawId());
341  for (int k=0; k<depthMax_; ++k) {
342  hcalDepthEnergy_[k].push_back(eHcalDepth[k]);
343  hcalDepthActiveLength_[k].push_back(activeL[k]);
344  hcalDepthEnergyHot_[k].push_back(eHcalDepthHot[k]);
345  hcalDepthActiveLengthHot_[k].push_back(activeHotL[k]);
346  }
347  hcalHot_.push_back(isHot);
348  hcalActiveLengthHot_.push_back(activeLengthHotTot);
349  }
350  }
351  }
352  if (!hcalHot_.empty()) tree_->Fill();
353 }
354 
356 
357  tree_ = fs_->make<TTree>("TREE", "TREE");
358  tree_->Branch("Run_No", &runNumber_);
359  tree_->Branch("Event_No", &eventNumber_);
360  tree_->Branch("LumiNumber", &lumiNumber_);
361  tree_->Branch("BXNumber", &bxNumber_);
362  tree_->Branch("pt_of_muon", &ptGlob_);
363  tree_->Branch("eta_of_muon", &etaGlob_);
364  tree_->Branch("phi_of_muon", &phiGlob_);
365  tree_->Branch("p_of_muon", &pMuon_);
366  tree_->Branch("matchedId", &matchedId_);
367 
368  tree_->Branch("ecal_3x3", &ecal3x3Energy_);
369  tree_->Branch("ecal_detID", &ecalDetId_);
370  tree_->Branch("hcal_1x1", &hcal1x1Energy_);
371  tree_->Branch("hcal_detID", &hcalDetId_);
372  tree_->Branch("hcal_cellHot", &hcalHot_);
373  tree_->Branch("activeLength", &hcalActiveLength_);
374  tree_->Branch("activeLengthHot", &hcalActiveLengthHot_);
375  char name[100];
376  for (int k=0; k<maxDepth_; ++k) {
377  sprintf (name, "hcal_edepth%d", (k+1));
378  tree_->Branch(name, &hcalDepthEnergy_[k]);
379  sprintf (name, "hcal_activeL%d", (k+1));
380  tree_->Branch(name, &hcalDepthActiveLength_[k]);
381  sprintf (name, "hcal_edepthHot%d", (k+1));
382  tree_->Branch(name, &hcalDepthEnergyHot_[k]);
383  sprintf (name, "hcal_activeHotL%d", (k+1));
384  tree_->Branch(name, &hcalDepthActiveLength_[k]);
385  }
386 }
387 
389  edm::EventSetup const& iSetup) {
390 
392  iSetup.get<HcalRecNumberingRecord>().get(pHRNDC);
393  const HcalDDDRecConstants & hdc = (*pHRNDC);
394  actHB_.clear();
395  actHE_.clear();
396  actHB_ = hdc.getThickActive(0);
397  actHE_ = hdc.getThickActive(1);
398 }
399 
400 
402 
404  desc.add<std::string>("ModuleLabel","g4SimHits");
405  desc.add<std::string>("EBCollection","EcalHitsEB");
406  desc.add<std::string>("EECollection","EcalHitsEE");
407  desc.add<std::string>("HCCollection","HcalHits");
408  desc.addUntracked<int>("Verbosity",0);
409  desc.addUntracked<int>("MaxDepth",4);
410  desc.addUntracked<double>("EtaMax",3.0);
411  desc.addUntracked<double>("TimeMinCutECAL",-500.);
412  desc.addUntracked<double>("TimeMaxCutECAL",500.);
413  desc.addUntracked<double>("TimeMinCutHCAL",-500.);
414  desc.addUntracked<double>("TimeMaxCutHCAL",500.);
415  descriptions.add("hcalHBHEMuonSim",desc);
416 }
417 
419 
421  runNumber_ = -99999;
422  eventNumber_ = -99999;
423  lumiNumber_ = -99999;
424  bxNumber_ = -99999;
425 
426  ptGlob_.clear();
427  etaGlob_.clear();
428  phiGlob_.clear();
429  pMuon_.clear();
430  matchedId_.clear();
431  ecal3x3Energy_.clear();
432  ecalDetId_.clear();
433  hcal1x1Energy_.clear();
434  hcalDetId_.clear();
435  hcalHot_.clear();
436  hcalActiveLength_.clear();
437  hcalActiveLengthHot_.clear();
438  for (int k=0; k<depthMax_; ++k) {
439  hcalDepthEnergy_[k].clear();
440  hcalDepthActiveLength_[k].clear();
441  hcalDepthEnergyHot_[k].clear();
442  hcalDepthActiveLengthHot_[k].clear();
443  }
444 }
445 
447  const HcalDetId& id2) {
448 
449  HcalDetId kd1(id1.subdet(),id1.ieta(),id1.iphi(),1);
450  HcalDetId kd2(id2.subdet(),id2.ieta(),id2.iphi(),1);
451  unsigned int match = ((kd1 == kd2) ? 1 : 0);
452  return match;
453 }
454 
456  HcalDetId id(id_);
457  int ieta = id.ietaAbs();
458  int depth= id.depth();
459  double lx(0);
460  if (id.subdet() == HcalBarrel) {
461  for (unsigned int i=0; i<actHB_.size(); ++i) {
462  if (ieta == actHB_[i].ieta && depth == actHB_[i].depth) {
463  lx = actHB_[i].thick;
464  break;
465  }
466  }
467  } else {
468  for (unsigned int i=0; i<actHE_.size(); ++i) {
469  if (ieta == actHE_[i].ieta && depth == actHE_[i].depth) {
470  lx = actHE_[i].thick;
471  break;
472  }
473  }
474  }
475  return lx;
476 }
477 
478 //define this as a plug-in
RunNumber_t run() const
Definition: EventID.h:39
static const std::string kSharedResource
Definition: TFileService.h:76
std::vector< double > hcalDepthActiveLengthHot_[depthMax_]
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:41
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< edm::PCaloHitContainer > tok_caloEE_
std::vector< spr::propagatedTrackID > propagateCALO(edm::Handle< reco::TrackCollection > &trkCollection, const CaloGeometry *geo, const MagneticField *bField, const std::string &theTrackQuality, bool debug=false)
std::vector< double > ecal3x3Energy_
T perp() const
Definition: PV3DBase.h:72
HcalSubdetector subdet() const
get the subdetector
Definition: HcalDetId.h:146
ParameterDescriptionBase * addUntracked(U const &iLabel, T const &value)
std::vector< double > hcalDepthEnergyHot_[depthMax_]
std::vector< unsigned int > hcalDetId_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
int zside() const
get the z-side of the cell (1/-1)
Definition: HcalDetId.h:149
std::vector< double > hcal1x1Energy_
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
int bunchCrossing() const
Definition: EventBase.h:64
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
edm::EDGetTokenT< edm::SimVertexContainer > tok_SimVtx_
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
spr::trackAtOrigin simTrackAtOrigin(unsigned int thisTrk, edm::Handle< edm::SimTrackContainer > &SimTk, edm::Handle< edm::SimVertexContainer > &SimVtx, bool debug=false)
std::vector< double > ptGlob_
int zside(DetId const &)
LuminosityBlockNumber_t luminosityBlock() const
Definition: EventID.h:40
edm::Service< TFileService > fs_
virtual void beginLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &)
std::vector< double > matchedId_
std::vector< double > hcalActiveLengthHot_
double activeLength(const DetId &)
U second(std::pair< T, U > const &p)
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
T mag() const
Definition: PV3DBase.h:67
edm::EDGetTokenT< edm::SimTrackContainer > tok_SimTk_
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)
int getMinDepth(const int &itype, const int &ieta, const int &iphi, const int &zside) const
std::vector< double > hcalActiveLength_
int ieta() const
get the cell ieta
Definition: HcalDetId.h:159
std::vector< double > hcalDepthEnergy_[depthMax_]
HcalSubdetector
Definition: HcalAssistant.h:31
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
unsigned int id() const
Definition: PCaloHit.h:37
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void endRun(edm::Run const &, edm::EventSetup const &) override
std::vector< double > phiGlob_
std::vector< HcalDDDRecConstants::HcalActiveLength > actHE_
int k[5][pyjets_maxn]
void beginRun(edm::Run const &, edm::EventSetup const &) override
edm::EDGetTokenT< edm::PCaloHitContainer > tok_caloHH_
int iphi() const
get the cell iphi
Definition: HcalDetId.h:161
Definition: DetId.h:18
#define debug
Definition: HDRShower.cc:19
edm::EDGetTokenT< edm::PCaloHitContainer > tok_caloEB_
std::vector< double > etaGlob_
void add(std::string const &label, ParameterSetDescription const &psetDescription)
virtual void endLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &)
std::vector< HcalDDDRecConstants::HcalActiveLength > actHB_
std::vector< double > pMuon_
T eta() const
Definition: PV3DBase.h:76
edm::EventID id() const
Definition: EventBase.h:59
void setID(unsigned int id)
Definition: PCaloHit.h:36
T get() const
Definition: EventSetup.h:71
unsigned int matchId(const HcalDetId &, const HcalDetId &)
HcalHBHEMuonSimAnalyzer(const edm::ParameterSet &)
std::vector< HcalActiveLength > getThickActive(const int &type) const
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
DetId relabel(const uint32_t testId) const
T const * product() const
Definition: ESHandle.h:86
void analyze(edm::Event const &, edm::EventSetup const &) override
std::vector< unsigned int > hcalHot_
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)
Definition: Run.h:45
std::vector< unsigned int > ecalDetId_
std::vector< double > hcalDepthActiveLength_[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)