CMS 3D CMS Logo

GeneralPurposeTrackAnalyzer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: Alignment/OfflineValidation
4 // Class: GeneralPurposeTrackAnalyzer
5 //
9 //
10 // Original Author: Marco Musich
11 // Created: Mon, 13 Jun 2016 15:07:11 GMT
12 //
13 //
14 
15 // ROOT includes files
16 
17 #include "TMath.h"
18 #include "TFile.h"
19 #include "TH1D.h"
20 #include "TH1I.h"
21 #include "TH2D.h"
22 #include "TProfile.h"
23 
24 // system includes files
25 
26 #include <cmath>
27 #include <fstream>
28 #include <iostream>
29 #include <map>
30 #include <string>
31 #include <vector>
32 #include <boost/range/adaptor/indexed.hpp>
33 
34 // user include files
35 
78 
79 // toggle to enable debugging
80 #define DEBUG 0
81 
84 
85 class GeneralPurposeTrackAnalyzer : public edm::one::EDAnalyzer<edm::one::WatchRuns, edm::one::SharedResources> {
86 public:
91  usesResource(TFileService::kSharedResource);
92 
93  TkTag_ = pset.getParameter<edm::InputTag>("TkTag");
94  theTrackCollectionToken = consumes<reco::TrackCollection>(TkTag_);
95 
96  TriggerResultsTag_ = pset.getParameter<edm::InputTag>("TriggerResultsTag");
97  hltresultsToken = consumes<edm::TriggerResults>(TriggerResultsTag_);
98 
99  BeamSpotTag_ = pset.getParameter<edm::InputTag>("BeamSpotTag");
100  beamspotToken = consumes<reco::BeamSpot>(BeamSpotTag_);
101 
102  VerticesTag_ = pset.getParameter<edm::InputTag>("VerticesTag");
103  vertexToken = consumes<reco::VertexCollection>(VerticesTag_);
104 
105  isCosmics_ = pset.getParameter<bool>("isCosmics");
106 
107  pmap = std::make_unique<TrackerMap>("Pixel");
108  pmap->onlyPixel(true);
109  pmap->setTitle("Pixel Hit entries");
110  pmap->setPalette(1);
111 
112  tmap = std::make_unique<TrackerMap>("Strip");
113  tmap->setTitle("Strip Hit entries");
114  tmap->setPalette(1);
115 
116  pixelmap = std::make_unique<Phase1PixelMaps>("COLZ0 L");
117  pixelmap->bookBarrelHistograms("entriesBarrel", "# hits", "# pixel hits");
118  pixelmap->bookForwardHistograms("entriesForward", "# hits", "# pixel hits");
119  }
120 
122 
124 
125  template <class OBJECT_TYPE>
126  int GetIndex(const std::vector<OBJECT_TYPE *> &vec, const TString &name) {
127  for (const auto &iter : vec | boost::adaptors::indexed(0)) {
128  if (iter.value() && iter.value()->GetName() == name) {
129  return iter.index();
130  }
131  }
132  edm::LogError("GeneralPurposeTrackAnalyzer") << "@SUB=GeneralPurposeTrackAnalyzer::GetIndex"
133  << " could not find " << name;
134  return -1;
135  }
136 
137 private:
138  // tokens for the event setup
142 
144 
146 
147  std::unique_ptr<TrackerMap> tmap;
148  std::unique_ptr<TrackerMap> pmap;
149 
150  std::unique_ptr<Phase1PixelMaps> pixelmap;
151 
152  TH1D *hchi2ndof;
153  TH1D *hNtrk;
154  TH1D *hNtrkZoom;
155  TH1I *htrkQuality;
156  TH1I *htrkAlgo;
157  TH1I *htrkOriAlgo;
159  TH1D *hP;
160  TH1D *hPPlus;
161  TH1D *hPMinus;
162  TH1D *hPt;
163  TH1D *hMinPt;
164  TH1D *hPtPlus;
165  TH1D *hPtMinus;
166  TH1D *hHit;
167  TH1D *hHit2D;
168 
175 
178 
181 
182  TH1D *hHitPlus;
183  TH1D *hHitMinus;
184 
185  TH1D *hPhp;
186  TH1D *hPthp;
187  TH1D *hHithp;
188  TH1D *hEtahp;
189  TH1D *hPhihp;
190  TH1D *hchi2ndofhp;
191  TH1D *hchi2Probhp;
192 
193  TH1D *hCharge;
194  TH1D *hQoverP;
195  TH1D *hQoverPZoom;
196  TH1D *hEta;
197  TH1D *hEtaPlus;
198  TH1D *hEtaMinus;
199  TH1D *hPhi;
200  TH1D *hPhiBarrel;
205  TH1D *hPhiPlus;
206  TH1D *hPhiMinus;
207 
208  TH1D *hDeltaPhi;
209  TH1D *hDeltaEta;
210  TH1D *hDeltaR;
211 
212  TH1D *hvx;
213  TH1D *hvy;
214  TH1D *hvz;
215  TH1D *hd0;
216  TH1D *hdz;
217  TH1D *hdxy;
218 
219  TH2D *hd0PVvsphi;
220  TH2D *hd0PVvseta;
221  TH2D *hd0PVvspt;
222 
223  TH2D *hd0vsphi;
224  TH2D *hd0vseta;
225  TH2D *hd0vspt;
226 
227  TH1D *hnhpxb;
228  TH1D *hnhpxe;
229  TH1D *hnhTIB;
230  TH1D *hnhTID;
231  TH1D *hnhTOB;
232  TH1D *hnhTEC;
233 
235 
236  TProfile *pNBpixHitsVsVx;
237  TProfile *pNBpixHitsVsVy;
238  TProfile *pNBpixHitsVsVz;
239 
240  TH1D *hMultCand;
241 
242  TH1D *hdxyBS;
243  TH1D *hd0BS;
244  TH1D *hdzBS;
245  TH1D *hdxyPV;
246  TH1D *hd0PV;
247  TH1D *hdzPV;
248  TH1D *hrun;
249  TH1D *hlumi;
250 
251  std::vector<TH1 *> vTrackHistos_;
252  std::vector<TH1 *> vTrackProfiles_;
253  std::vector<TH1 *> vTrack2DHistos_;
254 
257 
258  TH1D *modeByRun_;
259  TH1D *fieldByRun_;
260 
261  int ievt;
262  int itrks;
263  int mode;
265  bool isPhase1_;
266  float etaMax_;
267 
269 
274 
276 
281 
282  std::map<std::string, std::pair<int, int> > triggerMap_;
283  std::map<int, std::pair<int, float> > conditionsMap_;
284  std::map<int, std::pair<int, int> > runInfoMap_;
285 
286  //*************************************************************
287  void analyze(const edm::Event &event, const edm::EventSetup &setup) override
288  //*************************************************************
289  {
290  ievt++;
291 
293  event.getByToken(theTrackCollectionToken, trackCollection);
294 
295  // geometry setup
297  const TrackerGeometry *theGeometry = &(*geometry);
298 
299  // switch on the phase1
300  if ((theGeometry->isThere(GeomDetEnumerators::P1PXB)) || (theGeometry->isThere(GeomDetEnumerators::P1PXEC))) {
301  isPhase1_ = true;
302  } else {
303  isPhase1_ = false;
304  }
305 
306  const reco::TrackCollection tC = *(trackCollection.product());
307  itrks += tC.size();
308 
309  runInfoMap_[event.run()].first += 1;
310  runInfoMap_[event.run()].second += tC.size();
311 
312  if (DEBUG) {
313  edm::LogInfo("GeneralPurposeTrackAnalyzer") << "Reconstructed " << tC.size() << " tracks" << std::endl;
314  }
315  //int iCounter=0;
316 
318  event.getByToken(hltresultsToken, hltresults);
319  if (hltresults.isValid()) {
320  const edm::TriggerNames &triggerNames_ = event.triggerNames(*hltresults);
321  int ntrigs = hltresults->size();
322  //const vector<std::string> &triggernames = triggerNames_.triggerNames();
323 
324  for (int itrig = 0; itrig != ntrigs; ++itrig) {
325  const std::string &trigName = triggerNames_.triggerName(itrig);
326  bool accept = hltresults->accept(itrig);
327  if (accept == 1) {
328  if (DEBUG) {
329  edm::LogInfo("GeneralPurposeTrackAnalyzer")
330  << trigName << " " << accept << " ,track size: " << tC.size() << std::endl;
331  }
332  triggerMap_[trigName].first += 1;
333  triggerMap_[trigName].second += tC.size();
334  // triggerInfo.push_back(pair <std::string, int> (trigName, accept));
335  }
336  }
337  }
338 
339  hrun->Fill(event.run());
340  hlumi->Fill(event.luminosityBlock());
341 
342  int nHighPurityTracks = 0;
343 
344  for (auto track = tC.cbegin(); track != tC.cend(); track++) {
345  unsigned int nHit2D = 0;
346  for (auto iHit = track->recHitsBegin(); iHit != track->recHitsEnd(); ++iHit) {
347  if (this->isHit2D(**iHit)) {
348  ++nHit2D;
349  }
350 
351  const DetId &detId = (*iHit)->geographicalId();
352  const GeomDet *geomDet(theGeometry->idToDet(detId));
353 
354  const SiPixelRecHit *pixhit = dynamic_cast<const SiPixelRecHit *>(*iHit);
355 
356  if (pixhit) {
357  if (pixhit->isValid()) {
358  unsigned int subid = detId.subdetId();
359  int detid_db = detId.rawId();
360 
361  if (!isPhase1_) {
362  pmap->fill(detid_db, 1);
363  } else {
364  if (subid == PixelSubdetector::PixelBarrel) {
365  pixelmap->fillBarrelBin("entriesBarrel", detid_db, 1);
366  } else {
367  pixelmap->fillForwardBin("entriesForward", detid_db, 1);
368  }
369  }
370 
371  LocalPoint lp = (*iHit)->localPosition();
372  //LocalError le = (*iHit)->localPositionError();
373 
374  GlobalPoint GP = geomDet->surface().toGlobal(lp);
375 
376  if ((subid == PixelSubdetector::PixelBarrel) || (subid == PixelSubdetector::PixelEndcap)) {
377  // 1 = PXB, 2 = PXF
378  if (subid == PixelSubdetector::PixelBarrel) {
379  hHitCountVsThetaBPix->Fill(GP.theta());
380  hHitCountVsPhiBPix->Fill(GP.phi());
381 
382  hHitCountVsZBPix->Fill(GP.z());
383  hHitCountVsXBPix->Fill(GP.x());
384  hHitCountVsYBPix->Fill(GP.y());
385 
386  } else if (subid == PixelSubdetector::PixelEndcap) {
387  hHitCountVsThetaFPix->Fill(GP.theta());
388  hHitCountVsPhiFPix->Fill(GP.phi());
389 
390  hHitCountVsZFPix->Fill(GP.z());
391  hHitCountVsXFPix->Fill(GP.x());
392  hHitCountVsYFPix->Fill(GP.y());
393  }
394  }
395  }
396  } else {
397  if ((*iHit)->isValid()) {
398  tmap->fill(detId.rawId(), 1);
399  }
400  }
401  }
402 
403  hHit2D->Fill(nHit2D);
404  hHit->Fill(track->numberOfValidHits());
405  hnhpxb->Fill(track->hitPattern().numberOfValidPixelBarrelHits());
406  hnhpxe->Fill(track->hitPattern().numberOfValidPixelEndcapHits());
407  hnhTIB->Fill(track->hitPattern().numberOfValidStripTIBHits());
408  hnhTID->Fill(track->hitPattern().numberOfValidStripTIDHits());
409  hnhTOB->Fill(track->hitPattern().numberOfValidStripTOBHits());
410  hnhTEC->Fill(track->hitPattern().numberOfValidStripTECHits());
411 
412  // fill hit composition histogram
413  if (track->hitPattern().numberOfValidPixelBarrelHits() != 0) {
414  hHitComposition->Fill(0., track->hitPattern().numberOfValidPixelBarrelHits());
415 
416  pNBpixHitsVsVx->Fill(track->vx(), track->hitPattern().numberOfValidPixelBarrelHits());
417  pNBpixHitsVsVy->Fill(track->vy(), track->hitPattern().numberOfValidPixelBarrelHits());
418  pNBpixHitsVsVz->Fill(track->vz(), track->hitPattern().numberOfValidPixelBarrelHits());
419  }
420  if (track->hitPattern().numberOfValidPixelEndcapHits() != 0) {
421  hHitComposition->Fill(1., track->hitPattern().numberOfValidPixelEndcapHits());
422  }
423  if (track->hitPattern().numberOfValidStripTIBHits() != 0) {
424  hHitComposition->Fill(2., track->hitPattern().numberOfValidStripTIBHits());
425  }
426  if (track->hitPattern().numberOfValidStripTIDHits() != 0) {
427  hHitComposition->Fill(3., track->hitPattern().numberOfValidStripTIDHits());
428  }
429  if (track->hitPattern().numberOfValidStripTOBHits() != 0) {
430  hHitComposition->Fill(4., track->hitPattern().numberOfValidStripTOBHits());
431  }
432  if (track->hitPattern().numberOfValidStripTECHits() != 0) {
433  hHitComposition->Fill(5., track->hitPattern().numberOfValidStripTECHits());
434  }
435 
436  hCharge->Fill(track->charge());
437  hQoverP->Fill(track->qoverp());
438  hQoverPZoom->Fill(track->qoverp());
439  hPt->Fill(track->pt());
440  hP->Fill(track->p());
441  hchi2ndof->Fill(track->normalizedChi2());
442  hEta->Fill(track->eta());
443  hPhi->Fill(track->phi());
444 
445  if (fabs(track->eta()) < 0.8) {
446  hPhiBarrel->Fill(track->phi());
447  }
448  if (track->eta() > 0.8 && track->eta() < 1.4) {
449  hPhiOverlapPlus->Fill(track->phi());
450  }
451  if (track->eta() < -0.8 && track->eta() > -1.4) {
452  hPhiOverlapMinus->Fill(track->phi());
453  }
454  if (track->eta() > 1.4) {
455  hPhiEndcapPlus->Fill(track->phi());
456  }
457  if (track->eta() < -1.4) {
458  hPhiEndcapMinus->Fill(track->phi());
459  }
460 
461  hd0->Fill(track->d0());
462  hdz->Fill(track->dz());
463  hdxy->Fill(track->dxy());
464  hvx->Fill(track->vx());
465  hvy->Fill(track->vy());
466  hvz->Fill(track->vz());
467 
468  htrkAlgo->Fill(static_cast<int>(track->algo()));
469  htrkOriAlgo->Fill(static_cast<int>(track->originalAlgo()));
470 
471  int myquality = -99;
472  if (track->quality(reco::TrackBase::undefQuality)) {
473  myquality = -1;
474  htrkQuality->Fill(myquality);
475  }
476  if (track->quality(reco::TrackBase::loose)) {
477  myquality = 0;
478  htrkQuality->Fill(myquality);
479  }
480  if (track->quality(reco::TrackBase::tight)) {
481  myquality = 1;
482  htrkQuality->Fill(myquality);
483  }
484  if (track->quality(reco::TrackBase::highPurity) && (!isCosmics_)) {
485  myquality = 2;
486  htrkQuality->Fill(myquality);
487  hPhp->Fill(track->p());
488  hPthp->Fill(track->pt());
489  hHithp->Fill(track->numberOfValidHits());
490  hEtahp->Fill(track->eta());
491  hPhihp->Fill(track->phi());
492  hchi2ndofhp->Fill(track->normalizedChi2());
493  hchi2Probhp->Fill(TMath::Prob(track->chi2(), track->ndof()));
494  nHighPurityTracks++;
495  }
496  if (track->quality(reco::TrackBase::confirmed)) {
497  myquality = 3;
498  htrkQuality->Fill(myquality);
499  }
500  if (track->quality(reco::TrackBase::goodIterative)) {
501  myquality = 4;
502  htrkQuality->Fill(myquality);
503  }
504 
505  // Fill 1D track histos
506  static const int etaindex = this->GetIndex(vTrackHistos_, "h_tracketa");
507  vTrackHistos_[etaindex]->Fill(track->eta());
508  static const int phiindex = this->GetIndex(vTrackHistos_, "h_trackphi");
509  vTrackHistos_[phiindex]->Fill(track->phi());
510  static const int numOfValidHitsindex = this->GetIndex(vTrackHistos_, "h_trackNumberOfValidHits");
511  vTrackHistos_[numOfValidHitsindex]->Fill(track->numberOfValidHits());
512  static const int numOfLostHitsindex = this->GetIndex(vTrackHistos_, "h_trackNumberOfLostHits");
513  vTrackHistos_[numOfLostHitsindex]->Fill(track->numberOfLostHits());
514 
515  GlobalPoint gPoint(track->vx(), track->vy(), track->vz());
516  double theLocalMagFieldInInverseGeV = magneticField_->inInverseGeV(gPoint).z();
517  double kappa = -track->charge() * theLocalMagFieldInInverseGeV / track->pt();
518 
519  static const int kappaindex = this->GetIndex(vTrackHistos_, "h_curvature");
520  vTrackHistos_[kappaindex]->Fill(kappa);
521  static const int kappaposindex = this->GetIndex(vTrackHistos_, "h_curvature_pos");
522  if (track->charge() > 0)
523  vTrackHistos_[kappaposindex]->Fill(fabs(kappa));
524  static const int kappanegindex = this->GetIndex(vTrackHistos_, "h_curvature_neg");
525  if (track->charge() < 0)
526  vTrackHistos_[kappanegindex]->Fill(fabs(kappa));
527 
528  double chi2Prob = TMath::Prob(track->chi2(), track->ndof());
529  double normchi2 = track->normalizedChi2();
530 
531  static const int normchi2index = this->GetIndex(vTrackHistos_, "h_normchi2");
532  vTrackHistos_[normchi2index]->Fill(normchi2);
533  static const int chi2index = this->GetIndex(vTrackHistos_, "h_chi2");
534  vTrackHistos_[chi2index]->Fill(track->chi2());
535  static const int chi2Probindex = this->GetIndex(vTrackHistos_, "h_chi2Prob");
536  vTrackHistos_[chi2Probindex]->Fill(chi2Prob);
537  static const int ptindex = this->GetIndex(vTrackHistos_, "h_pt");
538  static const int pt2index = this->GetIndex(vTrackHistos_, "h_ptrebin");
539  vTrackHistos_[ptindex]->Fill(track->pt());
540  vTrackHistos_[pt2index]->Fill(track->pt());
541  if (track->ptError() != 0.) {
542  static const int ptResolutionindex = this->GetIndex(vTrackHistos_, "h_ptResolution");
543  vTrackHistos_[ptResolutionindex]->Fill(track->ptError() / track->pt());
544  }
545  // Fill track profiles
546  static const int d0phiindex = this->GetIndex(vTrackProfiles_, "p_d0_vs_phi");
547  vTrackProfiles_[d0phiindex]->Fill(track->phi(), track->d0());
548  static const int dzphiindex = this->GetIndex(vTrackProfiles_, "p_dz_vs_phi");
549  vTrackProfiles_[dzphiindex]->Fill(track->phi(), track->dz());
550  static const int d0etaindex = this->GetIndex(vTrackProfiles_, "p_d0_vs_eta");
551  vTrackProfiles_[d0etaindex]->Fill(track->eta(), track->d0());
552  static const int dzetaindex = this->GetIndex(vTrackProfiles_, "p_dz_vs_eta");
553  vTrackProfiles_[dzetaindex]->Fill(track->eta(), track->dz());
554  static const int chiProbphiindex = this->GetIndex(vTrackProfiles_, "p_chi2Prob_vs_phi");
555  vTrackProfiles_[chiProbphiindex]->Fill(track->phi(), chi2Prob);
556  static const int chiProbabsd0index = this->GetIndex(vTrackProfiles_, "p_chi2Prob_vs_d0");
557  vTrackProfiles_[chiProbabsd0index]->Fill(fabs(track->d0()), chi2Prob);
558  static const int chiProbabsdzindex = this->GetIndex(vTrackProfiles_, "p_chi2Prob_vs_dz");
559  vTrackProfiles_[chiProbabsdzindex]->Fill(track->dz(), chi2Prob);
560  static const int chiphiindex = this->GetIndex(vTrackProfiles_, "p_chi2_vs_phi");
561  vTrackProfiles_[chiphiindex]->Fill(track->phi(), track->chi2());
562  static const int normchiphiindex = this->GetIndex(vTrackProfiles_, "p_normchi2_vs_phi");
563  vTrackProfiles_[normchiphiindex]->Fill(track->phi(), normchi2);
564  static const int chietaindex = this->GetIndex(vTrackProfiles_, "p_chi2_vs_eta");
565  vTrackProfiles_[chietaindex]->Fill(track->eta(), track->chi2());
566  static const int normchiptindex = this->GetIndex(vTrackProfiles_, "p_normchi2_vs_pt");
567  vTrackProfiles_[normchiptindex]->Fill(track->pt(), normchi2);
568  static const int normchipindex = this->GetIndex(vTrackProfiles_, "p_normchi2_vs_p");
569  vTrackProfiles_[normchipindex]->Fill(track->p(), normchi2);
570  static const int chiProbetaindex = this->GetIndex(vTrackProfiles_, "p_chi2Prob_vs_eta");
571  vTrackProfiles_[chiProbetaindex]->Fill(track->eta(), chi2Prob);
572  static const int normchietaindex = this->GetIndex(vTrackProfiles_, "p_normchi2_vs_eta");
573  vTrackProfiles_[normchietaindex]->Fill(track->eta(), normchi2);
574  static const int kappaphiindex = this->GetIndex(vTrackProfiles_, "p_kappa_vs_phi");
575  vTrackProfiles_[kappaphiindex]->Fill(track->phi(), kappa);
576  static const int kappaetaindex = this->GetIndex(vTrackProfiles_, "p_kappa_vs_eta");
577  vTrackProfiles_[kappaetaindex]->Fill(track->eta(), kappa);
578  static const int ptResphiindex = this->GetIndex(vTrackProfiles_, "p_ptResolution_vs_phi");
579  vTrackProfiles_[ptResphiindex]->Fill(track->phi(), track->ptError() / track->pt());
580  static const int ptResetaindex = this->GetIndex(vTrackProfiles_, "p_ptResolution_vs_eta");
581  vTrackProfiles_[ptResetaindex]->Fill(track->eta(), track->ptError() / track->pt());
582 
583  // Fill 2D track histos
584  static const int d0phiindex_2d = this->GetIndex(vTrack2DHistos_, "h2_d0_vs_phi");
585  vTrack2DHistos_[d0phiindex_2d]->Fill(track->phi(), track->d0());
586  static const int dzphiindex_2d = this->GetIndex(vTrack2DHistos_, "h2_dz_vs_phi");
587  vTrack2DHistos_[dzphiindex_2d]->Fill(track->phi(), track->dz());
588  static const int d0etaindex_2d = this->GetIndex(vTrack2DHistos_, "h2_d0_vs_eta");
589  vTrack2DHistos_[d0etaindex_2d]->Fill(track->eta(), track->d0());
590  static const int dzetaindex_2d = this->GetIndex(vTrack2DHistos_, "h2_dz_vs_eta");
591  vTrack2DHistos_[dzetaindex_2d]->Fill(track->eta(), track->dz());
592  static const int chiphiindex_2d = this->GetIndex(vTrack2DHistos_, "h2_chi2_vs_phi");
593  vTrack2DHistos_[chiphiindex_2d]->Fill(track->phi(), track->chi2());
594  static const int chiProbphiindex_2d = this->GetIndex(vTrack2DHistos_, "h2_chi2Prob_vs_phi");
595  vTrack2DHistos_[chiProbphiindex_2d]->Fill(track->phi(), chi2Prob);
596  static const int chiProbabsd0index_2d = this->GetIndex(vTrack2DHistos_, "h2_chi2Prob_vs_d0");
597  vTrack2DHistos_[chiProbabsd0index_2d]->Fill(fabs(track->d0()), chi2Prob);
598  static const int normchiphiindex_2d = this->GetIndex(vTrack2DHistos_, "h2_normchi2_vs_phi");
599  vTrack2DHistos_[normchiphiindex_2d]->Fill(track->phi(), normchi2);
600  static const int chietaindex_2d = this->GetIndex(vTrack2DHistos_, "h2_chi2_vs_eta");
601  vTrack2DHistos_[chietaindex_2d]->Fill(track->eta(), track->chi2());
602  static const int chiProbetaindex_2d = this->GetIndex(vTrack2DHistos_, "h2_chi2Prob_vs_eta");
603  vTrack2DHistos_[chiProbetaindex_2d]->Fill(track->eta(), chi2Prob);
604  static const int normchietaindex_2d = this->GetIndex(vTrack2DHistos_, "h2_normchi2_vs_eta");
605  vTrack2DHistos_[normchietaindex_2d]->Fill(track->eta(), normchi2);
606  static const int kappaphiindex_2d = this->GetIndex(vTrack2DHistos_, "h2_kappa_vs_phi");
607  vTrack2DHistos_[kappaphiindex_2d]->Fill(track->phi(), kappa);
608  static const int kappaetaindex_2d = this->GetIndex(vTrack2DHistos_, "h2_kappa_vs_eta");
609  vTrack2DHistos_[kappaetaindex_2d]->Fill(track->eta(), kappa);
610  static const int normchi2kappa_2d = this->GetIndex(vTrack2DHistos_, "h2_normchi2_vs_kappa");
611  vTrack2DHistos_[normchi2kappa_2d]->Fill(normchi2, kappa);
612 
613  //dxy with respect to the beamspot
615  edm::Handle<reco::BeamSpot> beamSpotHandle;
616  event.getByToken(beamspotToken, beamSpotHandle);
617  if (beamSpotHandle.isValid()) {
618  beamSpot = *beamSpotHandle;
619  math::XYZPoint point(beamSpot.x0(), beamSpot.y0(), beamSpot.z0());
620  double dxy = track->dxy(point);
621  double dz = track->dz(point);
622  hdxyBS->Fill(dxy);
623  hd0BS->Fill(-dxy);
624  hdzBS->Fill(dz);
625  }
626 
627  //dxy with respect to the primary vertex
628  reco::Vertex pvtx;
630  event.getByToken(vertexToken, vertexHandle);
631  double mindxy = 100.;
632  double dz = 100;
633  if (vertexHandle.isValid() && !isCosmics_) {
634  for (auto pvtx = vertexHandle->cbegin(); pvtx != vertexHandle->cend(); ++pvtx) {
635  math::XYZPoint mypoint(pvtx->x(), pvtx->y(), pvtx->z());
636  if (abs(mindxy) > abs(track->dxy(mypoint))) {
637  mindxy = track->dxy(mypoint);
638  dz = track->dz(mypoint);
639  }
640  }
641 
642  hdxyPV->Fill(mindxy);
643  hd0PV->Fill(-mindxy);
644  hdzPV->Fill(dz);
645 
646  hd0PVvsphi->Fill(track->phi(), -mindxy);
647  hd0PVvseta->Fill(track->eta(), -mindxy);
648  hd0PVvspt->Fill(track->pt(), -mindxy);
649 
650  } else {
651  hdxyPV->Fill(100);
652  hd0PV->Fill(100);
653  hdzPV->Fill(100);
654 
655  hd0vsphi->Fill(track->phi(), -track->dxy());
656  hd0vseta->Fill(track->eta(), -track->dxy());
657  hd0vspt->Fill(track->pt(), -track->dxy());
658  }
659 
660  if (DEBUG) {
661  edm::LogInfo("GeneralPurposeTrackAnalyzer") << "end of track loop" << std::endl;
662  }
663  }
664 
665  hNtrk->Fill(tC.size());
666  hNtrkZoom->Fill(tC.size());
667  hNhighPurity->Fill(nHighPurityTracks);
668 
669  if (DEBUG) {
670  edm::LogInfo("GeneralPurposeTrackAnalyzer") << "end of analysis" << std::endl;
671  }
672  }
673 
674  //*************************************************************
675  void beginRun(edm::Run const &run, edm::EventSetup const &setup) override
676  //*************************************************************
677  {
678  // Magnetic Field setup
679  magneticField_ = setup.getHandle(magFieldToken_);
680  float B_ = magneticField_.product()->inTesla(GlobalPoint(0, 0, 0)).mag();
681 
682  if (DEBUG) {
683  edm::LogInfo("GeneralPurposeTrackAnalyzer")
684  << "run number:" << run.run() << " magnetic field: " << B_ << " [T]" << std::endl;
685  }
686 
687  //SiStrip Latency
689  if (apvlat->singleReadOutMode() == 1) {
690  mode = 1; // peak mode
691  } else if (apvlat->singleReadOutMode() == 0) {
692  mode = -1; // deco mode
693  }
694 
695  conditionsMap_[run.run()].first = mode;
696  conditionsMap_[run.run()].second = B_;
697  }
698 
699  //*************************************************************
700  void endRun(edm::Run const &, edm::EventSetup const &) override {}
701  //*************************************************************
702 
703  //*************************************************************
704  void beginJob() override
705  //*************************************************************
706  {
707  if (DEBUG) {
708  edm::LogInfo("GeneralPurposeTrackAnalyzer") << __LINE__ << std::endl;
709  }
710 
711  TH1D::SetDefaultSumw2(kTRUE);
712 
713  isPhase1_ = true;
714  etaMax_ = 3.0;
715 
716  ievt = 0;
717  itrks = 0;
718 
719  hrun = fs->make<TH1D>("h_run", "run", 100000, 230000, 240000);
720  hlumi = fs->make<TH1D>("h_lumi", "lumi", 1000, 0, 1000);
721 
722  hchi2ndof = fs->make<TH1D>("h_chi2ndof", "chi2/ndf;#chi^{2}/ndf;tracks", 100, 0, 5.);
723  hCharge = fs->make<TH1D>("h_charge", "charge;Charge of the track;tracks", 5, -2.5, 2.5);
724  hNtrk = fs->make<TH1D>("h_Ntrk", "ntracks;Number of Tracks;events", 200, 0., 200.);
725  hNtrkZoom = fs->make<TH1D>("h_NtrkZoom", "Number of tracks; number of tracks;events", 10, 0., 10.);
726  hNhighPurity =
727  fs->make<TH1D>("h_NhighPurity", "n. high purity tracks;Number of high purity tracks;events", 200, 0., 200.);
728 
729  htrkAlgo = fs->make<TH1I>("h_trkAlgo",
730  "tracking step;iterative tracking step;tracks",
732  0.,
733  double(reco::TrackBase::algoSize));
734 
735  htrkOriAlgo = fs->make<TH1I>("h_trkOriAlgo",
736  "original tracking step;original iterative tracking step;tracks",
738  0.,
739  double(reco::TrackBase::algoSize));
740 
741  for (size_t ibin = 0; ibin < reco::TrackBase::algoSize - 1; ibin++) {
742  htrkAlgo->GetXaxis()->SetBinLabel(ibin + 1, (reco::TrackBase::algoNames[ibin]).c_str());
743  htrkOriAlgo->GetXaxis()->SetBinLabel(ibin + 1, (reco::TrackBase::algoNames[ibin]).c_str());
744  }
745 
746  htrkQuality = fs->make<TH1I>("h_trkQuality", "track quality;track quality;tracks", 6, -1, 5);
747  std::string qualities[7] = {"undef", "loose", "tight", "highPurity", "confirmed", "goodIterative"};
748  for (int nbin = 1; nbin <= htrkQuality->GetNbinsX(); nbin++) {
749  htrkQuality->GetXaxis()->SetBinLabel(nbin, (qualities[nbin - 1]).c_str());
750  }
751 
752  hP = fs->make<TH1D>("h_P", "Momentum;track momentum [GeV];tracks", 100, 0., 100.);
753  hQoverP = fs->make<TH1D>("h_qoverp", "Track q/p; track q/p [GeV^{-1}];tracks", 100, -1., 1.);
754  hQoverPZoom = fs->make<TH1D>("h_qoverpZoom", "Track q/p; track q/p [GeV^{-1}];tracks", 100, -0.1, 0.1);
755  hPt = fs->make<TH1D>("h_Pt", "Transverse Momentum;track p_{T} [GeV];tracks", 100, 0., 100.);
756  hHit = fs->make<TH1D>("h_nHits", "Number of hits;track n. hits;tracks", 50, -0.5, 49.5);
757  hHit2D = fs->make<TH1D>("h_nHit2D", "Number of 2D hits; number of 2D hits;tracks", 20, 0, 20);
758 
759  hHitCountVsZBPix = fs->make<TH1D>("h_HitCountVsZBpix", "Number of BPix hits vs z;hit global z;hits", 60, -30, 30);
761  fs->make<TH1D>("h_HitCountVsZFpix", "Number of FPix hits vs z;hit global z;hits", 100, -100, 100);
762 
763  hHitCountVsXBPix = fs->make<TH1D>("h_HitCountVsXBpix", "Number of BPix hits vs x;hit global x;hits", 20, -20, 20);
764  hHitCountVsXFPix = fs->make<TH1D>("h_HitCountVsXFpix", "Number of FPix hits vs x;hit global x;hits", 20, -20, 20);
765 
766  hHitCountVsYBPix = fs->make<TH1D>("h_HitCountVsYBpix", "Number of BPix hits vs y;hit global y;hits", 20, -20, 20);
767  hHitCountVsYFPix = fs->make<TH1D>("h_HitCountVsYFpix", "Number of FPix hits vs y;hit global y;hits", 20, -20, 20);
768 
770  fs->make<TH1D>("h_HitCountVsThetaBpix", "Number of BPix hits vs #theta;hit global #theta;hits", 20, 0., M_PI);
772  fs->make<TH1D>("h_HitCountVsPhiBpix", "Number of BPix hits vs #phi;hit global #phi;hits", 20, -M_PI, M_PI);
773 
775  fs->make<TH1D>("h_HitCountVsThetaFpix", "Number of FPix hits vs #theta;hit global #theta;hits", 40, 0., M_PI);
777  fs->make<TH1D>("h_HitCountVsPhiFpix", "Number of FPix hits vs #phi;hit global #phi;hits", 20, -M_PI, M_PI);
778 
779  hEta = fs->make<TH1D>("h_Eta", "Track pseudorapidity; track #eta;tracks", 100, -etaMax_, etaMax_);
780  hPhi = fs->make<TH1D>("h_Phi", "Track azimuth; track #phi;tracks", 100, -M_PI, M_PI);
781 
782  hPhiBarrel = fs->make<TH1D>("h_PhiBarrel", "hPhiBarrel (0<|#eta|<0.8);track #Phi;tracks", 100, -M_PI, M_PI);
784  fs->make<TH1D>("h_PhiOverlapPlus", "hPhiOverlapPlus (0.8<#eta<1.4);track #phi;tracks", 100, -M_PI, M_PI);
786  fs->make<TH1D>("h_PhiOverlapMinus", "hPhiOverlapMinus (-1.4<#eta<-0.8);track #phi;tracks", 100, -M_PI, M_PI);
787  hPhiEndcapPlus = fs->make<TH1D>("h_PhiEndcapPlus", "hPhiEndcapPlus (#eta>1.4);track #phi;track", 100, -M_PI, M_PI);
789  fs->make<TH1D>("h_PhiEndcapMinus", "hPhiEndcapMinus (#eta<1.4);track #phi;tracks", 100, -M_PI, M_PI);
790 
791  if (!isCosmics_) {
792  hPhp = fs->make<TH1D>("h_P_hp", "Momentum (high purity);track momentum [GeV];tracks", 100, 0., 100.);
793  hPthp = fs->make<TH1D>("h_Pt_hp", "Transverse Momentum (high purity);track p_{T} [GeV];tracks", 100, 0., 100.);
794  hHithp = fs->make<TH1D>("h_nHit_hp", "Number of hits (high purity);track n. hits;tracks", 30, 0, 30);
795  hEtahp =
796  fs->make<TH1D>("h_Eta_hp", "Track pseudorapidity (high purity); track #eta;tracks", 100, -etaMax_, etaMax_);
797  hPhihp = fs->make<TH1D>("h_Phi_hp", "Track azimuth (high purity); track #phi;tracks", 100, -M_PI, M_PI);
798  hchi2ndofhp = fs->make<TH1D>("h_chi2ndof_hp", "chi2/ndf (high purity);#chi^{2}/ndf;tracks", 100, 0, 5.);
799  hchi2Probhp = fs->make<TH1D>(
800  "h_chi2_Prob_hp", "#chi^{2} probability (high purity);#chi^{2}prob_{Track};Number of Tracks", 100, 0.0, 1.);
801 
802  hvx = fs->make<TH1D>("h_vx", "Track v_{x} ; track v_{x} [cm];tracks", 100, -1.5, 1.5);
803  hvy = fs->make<TH1D>("h_vy", "Track v_{y} ; track v_{y} [cm];tracks", 100, -1.5, 1.5);
804  hvz = fs->make<TH1D>("h_vz", "Track v_{z} ; track v_{z} [cm];tracks", 100, -20., 20.);
805  hd0 = fs->make<TH1D>("h_d0", "Track d_{0} ; track d_{0} [cm];tracks", 100, -1., 1.);
806  hdxy = fs->make<TH1D>("h_dxy", "Track d_{xy}; track d_{xy} [cm]; tracks", 100, -0.5, 0.5);
807  hdz = fs->make<TH1D>("h_dz", "Track d_{z} ; track d_{z} [cm]; tracks", 100, -20, 20);
808 
809  hd0PVvsphi =
810  fs->make<TH2D>("h2_d0PVvsphi", "hd0PVvsphi;track #phi;track d_{0}(PV) [cm]", 160, -M_PI, M_PI, 100, -1., 1.);
811  hd0PVvseta =
812  fs->make<TH2D>("h2_d0PVvseta", "hdPV0vseta;track #eta;track d_{0}(PV) [cm]", 160, -2.5, 2.5, 100, -1., 1.);
813  hd0PVvspt = fs->make<TH2D>("h2_d0PVvspt", "hdPV0vspt;track p_{T};d_{0}(PV) [cm]", 50, 0., 100., 100, -1, 1.);
814 
815  hdxyBS = fs->make<TH1D>("h_dxyBS", "hdxyBS; track d_{xy}(BS) [cm];tracks", 100, -0.1, 0.1);
816  hd0BS = fs->make<TH1D>("h_d0BS", "hd0BS ; track d_{0}(BS) [cm];tracks", 100, -0.1, 0.1);
817  hdzBS = fs->make<TH1D>("h_dzBS", "hdzBS ; track d_{z}(BS) [cm];tracks", 100, -12, 12);
818  hdxyPV = fs->make<TH1D>("h_dxyPV", "hdxyPV; track d_{xy}(PV) [cm];tracks", 100, -0.1, 0.1);
819  hd0PV = fs->make<TH1D>("h_d0PV", "hd0PV ; track d_{0}(PV) [cm];tracks", 100, -0.15, 0.15);
820  hdzPV = fs->make<TH1D>("h_dzPV", "hdzPV ; track d_{z}(PV) [cm];tracks", 100, -0.1, 0.1);
821 
822  hnhTIB = fs->make<TH1D>("h_nHitTIB", "nhTIB;# hits in TIB; tracks", 20, 0., 20.);
823  hnhTID = fs->make<TH1D>("h_nHitTID", "nhTID;# hits in TID; tracks", 20, 0., 20.);
824  hnhTOB = fs->make<TH1D>("h_nHitTOB", "nhTOB;# hits in TOB; tracks", 20, 0., 20.);
825  hnhTEC = fs->make<TH1D>("h_nHitTEC", "nhTEC;# hits in TEC; tracks", 20, 0., 20.);
826 
827  } else {
828  hvx = fs->make<TH1D>("h_vx", "Track v_{x};track v_{x} [cm];tracks", 100, -100., 100.);
829  hvy = fs->make<TH1D>("h_vy", "Track v_{y};track v_{y} [cm];tracks", 100, -100., 100.);
830  hvz = fs->make<TH1D>("h_vz", "Track v_{z};track v_{z} [cm];track", 100, -100., 100.);
831  hd0 = fs->make<TH1D>("h_d0", "Track d_{0};track d_{0} [cm];track", 100, -100., 100.);
832  hdxy = fs->make<TH1D>("h_dxy", "Track d_{xy};track d_{xy} [cm];tracks", 100, -100, 100);
833  hdz = fs->make<TH1D>("h_dz", "Track d_{z};track d_{z} [cm];tracks", 100, -200, 200);
834 
835  hd0vsphi = fs->make<TH2D>(
836  "h2_d0vsphi", "Track d_{0} vs #phi; track #phi;track d_{0} [cm]", 160, -3.20, 3.20, 100, -100., 100.);
837  hd0vseta = fs->make<TH2D>(
838  "h2_d0vseta", "Track d_{0} vs #eta; track #eta;track d_{0} [cm]", 160, -3.20, 3.20, 100, -100., 100.);
839  hd0vspt = fs->make<TH2D>(
840  "h2_d0vspt", "Track d_{0} vs p_{T};track p_{T};track d_{0} [cm]", 50, 0., 100., 100, -100, 100);
841 
842  hdxyBS = fs->make<TH1D>("h_dxyBS", "Track d_{xy}(BS);d_{xy}(BS) [cm];tracks", 100, -100., 100.);
843  hd0BS = fs->make<TH1D>("h_d0BS", "Track d_{0}(BS);d_{0}(BS) [cm];tracks", 100, -100., 100.);
844  hdzBS = fs->make<TH1D>("h_dzBS", "Track d_{z}(BS);d_{z}(BS) [cm];tracks", 100, -100., 100.);
845  hdxyPV = fs->make<TH1D>("h_dxyPV", "Track d_{xy}(PV); d_{xy}(PV) [cm];tracks", 100, -100., 100.);
846  hd0PV = fs->make<TH1D>("h_d0PV", "Track d_{0}(PV); d_{0}(PV) [cm];tracks", 100, -100., 100.);
847  hdzPV = fs->make<TH1D>("h_dzPV", "Track d_{z}(PV); d_{z}(PV) [cm];tracks", 100, -100., 100.);
848 
849  hnhTIB = fs->make<TH1D>("h_nHitTIB", "nhTIB;# hits in TIB; tracks", 30, 0., 30.);
850  hnhTID = fs->make<TH1D>("h_nHitTID", "nhTID;# hits in TID; tracks", 30, 0., 30.);
851  hnhTOB = fs->make<TH1D>("h_nHitTOB", "nhTOB;# hits in TOB; tracks", 30, 0., 30.);
852  hnhTEC = fs->make<TH1D>("h_nHitTEC", "nhTEC;# hits in TEC; tracks", 30, 0., 30.);
853  }
854 
855  hnhpxb = fs->make<TH1D>("h_nHitPXB", "nhpxb;# hits in Pixel Barrel; tracks", 10, 0., 10.);
856  hnhpxe = fs->make<TH1D>("h_nHitPXE", "nhpxe;# hits in Pixel Endcap; tracks", 10, 0., 10.);
857 
858  hHitComposition = fs->make<TH1D>("h_hitcomposition", "track hit composition;;# hits", 6, -0.5, 5.5);
859 
861  fs->make<TProfile>("p_NpixHits_vs_Vx", "n. Barrel Pixel hits vs. v_{x};v_{x} (cm);n. BPix hits", 20, -20, 20);
862 
864  fs->make<TProfile>("p_NpixHits_vs_Vy", "n. Barrel Pixel hits vs. v_{y};v_{y} (cm);n. BPix hits", 20, -20, 20);
865 
867  fs->make<TProfile>("p_NpixHits_vs_Vz", "n. Barrel Pixel hits vs. v_{z};v_{z} (cm);n. BPix hits", 20, -100, 100);
868 
869  std::string dets[6] = {"PXB", "PXF", "TIB", "TID", "TOB", "TEC"};
870 
871  for (int i = 1; i <= hHitComposition->GetNbinsX(); i++) {
872  hHitComposition->GetXaxis()->SetBinLabel(i, (dets[i - 1]).c_str());
873  }
874 
875  vTrackHistos_.push_back(
876  fs->make<TH1F>("h_tracketa", "Track #eta;#eta_{Track};Number of Tracks", 90, -etaMax_, etaMax_));
877  vTrackHistos_.push_back(fs->make<TH1F>("h_trackphi", "Track #phi;#phi_{Track};Number of Tracks", 90, -M_PI, M_PI));
878  vTrackHistos_.push_back(fs->make<TH1F>(
879  "h_trackNumberOfValidHits", "Track # of valid hits;# of valid hits _{Track};Number of Tracks", 40, 0., 40.));
880  vTrackHistos_.push_back(fs->make<TH1F>(
881  "h_trackNumberOfLostHits", "Track # of lost hits;# of lost hits _{Track};Number of Tracks", 10, 0., 10.));
882  vTrackHistos_.push_back(
883  fs->make<TH1F>("h_curvature", "Curvature #kappa;#kappa_{Track};Number of Tracks", 100, -.05, .05));
884  vTrackHistos_.push_back(fs->make<TH1F>(
885  "h_curvature_pos", "Curvature |#kappa| Positive Tracks;|#kappa_{pos Track}|;Number of Tracks", 100, .0, .05));
886  vTrackHistos_.push_back(fs->make<TH1F>(
887  "h_curvature_neg", "Curvature |#kappa| Negative Tracks;|#kappa_{neg Track}|;Number of Tracks", 100, .0, .05));
888  vTrackHistos_.push_back(
889  fs->make<TH1F>("h_diff_curvature",
890  "Curvature |#kappa| Tracks Difference;|#kappa_{Track}|;# Pos Tracks - # Neg Tracks",
891  100,
892  .0,
893  .05));
894 
895  vTrackHistos_.push_back(
896  fs->make<TH1F>("h_chi2", "Track #chi^{2};#chi^{2}_{Track};Number of Tracks", 500, -0.01, 500.));
897  vTrackHistos_.push_back(
898  fs->make<TH1F>("h_chi2Prob", "#chi^{2} probability;Track Prob(#chi^{2},ndof);Number of Tracks", 100, 0.0, 1.));
899  vTrackHistos_.push_back(
900  fs->make<TH1F>("h_normchi2", "#chi^{2}/ndof;#chi^{2}/ndof;Number of Tracks", 100, -0.01, 10.));
901  //variable binning for chi2/ndof vs. pT
902  double xBins[19] = {0., 0.15, 0.5, 1., 1.5, 2., 2.5, 3., 3.5, 4., 4.5, 5., 7., 10., 15., 25., 40., 100., 200.};
903  vTrackHistos_.push_back(fs->make<TH1F>("h_pt", "Track p_{T};p_{T}^{track} [GeV];Number of Tracks", 250, 0., 250));
904  vTrackHistos_.push_back(fs->make<TH1F>("h_ptrebin", "Track p_{T};p_{T}^{track} [GeV];Number of Tracks", 18, xBins));
905  vTrackHistos_.push_back(fs->make<TH1F>(
906  "h_ptResolution", "#delta_{p_{T}}/p_{T}^{track};#delta_{p_{T}}/p_{T}^{track};Number of Tracks", 100, 0., 0.5));
907  vTrackProfiles_.push_back(fs->make<TProfile>(
908  "p_d0_vs_phi", "Transverse Impact Parameter vs. #phi;#phi_{Track};#LT d_{0} #GT [cm]", 100, -M_PI, M_PI));
909  vTrackProfiles_.push_back(fs->make<TProfile>(
910  "p_dz_vs_phi", "Longitudinal Impact Parameter vs. #phi;#phi_{Track};#LT d_{z} #GT [cm]", 100, -M_PI, M_PI));
911  vTrackProfiles_.push_back(fs->make<TProfile>(
912  "p_d0_vs_eta", "Transverse Impact Parameter vs. #eta;#eta_{Track};#LT d_{0} #GT [cm]", 100, -etaMax_, etaMax_));
913  vTrackProfiles_.push_back(
914  fs->make<TProfile>("p_dz_vs_eta",
915  "Longitudinal Impact Parameter vs. #eta;#eta_{Track};#LT d_{z} #GT [cm]",
916  100,
917  -etaMax_,
918  etaMax_));
919  vTrackProfiles_.push_back(
920  fs->make<TProfile>("p_chi2_vs_phi", "#chi^{2} vs. #phi;#phi_{Track};#LT #chi^{2} #GT", 100, -M_PI, M_PI));
921  vTrackProfiles_.push_back(
922  fs->make<TProfile>("p_chi2Prob_vs_phi",
923  "#chi^{2} probablility vs. #phi;#phi_{Track};#LT #chi^{2} probability#GT",
924  100,
925  -M_PI,
926  M_PI));
927 
928  vTrackProfiles_.push_back(fs->make<TProfile>(
929  "p_chi2Prob_vs_d0", "#chi^{2} probablility vs. |d_{0}|;|d_{0}|[cm];#LT #chi^{2} probability#GT", 100, 0, 80));
930  vTrackProfiles_.push_back(fs->make<TProfile>(
931  "p_chi2Prob_vs_dz", "#chi^{2} probablility vs. dz;d_{z} [cm];#LT #chi^{2} probability#GT", 100, -30, 30));
932  vTrackProfiles_.push_back(fs->make<TProfile>(
933  "p_normchi2_vs_phi", "#chi^{2}/ndof vs. #phi;#phi_{Track};#LT #chi^{2}/ndof #GT", 100, -M_PI, M_PI));
934  vTrackProfiles_.push_back(
935  fs->make<TProfile>("p_chi2_vs_eta", "#chi^{2} vs. #eta;#eta_{Track};#LT #chi^{2} #GT", 100, -etaMax_, etaMax_));
936  vTrackProfiles_.push_back(fs->make<TProfile>(
937  "p_normchi2_vs_pt", "norm #chi^{2} vs. p_{T}_{Track}; p_{T}_{Track};#LT #chi^{2}/ndof #GT", 18, xBins));
938  vTrackProfiles_.push_back(fs->make<TProfile>(
939  "p_normchi2_vs_p", "#chi^{2}/ndof vs. p_{Track};p_{Track};#LT #chi^{2}/ndof #GT", 18, xBins));
940  vTrackProfiles_.push_back(
941  fs->make<TProfile>("p_chi2Prob_vs_eta",
942  "#chi^{2} probability vs. #eta;#eta_{Track};#LT #chi^{2} probability #GT",
943  100,
944  -etaMax_,
945  etaMax_));
946 
947  vTrackProfiles_.push_back(fs->make<TProfile>(
948  "p_normchi2_vs_eta", "#chi^{2}/ndof vs. #eta;#eta_{Track};#LT #chi^{2}/ndof #GT", 100, -etaMax_, etaMax_));
949  vTrackProfiles_.push_back(
950  fs->make<TProfile>("p_kappa_vs_phi", "#kappa vs. #phi;#phi_{Track};#kappa", 100, -M_PI, M_PI));
951  vTrackProfiles_.push_back(
952  fs->make<TProfile>("p_kappa_vs_eta", "#kappa vs. #eta;#eta_{Track};#kappa", 100, -etaMax_, etaMax_));
953  vTrackProfiles_.push_back(
954  fs->make<TProfile>("p_ptResolution_vs_phi",
955  "#delta_{p_{T}}/p_{T}^{track};#phi^{track};#delta_{p_{T}}/p_{T}^{track}",
956  100,
957  -M_PI,
958  M_PI));
959 
960  vTrackProfiles_.push_back(
961  fs->make<TProfile>("p_ptResolution_vs_eta",
962  "#delta_{p_{T}}/p_{T}^{track};#eta^{track};#delta_{p_{T}}/p_{T}^{track}",
963  100,
964  -etaMax_,
965  etaMax_));
966 
967  vTrack2DHistos_.push_back(fs->make<TH2F>(
968  "h2_d0_vs_phi", "Transverse Impact Parameter vs. #phi;#phi_{Track};d_{0} [cm]", 100, -M_PI, M_PI, 100, -1., 1.));
969  vTrack2DHistos_.push_back(fs->make<TH2F>("h2_dz_vs_phi",
970  "Longitudinal Impact Parameter vs. #phi;#phi_{Track};d_{z} [cm]",
971  100,
972  -M_PI,
973  M_PI,
974  100,
975  -100.,
976  100.));
977 
978  vTrack2DHistos_.push_back(fs->make<TH2F>("h2_d0_vs_eta",
979  "Transverse Impact Parameter vs. #eta;#eta_{Track};d_{0} [cm]",
980  100,
981  -etaMax_,
982  etaMax_,
983  100,
984  -1.,
985  1.));
986  vTrack2DHistos_.push_back(fs->make<TH2F>("h2_dz_vs_eta",
987  "Longitudinal Impact Parameter vs. #eta;#eta_{Track};d_{z} [cm]",
988  100,
989  -etaMax_,
990  etaMax_,
991  100,
992  -100.,
993  100.));
994 
995  vTrack2DHistos_.push_back(
996  fs->make<TH2F>("h2_chi2_vs_phi", "#chi^{2} vs. #phi;#phi_{Track};#chi^{2}", 100, -M_PI, M_PI, 500, 0., 500.));
997  vTrack2DHistos_.push_back(fs->make<TH2F>("h2_chi2Prob_vs_phi",
998  "#chi^{2} probability vs. #phi;#phi_{Track};#chi^{2} probability",
999  100,
1000  -M_PI,
1001  M_PI,
1002  100,
1003  0.,
1004  1.));
1005 
1006  vTrack2DHistos_.push_back(fs->make<TH2F>("h2_chi2Prob_vs_d0",
1007  "#chi^{2} probability vs. |d_{0}|;|d_{0}| [cm];#chi^{2} probability",
1008  100,
1009  0,
1010  80,
1011  100,
1012  0.,
1013  1.));
1014 
1015  vTrack2DHistos_.push_back(fs->make<TH2F>(
1016  "h2_normchi2_vs_phi", "#chi^{2}/ndof vs. #phi;#phi_{Track};#chi^{2}/ndof", 100, -M_PI, M_PI, 100, 0., 10.));
1017  vTrack2DHistos_.push_back(fs->make<TH2F>(
1018  "h2_chi2_vs_eta", "#chi^{2} vs. #eta;#eta_{Track};#chi^{2}", 100, -etaMax_, etaMax_, 500, 0., 500.));
1019  vTrack2DHistos_.push_back(fs->make<TH2F>("h2_chi2Prob_vs_eta",
1020  "#chi^{2} probaility vs. #eta;#eta_{Track};#chi^{2} probability",
1021  100,
1022  -etaMax_,
1023  etaMax_,
1024  100,
1025  0.,
1026  1.));
1027 
1028  vTrack2DHistos_.push_back(fs->make<TH2F>(
1029  "h2_normchi2_vs_eta", "#chi^{2}/ndof vs. #eta;#eta_{Track};#chi^{2}/ndof", 100, -etaMax_, etaMax_, 100, 0., 10.));
1030  vTrack2DHistos_.push_back(
1031  fs->make<TH2F>("h2_kappa_vs_phi", "#kappa vs. #phi;#phi_{Track};#kappa", 100, -M_PI, M_PI, 100, .0, .05));
1032  vTrack2DHistos_.push_back(
1033  fs->make<TH2F>("h2_kappa_vs_eta", "#kappa vs. #eta;#eta_{Track};#kappa", 100, -etaMax_, etaMax_, 100, .0, .05));
1034  vTrack2DHistos_.push_back(fs->make<TH2F>(
1035  "h2_normchi2_vs_kappa", "#kappa vs. #chi^{2}/ndof;#chi^{2}/ndof;#kappa", 100, 0., 10, 100, -.03, .03));
1036 
1037  firstEvent_ = true;
1038 
1039  } //beginJob
1040 
1041  //*************************************************************
1042  void endJob() override
1043  //*************************************************************
1044  {
1045  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "*******************************" << std::endl;
1046  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "Events run in total: " << ievt << std::endl;
1047  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "n. tracks: " << itrks << std::endl;
1048  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "*******************************" << std::endl;
1049 
1050  int nFiringTriggers = triggerMap_.size();
1051  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "firing triggers: " << nFiringTriggers << std::endl;
1052  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "*******************************" << std::endl;
1053 
1054  tksByTrigger_ = fs->make<TH1D>(
1055  "tksByTrigger", "tracks by HLT path;;% of # traks", nFiringTriggers, -0.5, nFiringTriggers - 0.5);
1056  evtsByTrigger_ = fs->make<TH1D>(
1057  "evtsByTrigger", "events by HLT path;;% of # events", nFiringTriggers, -0.5, nFiringTriggers - 0.5);
1058 
1059  int i = 0;
1060  for (const auto &it : triggerMap_) {
1061  i++;
1062 
1063  double trkpercent = ((it.second).second) * 100. / double(itrks);
1064  double evtpercent = ((it.second).first) * 100. / double(ievt);
1065 
1066  std::cout.precision(4);
1067 
1068  edm::LogPrint("GeneralPurposeTrackAnalyzer")
1069  << "HLT path: " << std::setw(60) << std::left << it.first << " | events firing: " << std::right
1070  << std::setw(8) << (it.second).first << " (" << std::setw(8) << std::fixed << std::setprecision(4)
1071  << evtpercent << "%)"
1072  << " | tracks collected: " << std::setw(10) << (it.second).second << " (" << std::setw(8) << std::fixed
1073  << std::setprecision(4) << trkpercent << "%)";
1074 
1075  tksByTrigger_->SetBinContent(i, trkpercent);
1076  tksByTrigger_->GetXaxis()->SetBinLabel(i, (it.first).c_str());
1077 
1078  evtsByTrigger_->SetBinContent(i, evtpercent);
1079  evtsByTrigger_->GetXaxis()->SetBinLabel(i, (it.first).c_str());
1080  }
1081 
1082  int nRuns = conditionsMap_.size();
1083 
1084  std::vector<int> theRuns_;
1085  for (const auto &it : conditionsMap_) {
1086  theRuns_.push_back(it.first);
1087  }
1088 
1089  sort(theRuns_.begin(), theRuns_.end());
1090  int runRange = theRuns_.back() - theRuns_.front() + 1;
1091 
1092  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "*******************************" << std::endl;
1093  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "first run: " << theRuns_.front() << std::endl;
1094  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "last run: " << theRuns_.back() << std::endl;
1095  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "considered runs: " << nRuns << std::endl;
1096  edm::LogPrint("GeneralPurposeTrackAnalyzer") << "*******************************" << std::endl;
1097 
1098  modeByRun_ = fs->make<TH1D>("modeByRun",
1099  "Strip APV mode by run number;;APV mode (-1=deco,+1=peak)",
1100  runRange,
1101  theRuns_.front() - 0.5,
1102  theRuns_.back() + 0.5);
1103 
1104  fieldByRun_ = fs->make<TH1D>("fieldByRun",
1105  "CMS B-field intensity by run number;;B-field intensity [T]",
1106  runRange,
1107  theRuns_.front() - 0.5,
1108  theRuns_.back() + 0.5);
1109 
1110  for (const auto &the_r : theRuns_) {
1111  if (conditionsMap_.find(the_r)->second.first != 0) {
1112  edm::LogPrint("GeneralPurposeTrackAnalyzer")
1113  << "run:" << the_r << " | isPeak: " << std::setw(4) << conditionsMap_.find(the_r)->second.first
1114  << "| B-field: " << conditionsMap_.find(the_r)->second.second << " [T]"
1115  << "| events: " << std::setw(10) << runInfoMap_.find(the_r)->second.first << ", tracks " << std::setw(10)
1116  << runInfoMap_.find(the_r)->second.second << std::endl;
1117  }
1118 
1119  modeByRun_->SetBinContent((the_r - theRuns_.front()) + 1, conditionsMap_.find(the_r)->second.first);
1120  fieldByRun_->SetBinContent((the_r - theRuns_.front()) + 1, conditionsMap_.find(the_r)->second.second);
1121  modeByRun_->GetXaxis()->SetBinLabel((the_r - theRuns_.front()) + 1, std::to_string(the_r).c_str());
1122  fieldByRun_->GetXaxis()->SetBinLabel((the_r - theRuns_.front()) + 1, std::to_string(the_r).c_str());
1123  }
1124 
1125  pmap->save(true, 0, 0, "PixelHitMap.pdf", 600, 800);
1126  pmap->save(true, 0, 0, "PixelHitMap.png", 500, 750);
1127 
1128  tmap->save(true, 0, 0, "StripHitMap.pdf");
1129  tmap->save(true, 0, 0, "StripHitMap.png");
1130 
1131  gStyle->SetPalette(kRainBow);
1132  pixelmap->beautifyAllHistograms();
1133 
1134  TCanvas cB("CanvBarrel", "CanvBarrel", 1200, 1000);
1135  pixelmap->drawBarrelMaps("entriesBarrel", cB);
1136  cB.SaveAs("pixelBarrelEntries.png");
1137 
1138  TCanvas cF("CanvForward", "CanvForward", 1600, 1000);
1139  pixelmap->drawForwardMaps("entriesForward", cF);
1140  cF.SaveAs("pixelForwardEntries.png");
1141  }
1142 
1143  //*************************************************************
1145  //*************************************************************
1146  {
1147  bool countStereoHitAs2D_ = true;
1148  // we count SiStrip stereo modules as 2D if selected via countStereoHitAs2D_
1149  // (since they provide theta information)
1150  if (!hit.isValid() ||
1151  (hit.dimension() < 2 && !countStereoHitAs2D_ && !dynamic_cast<const SiStripRecHit1D *>(&hit))) {
1152  return false; // real RecHit1D - but SiStripRecHit1D depends on countStereoHitAs2D_
1153  } else {
1154  const DetId detId(hit.geographicalId());
1155  if (detId.det() == DetId::Tracker) {
1156  if (detId.subdetId() == kBPIX || detId.subdetId() == kFPIX) {
1157  return true; // pixel is always 2D
1158  } else { // should be SiStrip now
1159  const SiStripDetId stripId(detId);
1160  if (stripId.stereo())
1161  return countStereoHitAs2D_; // stereo modules
1162  else if (dynamic_cast<const SiStripRecHit1D *>(&hit) || dynamic_cast<const SiStripRecHit2D *>(&hit))
1163  return false; // rphi modules hit
1164  //the following two are not used any more since ages...
1165  else if (dynamic_cast<const SiStripMatchedRecHit2D *>(&hit))
1166  return true; // matched is 2D
1167  else if (dynamic_cast<const ProjectedSiStripRecHit2D *>(&hit)) {
1168  const ProjectedSiStripRecHit2D *pH = static_cast<const ProjectedSiStripRecHit2D *>(&hit);
1169  return (countStereoHitAs2D_ && this->isHit2D(pH->originalHit())); // depends on original...
1170  } else {
1171  edm::LogError("UnknownType") << "@SUB=GeneralPurposeTrackAnalyzer::isHit2D"
1172  << "Tracker hit not in pixel, neither SiStripRecHit[12]D nor "
1173  << "SiStripMatchedRecHit2D nor ProjectedSiStripRecHit2D.";
1174  return false;
1175  }
1176  }
1177  } else { // not tracker??
1178  edm::LogWarning("DetectorMismatch") << "@SUB=GeneralPurposeTrackAnalyzer::isHit2D"
1179  << "Hit not in tracker with 'official' dimension >=2.";
1180  return true; // dimension() >= 2 so accept that...
1181  }
1182  }
1183  // never reached...
1184  }
1185 };
1186 
1187 //*************************************************************
1189 //*************************************************************
1190 {
1192  desc.setComment("Generic track analyzer to check ALCARECO sample quantities");
1193  desc.add<edm::InputTag>("TkTag", edm::InputTag("generalTracks"));
1194  desc.add<edm::InputTag>("TriggerResultsTag", edm::InputTag("TriggerResults", "", "HLT"));
1195  desc.add<edm::InputTag>("BeamSpotTag", edm::InputTag("offlineBeamSpot"));
1196  desc.add<edm::InputTag>("VerticesTag", edm::InputTag("offlinePrimaryVertices"));
1197  desc.add<bool>("isCosmics", false);
1198  descriptions.add("GeneralPurposeTrackAnalyzer", desc);
1199 }
1200 
TrackerGeometry::idToDet
const TrackerGeomDet * idToDet(DetId) const override
Definition: TrackerGeometry.cc:193
TrajectoryStateCombiner.h
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
GeneralPurposeTrackAnalyzer::hHitCountVsYBPix
TH1D * hHitCountVsYBPix
Definition: GeneralPurposeTrackAnalyzer.cc:171
GeneralPurposeTrackAnalyzer::itrks
int itrks
Definition: GeneralPurposeTrackAnalyzer.cc:262
GeneralPurposeTrackAnalyzer::hEtaMinus
TH1D * hEtaMinus
Definition: GeneralPurposeTrackAnalyzer.cc:198
alignBH_cfg.fixed
fixed
Definition: alignBH_cfg.py:54
GlobalPositionRcd.h
GeneralPurposeTrackAnalyzer::conditionsMap_
std::map< int, std::pair< int, float > > conditionsMap_
Definition: GeneralPurposeTrackAnalyzer.cc:283
MagneticField::inTesla
virtual GlobalVector inTesla(const GlobalPoint &gp) const =0
Field value ad specified global point, in Tesla.
EDAnalyzer.h
mps_fire.i
i
Definition: mps_fire.py:428
pwdgSkimBPark_cfi.beamSpot
beamSpot
Definition: pwdgSkimBPark_cfi.py:5
HLT_FULL_cff.track
track
Definition: HLT_FULL_cff.py:11724
GeneralPurposeTrackAnalyzer::hnhTOB
TH1D * hnhTOB
Definition: GeneralPurposeTrackAnalyzer.cc:231
MessageLogger.h
reco::TrackBase::tight
Definition: TrackBase.h:153
GeneralPurposeTrackAnalyzer::hPhiPlus
TH1D * hPhiPlus
Definition: GeneralPurposeTrackAnalyzer.cc:205
GeneralPurposeTrackAnalyzer::hd0BS
TH1D * hd0BS
Definition: GeneralPurposeTrackAnalyzer.cc:243
PixelSubdetector::PixelEndcap
Definition: PixelSubdetector.h:11
TrackerGeometry.h
reco::TrackBase::loose
Definition: TrackBase.h:152
GeomDet
Definition: GeomDet.h:27
PixelSubdetector::PixelBarrel
Definition: PixelSubdetector.h:11
reco::TrackBase::goodIterative
Definition: TrackBase.h:156
TriggerResults.h
HLTBitAnalyser_cfi.hltresults
hltresults
Definition: HLTBitAnalyser_cfi.py:13
GeneralPurposeTrackAnalyzer::triggerMap_
std::map< std::string, std::pair< int, int > > triggerMap_
Definition: GeneralPurposeTrackAnalyzer.cc:282
PV3DBase::x
T x() const
Definition: PV3DBase.h:59
SiStripMatchedRecHit2DCollection.h
edm::Run
Definition: Run.h:45
GeneralPurposeTrackAnalyzer::vTrack2DHistos_
std::vector< TH1 * > vTrack2DHistos_
Definition: GeneralPurposeTrackAnalyzer.cc:253
reco::Vertex::z
double z() const
z coordinate
Definition: Vertex.h:133
reco::TrackBase::confirmed
Definition: TrackBase.h:155
edm::EDGetTokenT< reco::TrackCollection >
edm
HLT enums.
Definition: AlignableModifier.h:19
GeneralPurposeTrackAnalyzer::isHit2D
bool isHit2D(const TrackingRecHit &hit)
Definition: GeneralPurposeTrackAnalyzer.cc:1144
GeneralPurposeTrackAnalyzer::hd0
TH1D * hd0
Definition: GeneralPurposeTrackAnalyzer.cc:215
GeneralPurposeTrackAnalyzer::endRun
void endRun(edm::Run const &, edm::EventSetup const &) override
Definition: GeneralPurposeTrackAnalyzer.cc:700
GeneralPurposeTrackAnalyzer::hPthp
TH1D * hPthp
Definition: GeneralPurposeTrackAnalyzer.cc:186
PV3DBase::theta
Geom::Theta< T > theta() const
Definition: PV3DBase.h:72
reco::TrackBase::undefQuality
Definition: TrackBase.h:151
gather_cfg.cout
cout
Definition: gather_cfg.py:144
geometry
Definition: geometry.py:1
edm::LogPrint
Log< level::Warning, true > LogPrint
Definition: MessageLogger.h:130
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89301
GeneralPurposeTrackAnalyzer::hvz
TH1D * hvz
Definition: GeneralPurposeTrackAnalyzer.cc:214
GeneralPurposeTrackAnalyzer::hHitMinus
TH1D * hHitMinus
Definition: GeneralPurposeTrackAnalyzer.cc:183
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
GeneralPurposeTrackAnalyzer::hNhighPurity
TH1D * hNhighPurity
Definition: GeneralPurposeTrackAnalyzer.cc:158
GeneralPurposeTrackAnalyzer::tksByTrigger_
TH1D * tksByTrigger_
Definition: GeneralPurposeTrackAnalyzer.cc:255
GeneralPurposeTrackAnalyzer::hnhpxb
TH1D * hnhpxb
Definition: GeneralPurposeTrackAnalyzer.cc:227
edm::second
U second(std::pair< T, U > const &p)
Definition: ParameterSet.cc:222
SiStripDetId.h
GeneralPurposeTrackAnalyzer::trackerGeometry_
const TrackerGeometry * trackerGeometry_
Definition: GeneralPurposeTrackAnalyzer.cc:268
GeneralPurposeTrackAnalyzer::hDeltaR
TH1D * hDeltaR
Definition: GeneralPurposeTrackAnalyzer.cc:210
GeneralPurposeTrackAnalyzer::hHitCountVsPhiFPix
TH1D * hHitCountVsPhiFPix
Definition: GeneralPurposeTrackAnalyzer.cc:180
GeneralPurposeTrackAnalyzer::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &)
Definition: GeneralPurposeTrackAnalyzer.cc:1188
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
edm::one::EDAnalyzer
Definition: EDAnalyzer.h:30
HLTEgPhaseIITestSequence_cff.kappa
kappa
Definition: HLTEgPhaseIITestSequence_cff.py:1343
GeneralPurposeTrackAnalyzer::TriggerResultsTag_
edm::InputTag TriggerResultsTag_
Definition: GeneralPurposeTrackAnalyzer.cc:271
GeneralPurposeTrackAnalyzer::hHitCountVsPhiBPix
TH1D * hHitCountVsPhiBPix
Definition: GeneralPurposeTrackAnalyzer.cc:177
GeneralPurposeTrackAnalyzer::magneticField_
edm::ESHandle< MagneticField > magneticField_
Definition: GeneralPurposeTrackAnalyzer.cc:143
GeneralPurposeTrackAnalyzer::hHitCountVsThetaFPix
TH1D * hHitCountVsThetaFPix
Definition: GeneralPurposeTrackAnalyzer.cc:179
edm::Handle< reco::TrackCollection >
GeneralPurposeTrackAnalyzer::beamspotToken
edm::EDGetTokenT< reco::BeamSpot > beamspotToken
Definition: GeneralPurposeTrackAnalyzer.cc:279
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
singleTopDQM_cfi.setup
setup
Definition: singleTopDQM_cfi.py:37
ProjectedSiStripRecHit2D
Definition: ProjectedSiStripRecHit2D.h:8
GeneralPurposeTrackAnalyzer::hd0PVvspt
TH2D * hd0PVvspt
Definition: GeneralPurposeTrackAnalyzer.cc:221
GeneralPurposeTrackAnalyzer::hdxy
TH1D * hdxy
Definition: GeneralPurposeTrackAnalyzer.cc:217
SiPixelRecHit
Our base class.
Definition: SiPixelRecHit.h:23
GeneralPurposeTrackAnalyzer::hPPlus
TH1D * hPPlus
Definition: GeneralPurposeTrackAnalyzer.cc:160
GeneralPurposeTrackAnalyzer::runInfoMap_
std::map< int, std::pair< int, int > > runInfoMap_
Definition: GeneralPurposeTrackAnalyzer.cc:284
PV3DBase::z
T z() const
Definition: PV3DBase.h:61
GeneralPurposeTrackAnalyzer::modeByRun_
TH1D * modeByRun_
Definition: GeneralPurposeTrackAnalyzer.cc:258
GeneralPurposeTrackAnalyzer::hHitCountVsYFPix
TH1D * hHitCountVsYFPix
Definition: GeneralPurposeTrackAnalyzer.cc:172
GeneralPurposeTrackAnalyzer::hnhTEC
TH1D * hnhTEC
Definition: GeneralPurposeTrackAnalyzer.cc:232
IdealMagneticFieldRecord
Definition: IdealMagneticFieldRecord.h:11
GeneralPurposeTrackAnalyzer::BeamSpotTag_
edm::InputTag BeamSpotTag_
Definition: GeneralPurposeTrackAnalyzer.cc:272
DetId
Definition: DetId.h:17
GeneralPurposeTrackAnalyzer::hQoverPZoom
TH1D * hQoverPZoom
Definition: GeneralPurposeTrackAnalyzer.cc:195
accept
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:31
MakerMacros.h
TrackerTopology.h
TrackingRecHit.h
Track.h
GeneralPurposeTrackAnalyzer::hd0PVvseta
TH2D * hd0PVvseta
Definition: GeneralPurposeTrackAnalyzer.cc:220
TrackFwd.h
GeneralPurposeTrackAnalyzer::isCosmics_
bool isCosmics_
Definition: GeneralPurposeTrackAnalyzer.cc:275
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
BeamSpot.h
edm::ConfigurationDescriptions::add
void add(std::string const &label, ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:57
GeneralPurposeTrackAnalyzer::hlumi
TH1D * hlumi
Definition: GeneralPurposeTrackAnalyzer.cc:249
GeneralPurposeTrackAnalyzer::endJob
void endJob() override
Definition: GeneralPurposeTrackAnalyzer.cc:1042
LocalError.h
GeomDetEnumerators::P1PXEC
Definition: GeomDetEnumerators.h:26
Service.h
GeneralPurposeTrackAnalyzer::beginJob
void beginJob() override
Definition: GeneralPurposeTrackAnalyzer.cc:704
GeneralPurposeTrackAnalyzer::hdxyBS
TH1D * hdxyBS
Definition: GeneralPurposeTrackAnalyzer.cc:242
TrackerDigiGeometryRecord
Definition: TrackerDigiGeometryRecord.h:16
GeneralPurposeTrackAnalyzer::hdz
TH1D * hdz
Definition: GeneralPurposeTrackAnalyzer.cc:216
GeneralPurposeTrackAnalyzer::hEta
TH1D * hEta
Definition: GeneralPurposeTrackAnalyzer.cc:196
reco::BeamSpot
Definition: BeamSpot.h:21
SiTrackerMultiRecHit.h
GeneralPurposeTrackAnalyzer::hPtPlus
TH1D * hPtPlus
Definition: GeneralPurposeTrackAnalyzer.cc:164
IdealMagneticFieldRecord.h
GeneralPurposeTrackAnalyzer::~GeneralPurposeTrackAnalyzer
~GeneralPurposeTrackAnalyzer() override
Definition: GeneralPurposeTrackAnalyzer.cc:121
edm::ESHandle< MagneticField >
GeneralPurposeTrackAnalyzer::hPhiOverlapMinus
TH1D * hPhiOverlapMinus
Definition: GeneralPurposeTrackAnalyzer.cc:202
ProjectedSiStripRecHit2D::originalHit
SiStripRecHit2D originalHit() const
Definition: ProjectedSiStripRecHit2D.h:56
kFPIX
const int kFPIX
Definition: GeneralPurposeTrackAnalyzer.cc:83
GeneralPurposeTrackAnalyzer::hd0PVvsphi
TH2D * hd0PVvsphi
Definition: GeneralPurposeTrackAnalyzer.cc:219
multiplicitycorr_cfi.xBins
xBins
Definition: multiplicitycorr_cfi.py:5
edm::TriggerNames::triggerNames
Strings const & triggerNames() const
Definition: TriggerNames.cc:48
GlobalPoint
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
GeneralPurposeTrackAnalyzer::pNBpixHitsVsVx
TProfile * pNBpixHitsVsVx
Definition: GeneralPurposeTrackAnalyzer.cc:236
Point3DBase< float, LocalTag >
GeneralPurposeTrackAnalyzer::pNBpixHitsVsVy
TProfile * pNBpixHitsVsVy
Definition: GeneralPurposeTrackAnalyzer.cc:237
SiPixelRecHit.h
TrackerGeometry::isThere
bool isThere(GeomDetEnumerators::SubDetector subdet) const
Definition: TrackerGeometry.cc:219
GeneralPurposeTrackAnalyzer::hHit2D
TH1D * hHit2D
Definition: GeneralPurposeTrackAnalyzer.cc:167
first
auto first
Definition: CAHitNtupletGeneratorKernelsImpl.h:125
GeneralPurposeTrackAnalyzer::VerticesTag_
edm::InputTag VerticesTag_
Definition: GeneralPurposeTrackAnalyzer.cc:273
GeneralPurposeTrackAnalyzer::hd0vseta
TH2D * hd0vseta
Definition: GeneralPurposeTrackAnalyzer.cc:224
MagneticField::inInverseGeV
GlobalVector inInverseGeV(const GlobalPoint &gp) const
Field value ad specified global point, in 1/Gev.
Definition: MagneticField.h:36
DetId::subdetId
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum)
Definition: DetId.h:48
DEBUG
#define DEBUG
Definition: GeneralPurposeTrackAnalyzer.cc:80
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
GeneralPurposeTrackAnalyzer::hchi2Probhp
TH1D * hchi2Probhp
Definition: GeneralPurposeTrackAnalyzer.cc:191
GeneralPurposeTrackAnalyzer::hHitCountVsThetaBPix
TH1D * hHitCountVsThetaBPix
Definition: GeneralPurposeTrackAnalyzer.cc:176
GeneralPurposeTrackAnalyzer::hPhp
TH1D * hPhp
Definition: GeneralPurposeTrackAnalyzer.cc:185
GeneralPurposeTrackAnalyzer::evtsByTrigger_
TH1D * evtsByTrigger_
Definition: GeneralPurposeTrackAnalyzer.cc:256
EgHLTOffTrigSelection_cfi.trigName
trigName
Definition: EgHLTOffTrigSelection_cfi.py:8
TFileService.h
GeneralPurposeTrackAnalyzer::beginRun
void beginRun(edm::Run const &run, edm::EventSetup const &setup) override
Definition: GeneralPurposeTrackAnalyzer.cc:675
Phase1PixelMaps.h
GeneralPurposeTrackAnalyzer::hPhiEndcapPlus
TH1D * hPhiEndcapPlus
Definition: GeneralPurposeTrackAnalyzer.cc:203
GeneralPurposeTrackAnalyzer::etaMax_
float etaMax_
Definition: GeneralPurposeTrackAnalyzer.cc:266
GeneralPurposeTrackAnalyzer::hvy
TH1D * hvy
Definition: GeneralPurposeTrackAnalyzer.cc:213
GeomDetEnumerators::P1PXB
Definition: GeomDetEnumerators.h:25
TrackerDigiGeometryRecord.h
GeneralPurposeTrackAnalyzer::pmap
std::unique_ptr< TrackerMap > pmap
Definition: GeneralPurposeTrackAnalyzer.cc:148
GeneralPurposeTrackAnalyzer::latencyToken_
const edm::ESGetToken< SiStripLatency, SiStripLatencyRcd > latencyToken_
Definition: GeneralPurposeTrackAnalyzer.cc:141
edm::ParameterSet
Definition: ParameterSet.h:47
math::XYZPoint
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
edm::Transition
Transition
Definition: Transition.h:12
GeneralPurposeTrackAnalyzer::analyze
void analyze(const edm::Event &event, const edm::EventSetup &setup) override
Definition: GeneralPurposeTrackAnalyzer.cc:287
DetId::Tracker
Definition: DetId.h:25
SiStripCondDataRecords.h
GeneralPurposeTrackAnalyzer::htrkOriAlgo
TH1I * htrkOriAlgo
Definition: GeneralPurposeTrackAnalyzer.cc:157
SiStripCluster.h
duplicaterechits_cfi.trackCollection
trackCollection
Definition: duplicaterechits_cfi.py:4
Event.h
GeneralPurposeTrackAnalyzer::hPhiBarrel
TH1D * hPhiBarrel
Definition: GeneralPurposeTrackAnalyzer.cc:200
GeneralPurposeTrackAnalyzer::hPtMinus
TH1D * hPtMinus
Definition: GeneralPurposeTrackAnalyzer.cc:165
jetUpdater_cfi.sort
sort
Definition: jetUpdater_cfi.py:29
reco::Vertex::x
double x() const
x coordinate
Definition: Vertex.h:129
GeneralPurposeTrackAnalyzer::vertexToken
edm::EDGetTokenT< reco::VertexCollection > vertexToken
Definition: GeneralPurposeTrackAnalyzer.cc:280
GeneralPurposeTrackAnalyzer::hEtahp
TH1D * hEtahp
Definition: GeneralPurposeTrackAnalyzer.cc:188
GeneralPurposeTrackAnalyzer::pNBpixHitsVsVz
TProfile * pNBpixHitsVsVz
Definition: GeneralPurposeTrackAnalyzer.cc:238
GeneralPurposeTrackAnalyzer::hnhpxe
TH1D * hnhpxe
Definition: GeneralPurposeTrackAnalyzer.cc:228
PV3DBase::y
T y() const
Definition: PV3DBase.h:60
edm::Service< TFileService >
TriggerNames.h
SiStripRecHit2DCollection.h
M_PI
#define M_PI
Definition: BXVectorInputProducer.cc:49
GeneralPurposeTrackAnalyzer::hrun
TH1D * hrun
Definition: GeneralPurposeTrackAnalyzer.cc:248
GeneralPurposeTrackAnalyzer::hchi2ndof
TH1D * hchi2ndof
Definition: GeneralPurposeTrackAnalyzer.cc:152
IdealGeometryRecord.h
GeneralPurposeTrackAnalyzer::hnhTIB
TH1D * hnhTIB
Definition: GeneralPurposeTrackAnalyzer.cc:229
ProjectedSiStripRecHit2D.h
MagneticField.h
GeneralPurposeTrackAnalyzer::hHitCountVsZFPix
TH1D * hHitCountVsZFPix
Definition: GeneralPurposeTrackAnalyzer.cc:174
edm::EventSetup
Definition: EventSetup.h:58
SiStripLatency::singleReadOutMode
int16_t singleReadOutMode() const
Definition: SiStripLatency.cc:122
GeneralPurposeTrackAnalyzer::tmap
std::unique_ptr< TrackerMap > tmap
Definition: GeneralPurposeTrackAnalyzer.cc:147
GeneralPurposeTrackAnalyzer::fs
edm::Service< TFileService > fs
Definition: GeneralPurposeTrackAnalyzer.cc:145
GeneralPurposeTrackAnalyzer::hP
TH1D * hP
Definition: GeneralPurposeTrackAnalyzer.cc:159
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
GeneralPurposeTrackAnalyzer::hMinPt
TH1D * hMinPt
Definition: GeneralPurposeTrackAnalyzer.cc:163
GeneralPurposeTrackAnalyzer::hHit
TH1D * hHit
Definition: GeneralPurposeTrackAnalyzer.cc:166
HitPattern.h
GeneralPurposeTrackAnalyzer::htrkAlgo
TH1I * htrkAlgo
Definition: GeneralPurposeTrackAnalyzer.cc:156
TFileService::make
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord >
HcalObjRepresent::Fill
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
Definition: HcalObjRepresent.h:1053
GeneralPurposeTrackAnalyzer::hnhTID
TH1D * hnhTID
Definition: GeneralPurposeTrackAnalyzer.cc:230
kBPIX
const int kBPIX
Definition: GeneralPurposeTrackAnalyzer.cc:82
GeneralPurposeTrackAnalyzer::hHithp
TH1D * hHithp
Definition: GeneralPurposeTrackAnalyzer.cc:187
GeneralPurposeTrackAnalyzer::hHitCountVsZBPix
TH1D * hHitCountVsZBPix
Definition: GeneralPurposeTrackAnalyzer.cc:173
edm::TriggerNames::triggerName
std::string const & triggerName(unsigned int index) const
Definition: TriggerNames.cc:50
TrackerMap.h
GeneralPurposeTrackAnalyzer::hPhihp
TH1D * hPhihp
Definition: GeneralPurposeTrackAnalyzer.cc:189
GeneralPurposeTrackAnalyzer::hPhiMinus
TH1D * hPhiMinus
Definition: GeneralPurposeTrackAnalyzer.cc:206
TrackingRecHit
Definition: TrackingRecHit.h:21
SiStripRecHit1D.h
GeneralPurposeTrackAnalyzer::ievt
int ievt
Definition: GeneralPurposeTrackAnalyzer.cc:261
GeneralPurposeTrackAnalyzer::hEtaPlus
TH1D * hEtaPlus
Definition: GeneralPurposeTrackAnalyzer.cc:197
VertexFwd.h
GeneralPurposeTrackAnalyzer::hvx
TH1D * hvx
Definition: GeneralPurposeTrackAnalyzer.cc:212
GeneralPurposeTrackAnalyzer::GetIndex
int GetIndex(const std::vector< OBJECT_TYPE * > &vec, const TString &name)
Definition: GeneralPurposeTrackAnalyzer.cc:126
PV3DBase::mag
T mag() const
Definition: PV3DBase.h:64
GeneralPurposeTrackAnalyzer::hdzPV
TH1D * hdzPV
Definition: GeneralPurposeTrackAnalyzer.cc:247
Trajectory.h
GeneralPurposeTrackAnalyzer::hPhiEndcapMinus
TH1D * hPhiEndcapMinus
Definition: GeneralPurposeTrackAnalyzer.cc:204
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
GeneralPurposeTrackAnalyzer::theTrackCollectionToken
edm::EDGetTokenT< reco::TrackCollection > theTrackCollectionToken
Definition: GeneralPurposeTrackAnalyzer.cc:277
DetId::rawId
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
writedatasetfile.run
run
Definition: writedatasetfile.py:27
GeneralPurposeTrackAnalyzer::fieldByRun_
TH1D * fieldByRun_
Definition: GeneralPurposeTrackAnalyzer.cc:259
GeneralPurposeTrackAnalyzer::hHitPlus
TH1D * hHitPlus
Definition: GeneralPurposeTrackAnalyzer.cc:182
reco::Vertex::y
double y() const
y coordinate
Definition: Vertex.h:131
GeneralPurposeTrackAnalyzer::hHitCountVsXFPix
TH1D * hHitCountVsXFPix
Definition: GeneralPurposeTrackAnalyzer.cc:170
GeneralPurposeTrackAnalyzer::hNtrkZoom
TH1D * hNtrkZoom
Definition: GeneralPurposeTrackAnalyzer.cc:154
PVValHelper::dxy
Definition: PVValidationHelpers.h:48
reco::TrackBase::algoSize
Definition: TrackBase.h:141
Vertex.h
DetId.h
PVValHelper::dz
Definition: PVValidationHelpers.h:51
GeneralPurposeTrackAnalyzer::mode
int mode
Definition: GeneralPurposeTrackAnalyzer.cc:263
GeneralPurposeTrackAnalyzer::hMultCand
TH1D * hMultCand
Definition: GeneralPurposeTrackAnalyzer.cc:240
Frameworkfwd.h
GeneralPurposeTrackAnalyzer::magFieldToken_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magFieldToken_
Definition: GeneralPurposeTrackAnalyzer.cc:140
TFileService::kSharedResource
static const std::string kSharedResource
Definition: TFileService.h:76
GeneralPurposeTrackAnalyzer::hNtrk
TH1D * hNtrk
Definition: GeneralPurposeTrackAnalyzer.cc:153
edm::TriggerNames
Definition: TriggerNames.h:55
GeneralPurposeTrackAnalyzer::hPhi
TH1D * hPhi
Definition: GeneralPurposeTrackAnalyzer.cc:199
GeneralPurposeTrackAnalyzer::hPMinus
TH1D * hPMinus
Definition: GeneralPurposeTrackAnalyzer.cc:161
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
EventSetup.h
GeneralPurposeTrackAnalyzer
Definition: GeneralPurposeTrackAnalyzer.cc:85
GeneralPurposeTrackAnalyzer::hDeltaPhi
TH1D * hDeltaPhi
Definition: GeneralPurposeTrackAnalyzer.cc:208
SiStripLatencyRcd
Definition: SiStripCondDataRecords.h:36
GeneralPurposeTrackAnalyzer::hQoverP
TH1D * hQoverP
Definition: GeneralPurposeTrackAnalyzer.cc:194
GeneralPurposeTrackAnalyzer::hltresultsToken
edm::EDGetTokenT< edm::TriggerResults > hltresultsToken
Definition: GeneralPurposeTrackAnalyzer.cc:278
GeneralPurposeTrackAnalyzer::geomToken_
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > geomToken_
Definition: GeneralPurposeTrackAnalyzer.cc:139
edm::EDConsumerBase::esConsumes
auto esConsumes()
Definition: EDConsumerBase.h:206
GeneralPurposeTrackAnalyzer::hdzBS
TH1D * hdzBS
Definition: GeneralPurposeTrackAnalyzer.cc:244
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
SiStripLatency.h
GeneralPurposeTrackAnalyzer::isPhase1_
bool isPhase1_
Definition: GeneralPurposeTrackAnalyzer.cc:265
GeneralPurposeTrackAnalyzer::TkTag_
edm::InputTag TkTag_
Definition: GeneralPurposeTrackAnalyzer.cc:270
ParameterSet.h
SiStripDetId
Detector identifier class for the strip tracker.
Definition: SiStripDetId.h:18
SiStripMatchedRecHit2D.h
GeneralPurposeTrackAnalyzer::hHitCountVsXBPix
TH1D * hHitCountVsXBPix
Definition: GeneralPurposeTrackAnalyzer.cc:169
GeneralPurposeTrackAnalyzer::hPt
TH1D * hPt
Definition: GeneralPurposeTrackAnalyzer.cc:162
GeneralPurposeTrackAnalyzer::hchi2ndofhp
TH1D * hchi2ndofhp
Definition: GeneralPurposeTrackAnalyzer.cc:190
point
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle point
Definition: invegas.h:5
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
event
Definition: event.py:1
GeneralPurposeTrackAnalyzer::hHitComposition
TH1D * hHitComposition
Definition: GeneralPurposeTrackAnalyzer.cc:234
GeneralPurposeTrackAnalyzer::firstEvent_
bool firstEvent_
Definition: GeneralPurposeTrackAnalyzer.cc:264
edm::Event
Definition: Event.h:73
GeneralPurposeTrackAnalyzer::hPhiOverlapPlus
TH1D * hPhiOverlapPlus
Definition: GeneralPurposeTrackAnalyzer.cc:201
SiStripLatency
Definition: SiStripLatency.h:59
MagneticField
Definition: MagneticField.h:19
GeneralPurposeTrackAnalyzer::vTrackHistos_
std::vector< TH1 * > vTrackHistos_
Definition: GeneralPurposeTrackAnalyzer.cc:251
GeneralPurposeTrackAnalyzer::hCharge
TH1D * hCharge
Definition: GeneralPurposeTrackAnalyzer.cc:193
GeneralPurposeTrackAnalyzer::hd0PV
TH1D * hd0PV
Definition: GeneralPurposeTrackAnalyzer.cc:246
reco::TrackBase::algoNames
static const std::string algoNames[]
Definition: TrackBase.h:147
GeneralPurposeTrackAnalyzer::hDeltaEta
TH1D * hDeltaEta
Definition: GeneralPurposeTrackAnalyzer.cc:209
GeneralPurposeTrackAnalyzer::hd0vsphi
TH2D * hd0vsphi
Definition: GeneralPurposeTrackAnalyzer.cc:223
edm::InputTag
Definition: InputTag.h:15
reco::TrackCollection
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
GeneralPurposeTrackAnalyzer::hd0vspt
TH2D * hd0vspt
Definition: GeneralPurposeTrackAnalyzer.cc:225
PV3DBase::phi
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
GeneralPurposeTrackAnalyzer::hdxyPV
TH1D * hdxyPV
Definition: GeneralPurposeTrackAnalyzer.cc:245
reco::Vertex
Definition: Vertex.h:35
hit
Definition: SiStripHitEffFromCalibTree.cc:88
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
SiStripDetId::stereo
uint32_t stereo() const
Definition: SiStripDetId.h:168
GeneralPurposeTrackAnalyzer::GeneralPurposeTrackAnalyzer
GeneralPurposeTrackAnalyzer(const edm::ParameterSet &pset)
Definition: GeneralPurposeTrackAnalyzer.cc:87
GeneralPurposeTrackAnalyzer::pixelmap
std::unique_ptr< Phase1PixelMaps > pixelmap
Definition: GeneralPurposeTrackAnalyzer.cc:150
GeneralPurposeTrackAnalyzer::vTrackProfiles_
std::vector< TH1 * > vTrackProfiles_
Definition: GeneralPurposeTrackAnalyzer.cc:252
TrackerGeometry
Definition: TrackerGeometry.h:14
GeneralPurposeTrackAnalyzer::htrkQuality
TH1I * htrkQuality
Definition: GeneralPurposeTrackAnalyzer.cc:155
reco::TrackBase::highPurity
Definition: TrackBase.h:154