CMS 3D CMS Logo

SiPixelPhase1TrackEfficiency.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: SiPixelPhase1TrackEfficiency
4 // Class: SiPixelPhase1TrackEfficiency
5 //
6 
7 // Original Author: Marcel Schneider
8 
11 
23 
25  SiPixelPhase1Base(iConfig)
26 {
27  tracksToken_ = consumes<reco::TrackCollection>(iConfig.getParameter<edm::InputTag>("tracks"));
28  vtxToken_ = consumes<reco::VertexCollection>(iConfig.getParameter<edm::InputTag>("primaryvertices"));
29  applyVertexCut_=iConfig.getUntrackedParameter<bool>("VertexCut",true);
30 
31 }
32 
34  if( !checktrigger(iEvent,iSetup,DCS) ) return;
35 
36  // get geometry
38  iSetup.get<TrackerDigiGeometryRecord>().get(tracker);
39  assert(tracker.isValid());
40 
41  // get primary vertex
43  iEvent.getByToken( vtxToken_, vertices);
44 
45  if (!vertices.isValid()) return;
46 
47  histo[VERTICES].fill(vertices->size(),DetId(0),&iEvent);
48 
49  if (applyVertexCut_ && vertices->empty()) return;
50 
51  // should be used for weird cuts
52  //const auto primaryVertex = vertices->at(0);
53 
54  // get the map
56  iEvent.getByToken( tracksToken_, tracks);
57  if (!tracks.isValid()) return;
58 
59  for (auto const & track : *tracks) {
60 
61  //this cut is needed to be consisten with residuals calculation
62  if (applyVertexCut_ && (track.pt() < 0.75 || std::abs( track.dxy(vertices->at(0).position()) ) > 5*track.dxyError())) continue;
63 
64  bool isBpixtrack = false, isFpixtrack = false;
65  int nStripHits = 0;
66 
67  // first, look at the full track to see whether it is good
68  // auto const & trajParams = track.extra()->trajParams();
69  auto hb = track.recHitsBegin();
70  for(unsigned int h=0;h<track.recHitsSize();h++){
71 
72  auto hit = *(hb+h);
73  if(!hit->isValid()) continue;
74 
75  DetId id = hit->geographicalId();
76  uint32_t subdetid = (id.subdetId());
77 
78  // count strip hits
79  if(subdetid==StripSubdetector::TIB) nStripHits++;
80  if(subdetid==StripSubdetector::TOB) nStripHits++;
81  if(subdetid==StripSubdetector::TID) nStripHits++;
82  if(subdetid==StripSubdetector::TEC) nStripHits++;
83 
84  // check that we are in the pixel
85  if (subdetid == PixelSubdetector::PixelBarrel) isBpixtrack = true;
86  if (subdetid == PixelSubdetector::PixelEndcap) isFpixtrack = true;
87  }
88 
89  if (!isBpixtrack && !isFpixtrack) continue;
90 
91  // then, look at each hit
92  for(unsigned int h=0;h<track.recHitsSize();h++){
93  auto hit = *(hb+h);
94 
95  DetId id = hit->geographicalId();
96  uint32_t subdetid = (id.subdetId());
97  if ( subdetid != PixelSubdetector::PixelBarrel
98  && subdetid != PixelSubdetector::PixelEndcap) continue;
99 
100  bool isHitValid = hit->getType()==TrackingRecHit::valid;
101  bool isHitMissing = hit->getType()==TrackingRecHit::missing;
102  bool isHitInactive = hit->getType()==TrackingRecHit::inactive;
103 
104  /*
105  const SiPixelRecHit* pixhit = dynamic_cast<const SiPixelRecHit*>(hit);
106  const PixelGeomDetUnit* geomdetunit = dynamic_cast<const PixelGeomDetUnit*> ( tracker->idToDet(id) );
107  const PixelTopology& topol = geomdetunit->specificTopology();
108 
109  // this commented part is useful if one wants ROC level maps of hits, however the local position may fall out of a ROC and the ROC maps will look very strange (with no white cross)
110  LocalPoint lp;
111 
112  if (pixhit) {
113  lp = pixhit->localPosition();
114  } else {
115  lp = trajParams[h].position();
116  }
117 
118  MeasurementPoint mp = topol.measurementPosition(lp);
119  int row = (int) mp.x();
120  int col = (int) mp.y();
121  */
122 
123  if (isHitValid) {
124  histo[VALID].fill(id, &iEvent);
125  histo[EFFICIENCY].fill(1, id, &iEvent);
126  }
127  if (isHitMissing) {
128  histo[MISSING].fill(id, &iEvent);
129  histo[EFFICIENCY].fill(0, id, &iEvent);
130  }
131  if (isHitInactive) {
132  histo[INACTIVE].fill(id, &iEvent);
133  }
134  }
135  }
136  histo[VALID ].executePerEventHarvesting(&iEvent);
137  histo[MISSING ].executePerEventHarvesting(&iEvent);
138  histo[INACTIVE].executePerEventHarvesting(&iEvent);
139 }
140 
142 
edm::EDGetTokenT< reco::TrackCollection > tracksToken_
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
void analyze(const edm::Event &, const edm::EventSetup &) override
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
bool checktrigger(const edm::Event &iEvent, const edm::EventSetup &iSetup, const unsigned trgidx) const
int iEvent
Definition: GenABIO.cc:230
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool isValid() const
Definition: HandleBase.h:74
Definition: DetId.h:18
edm::EDGetTokenT< reco::VertexCollection > vtxToken_
const T & get() const
Definition: EventSetup.h:58
std::vector< HistogramManager > histo
bool isValid() const
Definition: ESHandle.h:47
SiPixelPhase1TrackEfficiency(const edm::ParameterSet &conf)