CMS 3D CMS Logo

MonitorTrackResiduals.cc
Go to the documentation of this file.
18 
19 template<TrackerType pixel_or_strip>
21  : conf_(iConfig), m_cacheID_(0)
22  , genTriggerEventFlag_(new GenericTriggerEventFlag(iConfig.getParameter<edm::ParameterSet>("genericTriggerEventPSet"), consumesCollector(), *this))
23  , avalidator_(iConfig, consumesCollector()) {
24  ModOn = conf_.getParameter<bool>("Mod_On");
25  offlinePrimaryVerticesToken_ = consumes<reco::VertexCollection>(std::string("offlinePrimaryVertices"));
26 }
27 
28 template<TrackerType pixel_or_strip>
31 }
32 
33 template<TrackerType pixel_or_strip>
35 {
36  unsigned long long cacheID = iSetup.get<TrackerDigiGeometryRecord>().cacheIdentifier();
37  if (m_cacheID_ != cacheID) {
38  m_cacheID_ = cacheID;
39  this->createMEs( ibooker , iSetup);
40  }
41  std::string topFolderName_ = "SiStrip";
42  SiStripFolderOrganizer folder_organizer;
43  folder_organizer.setSiStripFolderName(topFolderName_);
44  edm::ESHandle<TkDetMap> tkDetMapHandle;
45  iSetup.get<TrackerTopologyRcd>().get(tkDetMapHandle);
46  tkhisto_ResidualsMean = std::make_unique<TkHistoMap>(tkDetMapHandle.product(), ibooker , topFolderName_ ,"TkHMap_ResidualsMean", 0.0,true);
47 }
48 
49 template<TrackerType pixel_or_strip>
51 
52  // Initialize the GenericTriggerEventFlag
53  if ( genTriggerEventFlag_->on() ) genTriggerEventFlag_->initRun( run, iSetup );
54 }
55 
56 template<TrackerType pixel_or_strip>
57 std::pair<std::string, int32_t> MonitorTrackResidualsBase<pixel_or_strip>::findSubdetAndLayer(uint32_t ModuleID, const TrackerTopology* tTopo) {
58  std::string subdet = "";
59  int32_t layer = 0;
60  auto id = DetId(ModuleID);
61  switch (id.subdetId()) {
62  // Pixel Barrel, Endcap
63  case 1:
64  subdet = "BPIX";
65  layer = tTopo->pxbLayer(id);
66  break;
67  case 2:
68  subdet = "FPIX";
69  layer = tTopo->pxfDisk(id) * ( tTopo->pxfSide(ModuleID)==1 ? -1 : +1);
70  break;
71  // Strip TIB, TID, TOB, TEC
72  case 3:
73  subdet = "TIB";
74  layer = tTopo->tibLayer(id);
75  break;
76  case 4:
77  subdet = "TID";
78  layer = tTopo->tidWheel(id) * ( tTopo->tidSide(ModuleID)==1 ? -1 : +1);
79  break;
80  case 5:
81  subdet = "TOB";
82  layer = tTopo->tobLayer(id);
83  break;
84  case 6:
85  subdet = "TEC";
86  layer = tTopo->tecWheel(id) * ( tTopo->tecSide(ModuleID)==1 ? -1 : +1);
87  break;
88  default:
89  // TODO: Fail loudly.
90  subdet = "UNKNOWN";
91  layer = 0;
92  }
93  return std::make_pair(subdet, layer);
94 }
95 
96 
97 template<TrackerType pixel_or_strip>
99 
100  //Retrieve tracker topology and geometry
101  edm::ESHandle<TrackerTopology> tTopoHandle;
102  iSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
103  const TrackerTopology* const tTopo = tTopoHandle.product();
104 
106  iSetup.get<TrackerDigiGeometryRecord>().get(TG);
107 
108  Parameters = conf_.getParameter<edm::ParameterSet>("TH1ResModules");
109  int32_t i_residuals_Nbins = Parameters.getParameter<int32_t>("Nbinx");
110  double d_residual_xmin = Parameters.getParameter<double>("xmin");
111  double d_residual_xmax = Parameters.getParameter<double>("xmax");
112  Parameters = conf_.getParameter<edm::ParameterSet>("TH1NormResModules");
113  int32_t i_normres_Nbins = Parameters.getParameter<int32_t>("Nbinx");
114  double d_normres_xmin = Parameters.getParameter<double>("xmin");
115  double d_normres_xmax = Parameters.getParameter<double>("xmax");
116 
117 
118  // use SistripHistoId for producing histogram id (and title)
119  SiStripHistoId hidmanager;
120 
121  SiStripFolderOrganizer strip_organizer;
122  auto pixel_organizer = SiPixelFolderOrganizer(false);
123 
124  // Collect list of modules from Tracker Geometry
125  // book histo per each detector module
126  auto ids = TG->detIds(); // or detUnitIds?
127  for (DetId id : ids)
128  {
129  auto ModuleID = id.rawId();
130  auto isPixel = id.subdetId() == 1 || id.subdetId() == 2;
131  if (isPixel != (pixel_or_strip == TRACKERTYPE_PIXEL)) continue;
132 
133  // Book module histogramms?
134  if (ModOn) {
135  switch (id.subdetId()) {
136  case 1: pixel_organizer.setModuleFolder(ibooker, ModuleID, 0); break;
137  case 2: pixel_organizer.setModuleFolder(ibooker, ModuleID, 0); break;
138  default: strip_organizer.setDetectorFolder(ModuleID,tTopo);
139  }
140  {
141  // this sounds strip specific but also works for pixel
142  std::string hid = hidmanager.createHistoId("HitResidualsX","det",ModuleID);
143  std::string normhid = hidmanager.createHistoId("NormalizedHitResidualsX","det",ModuleID);
144  auto& histos = m_ModuleResiduals[std::make_pair("", ModuleID)];
145  histos.x.base = ibooker.book1D(hid, hid, i_residuals_Nbins,d_residual_xmin,d_residual_xmax);
146  histos.x.base->setAxisTitle("(x_{pred} - x_{rec})' [cm]");
147  histos.x.normed = ibooker.book1D(normhid, normhid, i_normres_Nbins,d_normres_xmin,d_normres_xmax);
148  histos.x.normed->setAxisTitle("(x_{pred} - x_{rec})'/#sigma");
149  }{
150  std::string hid = hidmanager.createHistoId("HitResidualsY","det",ModuleID);
151  std::string normhid = hidmanager.createHistoId("NormalizedHitResidualsY","det",ModuleID);
152  auto& histos = m_ModuleResiduals[std::make_pair("", ModuleID)];
153  histos.y.base = ibooker.book1D(hid, hid, i_residuals_Nbins,d_residual_xmin,d_residual_xmax);
154  histos.y.base->setAxisTitle("(y_{pred} - y_{rec})' [cm]");
155  histos.y.normed = ibooker.book1D(normhid, normhid, i_normres_Nbins,d_normres_xmin,d_normres_xmax);
156  histos.y.normed->setAxisTitle("(y_{pred} - y_{rec})'/#sigma");
157  }
158  }
159 
160  auto subdetandlayer = findSubdetAndLayer(ModuleID, tTopo);
161  if(m_SubdetLayerResiduals.find(subdetandlayer) == m_SubdetLayerResiduals.end()) {
162  // add new histograms
163  auto& histos = m_SubdetLayerResiduals[subdetandlayer];
164  switch (id.subdetId()) {
165  // Pixel Barrel, Endcap
166  // We can't use the folder organizer here (SiPixelActionExecutor.cc#1638 does the same)
167  case 1: ibooker.setCurrentFolder("Pixel/Barrel"); break;
168  case 2: ibooker.setCurrentFolder("Pixel/Endcap"); break;
169  // All strip
170  default: strip_organizer.setLayerFolder(ModuleID,tTopo,subdetandlayer.second);
171  }
172 
173  auto isBarrel = subdetandlayer.first.find("B") != std::string::npos;
174 
175  auto xy = std::vector<std::pair<HistoPair&, const char*> >
176  { std::make_pair(std::ref(histos.x), "X"),
177  std::make_pair(std::ref(histos.y), "Y") };
178  for (auto& histopair : xy) {
179  // book histogramms on layer level, check for barrel/pixel only for correct labeling
180 
181  // Skip the Y plots for strips.
182  if (!isPixel && histopair.second[0] == 'Y') continue;
183 
184  std::string histoname = isPixel ? ( // Pixel name
185  Form("HitResiduals%s_%s%d",
186  histopair.second,
187  isBarrel ? "L" : (subdetandlayer.second > 0 ? "Dp" : "Dm"),
188  std::abs(subdetandlayer.second)))
189  : (Form("HitResiduals_%s__%s__%d", // Strip TODO: We use a legacy name.
190  subdetandlayer.first.c_str(),
191  isBarrel ? "Layer" : "wheel",
192  std::abs(subdetandlayer.second)));
193 
194  std::string histotitle = Form("HitResiduals %s on %s%s full %s %d",
195  histopair.second,
196  subdetandlayer.first.c_str(),
197  isBarrel ? "" : (subdetandlayer.second > 0 ? "+" : "-"),
198  isBarrel ? "Layer" : (isPixel ? "Disk" : "Wheel"),
199  std::abs(subdetandlayer.second));
200 
201 
202  std::string normhistoname = Form("Normalized%s", histoname.c_str());
203  std::string normhistotitle = Form("Normalized%s", histotitle.c_str());
204 
205  //std::cout << "##### Booking: " << ibooker.pwd() << " title " << histoname << std::endl;
206 
207  histopair.first.base =
208  ibooker.book1D(histoname.c_str(),histotitle.c_str(),
209  i_residuals_Nbins,d_residual_xmin,d_residual_xmax);
210  histopair.first.base->setAxisTitle("(x_{pred} - x_{rec})' [cm]");
211 
212  histopair.first.normed =
213  ibooker.book1D(normhistoname.c_str(),normhistotitle.c_str(),
214  i_normres_Nbins,d_normres_xmin,d_normres_xmax);
215  histopair.first.normed->setAxisTitle("(x_{pred} - x_{rec})'/#sigma");
216  }
217  }
218  } // end loop over activeDets
219 }
220 
221 template<TrackerType pixel_or_strip>
223 
224  auto vtracks = std::vector<TrackerValidationVariables::AVTrackStruct>();
225  // Filter out events if Trigger Filtering is requested
226  if (genTriggerEventFlag_->on()&& ! genTriggerEventFlag_->accept( iEvent, iSetup) ) return;
227 
229  iEvent.getByToken(offlinePrimaryVerticesToken_, vertices);
230  if (!vertices.isValid() || vertices->empty()) return;
231  const auto primaryVertex = vertices->at(0);
232 
233  //Retrieve tracker topology from geometry
234  edm::ESHandle<TrackerTopology> tTopoHandle;
235  iSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
236  const TrackerTopology* const tTopo = tTopoHandle.product();
237 
238  avalidator_.fillTrackQuantities(iEvent, iSetup,
239  // tell the validator to only look at good tracks
240  [&](const reco::Track& track) -> bool {
241  return track.pt() > 0.75
242  && abs( track.dxy(primaryVertex.position()) ) < 5*track.dxyError();
243  }, vtracks);
244 
245  for (auto& track : vtracks) {
246  for (auto& it : track.hits) {
247  uint RawId = it.rawDetId;
248 
249  auto id = DetId(RawId);
250  auto isPixel = id.subdetId() == 1 || id.subdetId() == 2;
251  if (isPixel != (pixel_or_strip == TRACKERTYPE_PIXEL)) continue;
252 
253 
254  if (ModOn) {
255  auto& mod_histos = m_ModuleResiduals[std::make_pair("",RawId)];
256  mod_histos.x.base->Fill(it.resXprime);
257  mod_histos.x.normed->Fill(it.resXprime/it.resXprimeErr);
258  mod_histos.y.base->Fill(it.resYprime);
259  mod_histos.y.normed->Fill(it.resYprime/it.resYprimeErr);
260  }
261 
262  auto subdetandlayer = findSubdetAndLayer(RawId, tTopo);
263  auto histos = m_SubdetLayerResiduals[subdetandlayer];
264  // fill if its error is not zero
265  if(it.resXprimeErr != 0 && histos.x.base) {
266  histos.x.base->Fill(it.resXprime);
267  histos.x.normed->Fill(it.resXprime/it.resXprimeErr);
268  if(!isPixel) tkhisto_ResidualsMean->fill(RawId,it.resXprime);
269  }
270  if(it.resYprimeErr != 0 && histos.y.base) {
271  histos.y.base->Fill(it.resYprime);
272  histos.y.normed->Fill(it.resYprime/it.resYprimeErr);
273  }
274  }
275  }
276 }
277 
278 
279 
282 
T getParameter(std::string const &) const
void setSiStripFolderName(std::string name)
unsigned int tibLayer(const DetId &id) const
void dqmBeginRun(const edm::Run &, const edm::EventSetup &) override
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:519
double dxyError() const
error on dxy
Definition: TrackBase.h:796
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
unsigned int pxfDisk(const DetId &id) const
TrackerValidationVariables avalidator_
unsigned int tidWheel(const DetId &id) const
void setLayerFolder(uint32_t rawdetid, const TrackerTopology *tTopo, int32_t layer=0, bool ring_flag=false)
Provides a code based selection for trigger and DCS information in order to have no failing filters i...
edm::EDGetTokenT< reco::VertexCollection > offlinePrimaryVerticesToken_
void setDetectorFolder(uint32_t rawdetid, const TrackerTopology *tTopo)
std::unique_ptr< TkHistoMap > tkhisto_ResidualsMean
int iEvent
Definition: GenABIO.cc:230
unsigned int tidSide(const DetId &id) const
vector< ParameterSet > Parameters
bool accept(const edm::Event &event, const edm::EventSetup &setup)
To be called from analyze/filter() methods.
double pt() const
track transverse momentum
Definition: TrackBase.h:621
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:118
const DetIdContainer & detIds() const override
Returm a vector of all GeomDet DetIds (including those of GeomDetUnits)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
MonitorTrackResidualsBase(const edm::ParameterSet &)
bool isValid() const
Definition: HandleBase.h:74
unsigned int pxbLayer(const DetId &id) const
Definition: DetId.h:18
void fillTrackQuantities(const edm::Event &, const edm::EventSetup &, std::vector< AVTrackStruct > &v_avtrackout)
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:279
GenericTriggerEventFlag * genTriggerEventFlag_
const T & get() const
Definition: EventSetup.h:59
def uint(string)
void createMEs(DQMStore::IBooker &, const edm::EventSetup &)
HLT enums.
bool isPixel(HitType hitType)
unsigned int pxfSide(const DetId &id) const
void initRun(const edm::Run &run, const edm::EventSetup &setup)
To be called from beginRun() methods.
double dxy() const
dxy parameter. (This is the transverse impact parameter w.r.t. to (0,0,0) ONLY if refPoint is close t...
Definition: TrackBase.h:591
void analyze(const edm::Event &, const edm::EventSetup &) override
std::pair< std::string, int32_t > findSubdetAndLayer(uint32_t ModuleID, const TrackerTopology *tTopo)
unsigned int tecWheel(const DetId &id) const
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
T const * product() const
Definition: ESHandle.h:86
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
unsigned int tobLayer(const DetId &id) const
Definition: Run.h:43
unsigned int tecSide(const DetId &id) const