CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripMonitorTrack.cc
Go to the documentation of this file.
2 
6 
19 
21 
23 #include "TMath.h"
24 
26  conf_(conf),
27  tracksCollection_in_EventTree(true),
28  firstEvent(-1),
29  genTriggerEventFlag_(new GenericTriggerEventFlag(conf, consumesCollector(), *this))
30 {
31  Cluster_src_ = conf.getParameter<edm::InputTag>("Cluster_src");
32  Mod_On_ = conf.getParameter<bool>("Mod_On");
33  Trend_On_ = conf.getParameter<bool>("Trend_On");
34  TkHistoMap_On_ = conf.getParameter<bool>("TkHistoMap_On");
35 
36  TrackProducer_ = conf_.getParameter<std::string>("TrackProducer");
37  TrackLabel_ = conf_.getParameter<std::string>("TrackLabel");
38 
39  topFolderName_ = conf_.getParameter<std::string>("TopFolderName");
40 
41  clusterToken_ = consumes<edmNew::DetSetVector<SiStripCluster> >(Cluster_src_);
42  trackToken_ = consumes<reco::TrackCollection>(edm::InputTag(TrackProducer_,TrackLabel_) );
43  trackTrajToken_ = consumes<TrajTrackAssociationCollection>(edm::InputTag(TrackProducer_,TrackLabel_) );
44 
45  // cluster quality conditions
46  edm::ParameterSet cluster_condition = conf_.getParameter<edm::ParameterSet>("ClusterConditions");
47  applyClusterQuality_ = cluster_condition.getParameter<bool>("On");
48  sToNLowerLimit_ = cluster_condition.getParameter<double>("minStoN");
49  sToNUpperLimit_ = cluster_condition.getParameter<double>("maxStoN");
50  widthLowerLimit_ = cluster_condition.getParameter<double>("minWidth");
51  widthUpperLimit_ = cluster_condition.getParameter<double>("maxWidth");
52 
53 
54  // Create DCS Status
55  bool checkDCS = conf_.getParameter<bool>("UseDCSFiltering");
56  if (checkDCS) dcsStatus_ = new SiStripDCSStatus(consumesCollector());
57  else dcsStatus_ = 0;
58 }
59 
60 //------------------------------------------------------------------------
62  if (dcsStatus_) delete dcsStatus_;
64 }
65 
66 //------------------------------------------------------------------------
68 {
69  //get geom
71  LogDebug("SiStripMonitorTrack") << "[SiStripMonitorTrack::beginRun] There are "<<tkgeom_->detUnits().size() <<" detectors instantiated in the geometry" << std::endl;
73 
74 
75  // Initialize the GenericTriggerEventFlag
77 }
78 
79 //------------------------------------------------------------------------
81 {
82  //Retrieve tracker topology from geometry
84  es.get<TrackerTopologyRcd>().get(tTopoHandle);
85  const TrackerTopology* const tTopo = tTopoHandle.product();
86  book(ibooker , tTopo);
87 }
88 
89 // ------------ method called to produce the data ------------
91 {
92  // Filter out events if DCS checking is requested
93  if (dcsStatus_ && !dcsStatus_->getStatus(e,es)) return;
94 
95  // Filter out events if Trigger Filtering is requested
96  if (genTriggerEventFlag_->on()&& ! genTriggerEventFlag_->accept( e, es) ) return;
97 
98  //initialization of global quantities
99  LogDebug("SiStripMonitorTrack") << "[SiStripMonitorTrack::analyse] " << "Run " << e.id().run() << " Event " << e.id().event() << std::endl;
100  eventNb = e.id().event();
101  vPSiStripCluster.clear();
102 
103  iLumisection = e.orbitNumber()/262144.0;
104 
105  // initialise # of clusters
106  for (std::map<std::string, SubDetMEs>::iterator iSubDet = SubDetMEsMap.begin();
107  iSubDet != SubDetMEsMap.end(); iSubDet++) {
108  iSubDet->second.totNClustersOnTrack = 0;
109  iSubDet->second.totNClustersOffTrack = 0;
110  }
111 
112  //Perform track study
113  trackStudy(e, es);
114 
115  //Perform Cluster Study (irrespectively to tracks)
116 
117  AllClusters(e, es); //analyzes the off Track Clusters
118 
119  //Summary Counts of clusters
120  std::map<std::string, MonitorElement*>::iterator iME;
121  std::map<std::string, LayerMEs>::iterator iLayerME;
122 
123  if (Trend_On_) {
124  // for (std::map<std::string, SubDetMEs>::iterator iSubDet = SubDetMEsMap.begin(), iterEnd=SubDetMEsMaps.end();
125  // iSubDet != iterEnd; ++iSubDet) {
126  for (auto const &iSubDet : SubDetMEsMap) {
127  SubDetMEs subdet_mes = iSubDet.second;
128  if (subdet_mes.totNClustersOnTrack > 0) {
129  fillME(subdet_mes.nClustersOnTrack, subdet_mes.totNClustersOnTrack);
130  }
131  fillME(subdet_mes.nClustersOffTrack, subdet_mes.totNClustersOffTrack);
134  }
135  } else {
136  for (auto const &iSubDet : SubDetMEsMap) {
137  SubDetMEs subdet_mes = iSubDet.second;
138  if (subdet_mes.totNClustersOnTrack > 0) {
139  fillME(subdet_mes.nClustersOnTrack, subdet_mes.totNClustersOnTrack);
140  }
141  fillME(subdet_mes.nClustersOffTrack, subdet_mes.totNClustersOffTrack);
142  }
143  }
144 }
145 
146 //------------------------------------------------------------------------
148 {
149 
150  SiStripFolderOrganizer folder_organizer;
151  folder_organizer.setSiStripFolderName(topFolderName_);
152  //******** TkHistoMaps
153  if (TkHistoMap_On_) {
154  tkhisto_StoNCorrOnTrack = new TkHistoMap(ibooker , topFolderName_ ,"TkHMap_StoNCorrOnTrack", 0.0,true);
155  tkhisto_NumOnTrack = new TkHistoMap(ibooker , topFolderName_, "TkHMap_NumberOfOnTrackCluster", 0.0,true);
156  tkhisto_NumOffTrack = new TkHistoMap(ibooker , topFolderName_, "TkHMap_NumberOfOfffTrackCluster",0.0,true);
157  tkhisto_ClChPerCMfromTrack = new TkHistoMap(ibooker , topFolderName_, "TkHMap_ChargePerCMfromTrack",0.0,true);
158  tkhisto_NumMissingHits = new TkHistoMap(ibooker , topFolderName_, "TkHMap_NumberMissingHits",0.0,true);
159  tkhisto_NumberInactiveHits = new TkHistoMap(ibooker , topFolderName_, "TkHMap_NumberInactiveHits",0.0,true);
160  tkhisto_NumberValidHits = new TkHistoMap(ibooker , topFolderName_, "TkHMap_NumberValidHits",0.0,true);
161  }
163  tkhisto_ClChPerCMfromOrigin = new TkHistoMap(ibooker , topFolderName_, "TkHMap_ChargePerCMfromOrigin",0.0,true);
164  //******** TkHistoMaps
165 
166  std::vector<uint32_t> vdetId_;
167  SiStripDetCabling_->addActiveDetectorsRawIds(vdetId_);
168  const char* tec = "TEC";
169  const char* tid = "TID";
170  //Histos for each detector, layer and module
171  SiStripHistoId hidmanager;
172 
173  if(Mod_On_) {
174  for (std::vector<uint32_t>::const_iterator detid_iter=vdetId_.begin(),detid_end=vdetId_.end();detid_iter!=detid_end;++detid_iter){ //loop on all the active detid
175  uint32_t detid = *detid_iter;
176 
177  if (detid < 1){
178  edm::LogError("SiStripMonitorTrack")<< "[" <<__PRETTY_FUNCTION__ << "] invalid detid " << detid<< std::endl;
179  continue;
180  }
181 
182 
183  //std::string name;
184 
185  // book Layer and RING plots
186  std::pair<std::string,int32_t> det_layer_pair = folder_organizer.GetSubDetAndLayer(detid,tTopo,false);
187  /*
188  std::string thickness;
189  std::pair<std::string,int32_t> det_layer_pair_test = folder_organizer.GetSubDetAndLayerThickness(detid,tTopo,thickness);
190  std::cout << "[SiStripMonitorTrack::book] det_layer_pair " << det_layer_pair.first << " " << det_layer_pair.second << " " << thickness << std::endl;
191  */
192 
193  std::string layer_id = hidmanager.getSubdetid(detid, tTopo, false);
194 
195  std::map<std::string, LayerMEs>::iterator iLayerME = LayerMEsMap.find(layer_id);
196  if(iLayerME==LayerMEsMap.end()){
197  folder_organizer.setLayerFolder(detid, tTopo, det_layer_pair.second, false);
198  bookLayerMEs(ibooker , detid, layer_id);
199  }
200 
201  const char* subdet = det_layer_pair.first.c_str();
202  if ( std::strstr(subdet, tec) != NULL || std::strstr(subdet, tid) != NULL ) {
203  std::string ring_id = hidmanager.getSubdetid(detid, tTopo, true);
204  std::map<std::string, RingMEs>::iterator iRingME = RingMEsMap.find(ring_id);
205  if(iRingME==RingMEsMap.end()){
206  std::pair<std::string,int32_t> det_ring_pair = folder_organizer.GetSubDetAndLayer(detid,tTopo,true);
207  folder_organizer.setLayerFolder(detid, tTopo, det_ring_pair.second, true);
208  bookRingMEs(ibooker , detid, ring_id);
209  }
210  }
211 
212  // book sub-detector plots
213  std::pair<std::string,std::string> sdet_pair = folder_organizer.getSubDetFolderAndTag(detid, tTopo);
214  if (SubDetMEsMap.find(sdet_pair.second) == SubDetMEsMap.end()){
215  ibooker.setCurrentFolder(sdet_pair.first);
216  bookSubDetMEs(ibooker , sdet_pair.second);
217  }
218  // book module plots
219  folder_organizer.setDetectorFolder(detid,tTopo);
220  bookModMEs(ibooker , *detid_iter);
221  }//end loop on detectors detid
222  } else {
223  for (std::vector<uint32_t>::const_iterator detid_iter=vdetId_.begin(),detid_end=vdetId_.end();detid_iter!=detid_end;++detid_iter){ //loop on all the active detid
224  uint32_t detid = *detid_iter;
225 
226  if (detid < 1){
227  edm::LogError("SiStripMonitorTrack")<< "[" <<__PRETTY_FUNCTION__ << "] invalid detid " << detid<< std::endl;
228  continue;
229  }
230 
231 
232  //std::string name;
233 
234  // book Layer and RING plots
235  std::pair<std::string,int32_t> det_layer_pair = folder_organizer.GetSubDetAndLayer(detid,tTopo,false);
236  /*
237  std::string thickness;
238  std::pair<std::string,int32_t> det_layer_pair_test = folder_organizer.GetSubDetAndLayerThickness(detid,tTopo,thickness);
239  std::cout << "[SiStripMonitorTrack::book] det_layer_pair " << det_layer_pair.first << " " << det_layer_pair.second << " " << thickness << std::endl;
240  */
241 
242  std::string layer_id = hidmanager.getSubdetid(detid, tTopo, false);
243 
244  std::map<std::string, LayerMEs>::iterator iLayerME = LayerMEsMap.find(layer_id);
245  if(iLayerME==LayerMEsMap.end()){
246  folder_organizer.setLayerFolder(detid, tTopo, det_layer_pair.second, false);
247  bookLayerMEs(ibooker , detid, layer_id);
248  }
249 
250  const char* subdet = det_layer_pair.first.c_str();
251  if ( std::strstr(subdet, tec) != NULL || std::strstr(subdet, tid) != NULL ) {
252  std::string ring_id = hidmanager.getSubdetid(detid, tTopo, true);
253  std::map<std::string, RingMEs>::iterator iRingME = RingMEsMap.find(ring_id);
254  if(iRingME==RingMEsMap.end()){
255  std::pair<std::string,int32_t> det_ring_pair = folder_organizer.GetSubDetAndLayer(detid,tTopo,true);
256  folder_organizer.setLayerFolder(detid, tTopo, det_ring_pair.second, true);
257  bookRingMEs(ibooker , detid, ring_id);
258  }
259  }
260 
261  // book sub-detector plots
262  std::pair<std::string,std::string> sdet_pair = folder_organizer.getSubDetFolderAndTag(detid, tTopo);
263  if (SubDetMEsMap.find(sdet_pair.second) == SubDetMEsMap.end()){
264  ibooker.setCurrentFolder(sdet_pair.first);
265  bookSubDetMEs(ibooker , sdet_pair.second);
266  }
267  }//end loop on detectors detid
268  }
269 }
270 
271 //--------------------------------------------------------------------------------
272 void SiStripMonitorTrack::bookModMEs(DQMStore::IBooker & ibooker , const uint32_t id)//Histograms at MODULE level
273 {
274  std::string name = "det";
275  SiStripHistoId hidmanager;
276  std::string hid = hidmanager.createHistoId("",name,id);
277  std::map<std::string, ModMEs>::iterator iModME = ModMEsMap.find(hid);
278  if(iModME==ModMEsMap.end()){
279  ModMEs theModMEs;
280  theModMEs.ClusterStoNCorr = 0;
281  theModMEs.ClusterCharge = 0;
282  theModMEs.ClusterChargeCorr = 0;
283  theModMEs.ClusterWidth = 0;
284  theModMEs.ClusterPos = 0;
285  theModMEs.ClusterPGV = 0;
286  theModMEs.ClusterChargePerCMfromTrack = 0;
287  theModMEs.ClusterChargePerCMfromOrigin = 0;
288 
289  // Cluster Width
290  theModMEs.ClusterWidth=bookME1D(ibooker , "TH1ClusterWidth", hidmanager.createHistoId("ClusterWidth_OnTrack",name,id).c_str());
291  ibooker.tag(theModMEs.ClusterWidth,id);
292  // Cluster Charge
293  theModMEs.ClusterCharge=bookME1D(ibooker , "TH1ClusterCharge", hidmanager.createHistoId("ClusterCharge_OnTrack",name,id).c_str());
294  ibooker.tag(theModMEs.ClusterCharge,id);
295  // Cluster Charge Corrected
296  theModMEs.ClusterChargeCorr=bookME1D(ibooker , "TH1ClusterChargeCorr", hidmanager.createHistoId("ClusterChargeCorr_OnTrack",name,id).c_str());
297  ibooker.tag(theModMEs.ClusterChargeCorr,id);
298  // Cluster StoN Corrected
299  theModMEs.ClusterStoNCorr=bookME1D(ibooker , "TH1ClusterStoNCorrMod", hidmanager.createHistoId("ClusterStoNCorr_OnTrack",name,id).c_str());
300  ibooker.tag(theModMEs.ClusterStoNCorr,id);
301  // Cluster Position
302  short total_nr_strips = SiStripDetCabling_->nApvPairs(id) * 2 * 128;
303  theModMEs.ClusterPos=ibooker.book1D(hidmanager.createHistoId("ClusterPosition_OnTrack",name,id).c_str(),hidmanager.createHistoId("ClusterPosition_OnTrack",name,id).c_str(),total_nr_strips,0.5,total_nr_strips+0.5);
304  ibooker.tag(theModMEs.ClusterPos,id);
305  // Cluster PGV
306  theModMEs.ClusterPGV=bookMEProfile(ibooker , "TProfileClusterPGV", hidmanager.createHistoId("PGV_OnTrack",name,id).c_str());
307  ibooker.tag(theModMEs.ClusterPGV,id);
308  // Cluster Charge per cm
309  theModMEs.ClusterChargePerCMfromTrack = bookME1D(ibooker , "TH1ClusterChargePerCM", hidmanager.createHistoId("ClusterChargePerCMfromTrack",name,id).c_str());
310  ibooker.tag(theModMEs.ClusterChargePerCMfromTrack,id);
311 
312  theModMEs.ClusterChargePerCMfromOrigin = bookME1D(ibooker , "TH1ClusterChargePerCM", hidmanager.createHistoId("ClusterChargePerCMfromOrigin",name,id).c_str());
313  ibooker.tag(theModMEs.ClusterChargePerCMfromOrigin,id);
314 
315  ModMEsMap[hid]=theModMEs;
316  }
317 }
318 
320 
321  MonitorElement* me = NULL;
322  bool view = false;
323  view = (conf_.getParameter<edm::ParameterSet>(histoParameters.c_str())).getParameter<bool>(viewParameter.c_str());
324  if ( id.find("TEC") == std::string::npos && id.find("TID") == std::string::npos ) {
325  me = bookME1D(ibooker , histoParameters.c_str(), histoName.c_str());
326  } else {
327  if (view) {
328  // histoName = histoName + "__" + thickness;
329  me = bookME1D(ibooker , histoParameters.c_str(), histoName.c_str());
330  }
331  }
332  return me;
333 }
334 
335 //
336 // -- Book Layer Level Histograms and Trend plots
337 //
338 //------------------------------------------------------------------------
339 void SiStripMonitorTrack::bookLayerMEs(DQMStore::IBooker & ibooker , const uint32_t mod_id, std::string& layer_id)
340 {
341  std::string name = "layer";
342  std::string view = "layerView";
343  std::string hname;
344  std::string hpar;
345  SiStripHistoId hidmanager;
346 
347  LayerMEs theLayerMEs;
348  theLayerMEs.ClusterStoNCorrOnTrack = 0;
349  theLayerMEs.ClusterChargeCorrOnTrack = 0;
350  theLayerMEs.ClusterChargeOnTrack = 0;
351  theLayerMEs.ClusterChargeOffTrack = 0;
352  theLayerMEs.ClusterNoiseOnTrack = 0;
353  theLayerMEs.ClusterNoiseOffTrack = 0;
354  theLayerMEs.ClusterWidthOnTrack = 0;
355  theLayerMEs.ClusterWidthOffTrack = 0;
356  theLayerMEs.ClusterPosOnTrack = 0;
357  theLayerMEs.ClusterPosOffTrack = 0;
358  theLayerMEs.ClusterChargePerCMfromTrack = 0;
359  theLayerMEs.ClusterChargePerCMfromOriginOnTrack = 0;
360  theLayerMEs.ClusterChargePerCMfromOriginOffTrack = 0;
361 
362  // Signal/Noise (w/ cluster charge corrected)
363  hname = hidmanager.createHistoLayer("Summary_ClusterStoNCorr",name,layer_id,"OnTrack");
364  hpar = "TH1ClusterStoNCorr";
365  theLayerMEs.ClusterStoNCorrOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
366 
367  // Cluster Charge Corrected
368  hname = hidmanager.createHistoLayer("Summary_ClusterChargeCorr",name,layer_id,"OnTrack");
369  hpar = "TH1ClusterChargeCorr";
370  theLayerMEs.ClusterChargeCorrOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
371 
372  // Cluster Charge (On and Off Track)
373  hname = hidmanager.createHistoLayer("Summary_ClusterCharge",name,layer_id,"OnTrack");
374  hpar = "TH1ClusterCharge";
375  theLayerMEs.ClusterChargeOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
376 
377  hname = hidmanager.createHistoLayer("Summary_ClusterCharge",name,layer_id,"OffTrack");
378  hpar = "TH1ClusterCharge";
379  theLayerMEs.ClusterChargeOffTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
380 
381  // Cluster Noise (On and Off Track)
382  hname = hidmanager.createHistoLayer("Summary_ClusterNoise",name,layer_id,"OnTrack");
383  hpar = "TH1ClusterNoise";
384  theLayerMEs.ClusterNoiseOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
385 
386  hname = hidmanager.createHistoLayer("Summary_ClusterNoise",name,layer_id,"OffTrack");
387  hpar = "TH1ClusterNoise";
388  theLayerMEs.ClusterNoiseOffTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
389 
390  // Cluster Width (On and Off Track)
391  hname = hidmanager.createHistoLayer("Summary_ClusterWidth",name,layer_id,"OnTrack");
392  hpar = "TH1ClusterWidth";
393  theLayerMEs.ClusterWidthOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
394 
395  hname = hidmanager.createHistoLayer("Summary_ClusterWidth",name,layer_id,"OffTrack");
396  hpar = "TH1ClusterWidth";
397  theLayerMEs.ClusterWidthOffTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
398 
399  //Cluster Position
400  short total_nr_strips = SiStripDetCabling_->nApvPairs(mod_id) * 2 * 128;
401  if (layer_id.find("TEC") != std::string::npos) total_nr_strips = 3 * 2 * 128;
402 
403  hname = hidmanager.createHistoLayer("Summary_ClusterPosition",name,layer_id,"OnTrack");
404  theLayerMEs.ClusterPosOnTrack = ibooker.book1D(hname, hname, total_nr_strips, 0.5,total_nr_strips+0.5);
405 
406  hname = hidmanager.createHistoLayer("Summary_ClusterPosition",name,layer_id,"OffTrack");
407  theLayerMEs.ClusterPosOffTrack = ibooker.book1D(hname, hname, total_nr_strips, 0.5,total_nr_strips+0.5);
408 
409  // dQ/dx
410  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromTrack",name,layer_id,"");
411  hpar = "TH1ClusterChargePerCM";
412  theLayerMEs.ClusterChargePerCMfromTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
413 
414  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromOrigin",name,layer_id,"OnTrack");
415  hpar = "TH1ClusterChargePerCM";
416  theLayerMEs.ClusterChargePerCMfromOriginOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
417 
418  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromOrigin",name,layer_id,"OffTrack");
419  hpar = "TH1ClusterChargePerCM";
420  theLayerMEs.ClusterChargePerCMfromOriginOffTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
421 
422  //bookeeping
423  LayerMEsMap[layer_id]=theLayerMEs;
424 
425 }
426 
428 {
429 
430  std::string name = "ring";
431  std::string view = "ringView";
432  std::string hname;
433  std::string hpar;
434  SiStripHistoId hidmanager;
435 
436  RingMEs theRingMEs;
437  theRingMEs.ClusterStoNCorrOnTrack = 0;
438  theRingMEs.ClusterChargeCorrOnTrack = 0;
439  theRingMEs.ClusterChargeOnTrack = 0;
440  theRingMEs.ClusterChargeOffTrack = 0;
441  theRingMEs.ClusterNoiseOnTrack = 0;
442  theRingMEs.ClusterNoiseOffTrack = 0;
443  theRingMEs.ClusterWidthOnTrack = 0;
444  theRingMEs.ClusterWidthOffTrack = 0;
445  theRingMEs.ClusterChargePerCMfromTrack = 0;
448 
449  hname = hidmanager.createHistoLayer("Summary_ClusterStoNCorr",name,ring_id,"OnTrack");
450  hpar = "TH1ClusterStoNCorr";
451  theRingMEs.ClusterStoNCorrOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
452 
453  // Cluster Charge Corrected
454  hname = hidmanager.createHistoLayer("Summary_ClusterChargeCorr",name,ring_id,"OnTrack");
455  hpar = "TH1ClusterChargeCorr";
456  theRingMEs.ClusterChargeCorrOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
457 
458  // Cluster Charge (On and Off Track)
459  hname = hidmanager.createHistoLayer("Summary_ClusterCharge",name,ring_id,"OnTrack");
460  hpar = "TH1ClusterCharge";
461  theRingMEs.ClusterChargeOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
462 
463  hname = hidmanager.createHistoLayer("Summary_ClusterCharge",name,ring_id,"OffTrack");
464  hpar = "TH1ClusterCharge";
465  theRingMEs.ClusterChargeOffTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
466 
467  // Cluster Noise (On and Off Track)
468  hname = hidmanager.createHistoLayer("Summary_ClusterNoise",name,ring_id,"OnTrack");
469  hpar = "TH1ClusterNoise";
470  theRingMEs.ClusterNoiseOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
471 
472  hname = hidmanager.createHistoLayer("Summary_ClusterNoise",name,ring_id,"OffTrack");
473  hpar = "TH1ClusterNoise";
474  theRingMEs.ClusterNoiseOffTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
475 
476  // Cluster Width (On and Off Track)
477  hname = hidmanager.createHistoLayer("Summary_ClusterWidth",name,ring_id,"OnTrack");
478  hpar = "TH1ClusterWidth";
479  theRingMEs.ClusterWidthOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
480 
481  hname = hidmanager.createHistoLayer("Summary_ClusterWidth",name,ring_id,"OffTrack");
482  hpar = "TH1ClusterWidth";
483  theRingMEs.ClusterWidthOffTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
484 
485  // dQ/dx
486  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromTrack",name,ring_id,"");
487  hpar = "TH1ClusterChargePerCM";
488  theRingMEs.ClusterChargePerCMfromTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
489 
490  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromOrigin",name,ring_id,"OnTrack");
491  hpar = "TH1ClusterChargePerCM";
492  theRingMEs.ClusterChargePerCMfromOriginOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
493 
494  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromOrigin",name,ring_id,"OffTrack");
495  hpar = "TH1ClusterChargePerCM";
496  theRingMEs.ClusterChargePerCMfromOriginOffTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
497 
498  //bookeeping
499  RingMEsMap[ring_id]=theRingMEs;
500 
501 }
502 //------------------------------------------------------------------------
503 //
504 // -- Book Histograms at Sub-Detector Level
505 //
507 
509  subdet_tag = "__" + name;
510  std::string completeName;
511  std::string axisName;
512 
513  SubDetMEs theSubDetMEs;
514  theSubDetMEs.totNClustersOnTrack = 0;
515  theSubDetMEs.totNClustersOffTrack = 0;
516  theSubDetMEs.nClustersOnTrack = 0;
517  theSubDetMEs.nClustersTrendOnTrack = 0;
518  theSubDetMEs.nClustersOffTrack = 0;
519  theSubDetMEs.nClustersTrendOffTrack = 0;
520  theSubDetMEs.ClusterStoNCorrOnTrack = 0;
521  theSubDetMEs.ClusterChargeOnTrack = 0;
522  theSubDetMEs.ClusterChargeOffTrack = 0;
523  theSubDetMEs.ClusterStoNOffTrack = 0;
524  theSubDetMEs.ClusterChargePerCMfromTrack = 0;
525  theSubDetMEs.ClusterChargePerCMfromOriginOnTrack = 0;
526  theSubDetMEs.ClusterChargePerCMfromOriginOffTrack = 0;
527 
528  // TotalNumber of Cluster OnTrack
529  completeName = "Summary_TotalNumberOfClusters_OnTrack" + subdet_tag;
530  axisName = "Number of on-track clusters in " + name;
531  theSubDetMEs.nClustersOnTrack = bookME1D(ibooker , "TH1nClustersOn", completeName.c_str());
532  theSubDetMEs.nClustersOnTrack->setAxisTitle(axisName.c_str());
533  theSubDetMEs.nClustersOnTrack->getTH1()->StatOverflows(kTRUE);
534 
535  // TotalNumber of Cluster OffTrack
536  completeName = "Summary_TotalNumberOfClusters_OffTrack" + subdet_tag;
537  axisName = "Number of off-track clusters in " + name;
538  theSubDetMEs.nClustersOffTrack = bookME1D(ibooker , "TH1nClustersOff", completeName.c_str());
539  theSubDetMEs.nClustersOffTrack->setAxisTitle(axisName.c_str());
540  theSubDetMEs.nClustersOffTrack->getTH1()->StatOverflows(kTRUE);
541 
542  // Cluster StoN On Track
543  completeName = "Summary_ClusterStoNCorr_OnTrack" + subdet_tag;
544  theSubDetMEs.ClusterStoNCorrOnTrack = bookME1D(ibooker , "TH1ClusterStoNCorr", completeName.c_str());
545 
546  // Cluster Charge On Track
547  completeName = "Summary_ClusterCharge_OnTrack" + subdet_tag;
548  theSubDetMEs.ClusterChargeOnTrack=bookME1D(ibooker , "TH1ClusterCharge", completeName.c_str());
549 
550  // Cluster Charge Off Track
551  completeName = "Summary_ClusterCharge_OffTrack" + subdet_tag;
552  theSubDetMEs.ClusterChargeOffTrack=bookME1D(ibooker , "TH1ClusterCharge", completeName.c_str());
553 
554  // Cluster Charge StoN Off Track
555  completeName = "Summary_ClusterStoN_OffTrack" + subdet_tag;
556  theSubDetMEs.ClusterStoNOffTrack = bookME1D(ibooker , "TH1ClusterStoN", completeName.c_str());
557 
558  // cluster charge per cm on track
559  completeName = "Summary_ClusterChargePerCMfromTrack" + subdet_tag;
560  theSubDetMEs.ClusterChargePerCMfromTrack=bookME1D(ibooker , "TH1ClusterChargePerCM", completeName.c_str());
561 
562  // cluster charge per cm on track
563  completeName = "Summary_ClusterChargePerCMfromOrigin_OnTrack" + subdet_tag;
564  theSubDetMEs.ClusterChargePerCMfromOriginOnTrack=bookME1D(ibooker , "TH1ClusterChargePerCM", completeName.c_str());
565 
566  // cluster charge per cm off track
567  completeName = "Summary_ClusterChargePerCMfromOrigin_OffTrack" + subdet_tag;
568  theSubDetMEs.ClusterChargePerCMfromOriginOffTrack=bookME1D(ibooker , "TH1ClusterChargePerCM", completeName.c_str());
569 
570  if(Trend_On_){
571  // TotalNumber of Cluster
572  completeName = "Trend_TotalNumberOfClusters_OnTrack" + subdet_tag;
573  theSubDetMEs.nClustersTrendOnTrack = bookMETrend(ibooker , completeName.c_str());
574  completeName = "Trend_TotalNumberOfClusters_OffTrack" + subdet_tag;
575  theSubDetMEs.nClustersTrendOffTrack = bookMETrend(ibooker , completeName.c_str());
576  }
577 
578  //bookeeping
579  SubDetMEsMap[name]=theSubDetMEs;
580 
581 }
582 //--------------------------------------------------------------------------------
583 
584 inline MonitorElement* SiStripMonitorTrack::bookME1D(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName)
585 {
586  Parameters = conf_.getParameter<edm::ParameterSet>(ParameterSetLabel);
587  return ibooker.book1D(HistoName,HistoName,
588  Parameters.getParameter<int32_t>("Nbinx"),
589  Parameters.getParameter<double>("xmin"),
590  Parameters.getParameter<double>("xmax")
591  );
592 }
593 
594 //--------------------------------------------------------------------------------
595 inline MonitorElement* SiStripMonitorTrack::bookME2D(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName)
596 {
597  Parameters = conf_.getParameter<edm::ParameterSet>(ParameterSetLabel);
598  return ibooker.book2D(HistoName,HistoName,
599  Parameters.getParameter<int32_t>("Nbinx"),
600  Parameters.getParameter<double>("xmin"),
601  Parameters.getParameter<double>("xmax"),
602  Parameters.getParameter<int32_t>("Nbiny"),
603  Parameters.getParameter<double>("ymin"),
604  Parameters.getParameter<double>("ymax")
605  );
606 }
607 
608 //--------------------------------------------------------------------------------
609 inline MonitorElement* SiStripMonitorTrack::bookME3D(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName)
610 {
611  Parameters = conf_.getParameter<edm::ParameterSet>(ParameterSetLabel);
612  return ibooker.book3D(HistoName,HistoName,
613  Parameters.getParameter<int32_t>("Nbinx"),
614  Parameters.getParameter<double>("xmin"),
615  Parameters.getParameter<double>("xmax"),
616  Parameters.getParameter<int32_t>("Nbiny"),
617  Parameters.getParameter<double>("ymin"),
618  Parameters.getParameter<double>("ymax"),
619  Parameters.getParameter<int32_t>("Nbinz"),
620  Parameters.getParameter<double>("zmin"),
621  Parameters.getParameter<double>("zmax")
622  );
623 }
624 
625 //--------------------------------------------------------------------------------
626 inline MonitorElement* SiStripMonitorTrack::bookMEProfile(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName)
627 {
628  Parameters = conf_.getParameter<edm::ParameterSet>(ParameterSetLabel);
629  return ibooker.bookProfile(HistoName,HistoName,
630  Parameters.getParameter<int32_t>("Nbinx"),
631  Parameters.getParameter<double>("xmin"),
632  Parameters.getParameter<double>("xmax"),
633  Parameters.getParameter<int32_t>("Nbiny"),
634  Parameters.getParameter<double>("ymin"),
635  Parameters.getParameter<double>("ymax"),
636  "" );
637 }
638 
639 //--------------------------------------------------------------------------------
641 {
642  edm::ParameterSet ParametersTrend = conf_.getParameter<edm::ParameterSet>("Trending");
643  MonitorElement* me = ibooker.bookProfile(HistoName,HistoName,
644  ParametersTrend.getParameter<int32_t>("Nbins"),
645  ParametersTrend.getParameter<double>("xmin"),
646  ParametersTrend.getParameter<double>("xmax"),
647  0 , 0 , "" );
648  if (me->kind() == MonitorElement::DQM_KIND_TPROFILE) me->getTH1()->SetCanExtend(TH1::kAllAxes);
649 
650  if(!me) return me;
651  me->setAxisTitle("Lumisection",1);
652  return me;
653 }
654 
655 //------------------------------------------------------------------------------------------
656 void SiStripMonitorTrack::trajectoryStudy(const edm::Ref<std::vector<Trajectory> > traj, const edm::EventSetup& es, bool track_ok) {
657  const std::vector<TrajectoryMeasurement> & measurements = traj->measurements();
658  for(std::vector<TrajectoryMeasurement>::const_iterator traj_mes_iterator= measurements.begin(), traj_mes_end=measurements.end();
659  traj_mes_iterator!=traj_mes_end;++traj_mes_iterator){//loop on measurements
660  //trajectory local direction and position on detector
661  LocalVector statedirection;
662 
663  TrajectoryStateOnSurface updatedtsos=traj_mes_iterator->updatedState();
664  ConstRecHitPointer ttrh=traj_mes_iterator->recHit();
665 
666 
667  if (TkHistoMap_On_ ) {
668  uint32_t thedetid=ttrh->rawId();
669  if ( SiStripDetId(thedetid).subDetector() >=3 && SiStripDetId(thedetid).subDetector() <=6) { //TIB/TID + TOB + TEC only
670  if ( (ttrh->getType()==1) )
671  tkhisto_NumMissingHits->add(thedetid,1.);
672  if ( (ttrh->getType()==2) )
673  tkhisto_NumberInactiveHits->add(thedetid,1.);
674  if ( (ttrh->getType()==0) )
675  tkhisto_NumberValidHits->add(thedetid,1.);
676  }
677  }
678 
679  if (!ttrh->isValid()) continue;
680 
681  const ProjectedSiStripRecHit2D* projhit = dynamic_cast<const ProjectedSiStripRecHit2D*>( ttrh->hit() );
682  const SiStripMatchedRecHit2D* matchedhit = dynamic_cast<const SiStripMatchedRecHit2D*>( ttrh->hit() );
683  const SiStripRecHit2D* hit2D = dynamic_cast<const SiStripRecHit2D*>( ttrh->hit() );
684  const SiStripRecHit1D* hit1D = dynamic_cast<const SiStripRecHit1D*>( ttrh->hit() );
685 
686  // RecHitType type=Single;
687 
688  if(matchedhit){
689  LogTrace("SiStripMonitorTrack")<<"\nMatched recHit found"<< std::endl;
690  // type=Matched;
691 
692  const GluedGeomDet * gdet=static_cast<const GluedGeomDet *>(tkgeom_->idToDet(matchedhit->geographicalId()));
693  GlobalVector gtrkdirup=gdet->toGlobal(updatedtsos.localMomentum());
694  //mono side
695  const GeomDetUnit * monodet=gdet->monoDet();
696  statedirection=monodet->toLocal(gtrkdirup);
697  SiStripRecHit2D m = matchedhit->monoHit();
698  // if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&m,statedirection,trackref,es);
699  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(&m,statedirection,es,track_ok);
700  //stereo side
701  const GeomDetUnit * stereodet=gdet->stereoDet();
702  statedirection=stereodet->toLocal(gtrkdirup);
703  SiStripRecHit2D s = matchedhit->stereoHit();
704  // if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&s,statedirection,trackref,es);
705  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(&s,statedirection,es,track_ok);
706  }
707  else if(projhit){
708  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found"<< std::endl;
709  // type=Projected;
710  const GluedGeomDet * gdet=static_cast<const GluedGeomDet *>(tkgeom_->idToDet(projhit->geographicalId()));
711 
712  GlobalVector gtrkdirup=gdet->toGlobal(updatedtsos.localMomentum());
713  const SiStripRecHit2D originalhit=projhit->originalHit();
714  const GeomDetUnit * det;
715  if(!StripSubdetector(originalhit.geographicalId().rawId()).stereo()){
716  //mono side
717  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found MONO"<< std::endl;
718  det=gdet->monoDet();
719  statedirection=det->toLocal(gtrkdirup);
720  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(&(originalhit),statedirection,es,track_ok);
721  }
722  else{
723  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found STEREO"<< std::endl;
724  //stereo side
725  det=gdet->stereoDet();
726  statedirection=det->toLocal(gtrkdirup);
727  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(&(originalhit),statedirection,es,track_ok);
728  }
729  }else if (hit2D){
730  statedirection=updatedtsos.localMomentum();
731  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(hit2D,statedirection,es,track_ok);
732  } else if (hit1D) {
733  statedirection=updatedtsos.localMomentum();
734  if(statedirection.mag()) RecHitInfo<SiStripRecHit1D>(hit1D,statedirection,es,track_ok);
735  } else {
736  LogDebug ("SiStripMonitorTrack")
737  << " LocalMomentum: "<<statedirection
738  << "\nLocal x-z plane angle: "<<atan2(statedirection.x(),statedirection.z());
739  }
740 
741  }
742 
743 }
744 //------------------------------------------------------------------------
746  const ProjectedSiStripRecHit2D* projhit,
747  const SiStripMatchedRecHit2D* matchedhit,
748  const SiStripRecHit2D* hit2D,
749  const SiStripRecHit1D* hit1D,
750  LocalVector localMomentum,
751  const bool track_ok
752  ) {
753  LocalVector statedirection;
754  if(matchedhit){ // type=Matched;
755  LogTrace("SiStripMonitorTrack")<<"\nMatched recHit found"<< std::endl;
756 
757  const GluedGeomDet * gdet=static_cast<const GluedGeomDet *>(tkgeom_->idToDet(matchedhit->geographicalId()));
758 
759  GlobalVector gtrkdirup=gdet->toGlobal(localMomentum);
760 
761  //mono side
762  const GeomDetUnit * monodet=gdet->monoDet();
763  statedirection=monodet->toLocal(gtrkdirup);
764  SiStripRecHit2D m = matchedhit->monoHit();
765  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(&m,statedirection,es,track_ok);
766 
767  //stereo side
768  const GeomDetUnit * stereodet=gdet->stereoDet();
769  statedirection=stereodet->toLocal(gtrkdirup);
770  SiStripRecHit2D s = matchedhit->stereoHit();
771  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(&s,statedirection,es,track_ok);
772  }
773  else if(projhit){ // type=Projected;
774  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found"<< std::endl;
775 
776  const GluedGeomDet * gdet=static_cast<const GluedGeomDet *>(tkgeom_->idToDet(projhit->geographicalId()));
777 
778  GlobalVector gtrkdirup=gdet->toGlobal(localMomentum);
779  const SiStripRecHit2D originalhit=projhit->originalHit();
780 
781  const GeomDetUnit * det;
782  if(!StripSubdetector(originalhit.geographicalId().rawId()).stereo()){
783  //mono side
784  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found MONO"<< std::endl;
785  det=gdet->monoDet();
786  statedirection=det->toLocal(gtrkdirup);
787  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(&(originalhit),statedirection,es,track_ok);
788  }
789  else{
790  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found STEREO"<< std::endl;
791  //stereo side
792  det=gdet->stereoDet();
793  statedirection=det->toLocal(gtrkdirup);
794  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(&(originalhit),statedirection,es,track_ok);
795  }
796  } else if (hit2D){ // type=2D
797  statedirection=localMomentum;
798  if(statedirection.mag()) RecHitInfo<SiStripRecHit2D>(hit2D,statedirection,es,track_ok);
799  } else if (hit1D) { // type=1D
800  statedirection=localMomentum;
801  if(statedirection.mag()) RecHitInfo<SiStripRecHit1D>(hit1D,statedirection,es,track_ok);
802  } else {
803  LogDebug ("SiStripMonitorTrack")
804  << " LocalMomentum: "<<statedirection
805  << "\nLocal x-z plane angle: "<<atan2(statedirection.x(),statedirection.z());
806  }
807 
808 }
809 //------------------------------------------------------------------------
811 
812 using namespace std;
813 using namespace edm;
814 using namespace reco;
815 
816  // trajectory input
817  edm::Handle<TrajTrackAssociationCollection> TItkAssociatorCollection;
818  ev.getByToken(trackTrajToken_, TItkAssociatorCollection);
819  if( TItkAssociatorCollection.isValid()){
820  trackStudyFromTrajectory(TItkAssociatorCollection,es);
821  } else {
822  edm::LogError("SiStripMonitorTrack")<<"Association not found ... try w/ track collection"<<std::endl;
823 
824  // edm::Handle<std::vector<Trajectory> > trajectories;
825  // ev.getByToken(trajectoryToken_, trajectories);
826 
827  // track input
828  edm::Handle<reco::TrackCollection > trackCollectionHandle;
829  ev.getByToken(trackToken_, trackCollectionHandle);//takes the track collection
830  if (trackCollectionHandle.isValid()){
831  trackStudyFromTrack(trackCollectionHandle,es);
832  } else {
833  edm::LogError("SiStripMonitorTrack")<<"also Track Collection is not valid !! " << TrackLabel_<<std::endl;
834  return;
835  }
836  }
837 }
838 
839 //------------------------------------------------------------------------
840 // Should return true if the track is good, false if it should be discarded.
842  if (track.pt() < 0.8) return false;
843  if (track.p() < 2.0) return false;
844  if (track.hitPattern().numberOfValidTrackerHits() <= 6) return false;
845  if (track.normalizedChi2() > 10.0) return false;
846  return true;
847 }
848 //------------------------------------------------------------------------
850 
851  // edm::ESHandle<TransientTrackBuilder> builder;
852  // es.get<TransientTrackRecord>().get("TransientTrackBuilder",builder);
853  // const TransientTrackBuilder* transientTrackBuilder = builder.product();
854 
855  //numTracks = trackCollectionHandle->size();
856  reco::TrackCollection trackCollection = *trackCollectionHandle;
857  for (reco::TrackCollection::const_iterator track = trackCollection.begin(), etrack = trackCollection.end();
858  track!=etrack; ++track) {
859 
860  bool track_ok = trackFilter(*track);
861  // const reco::TransientTrack transientTrack = transientTrackBuilder->build(track);
862 
863  for (trackingRecHit_iterator hit = track->recHitsBegin(), ehit = track->recHitsEnd();
864  hit!=ehit; ++hit) {
865 
866  if (TkHistoMap_On_ ) {
867  uint32_t thedetid=(*hit)->rawId();
868  if ( SiStripDetId(thedetid).subDetector() >=3 && SiStripDetId(thedetid).subDetector() <=6) { //TIB/TID + TOB + TEC only
869  if ( ((*hit)->getType()==1) )
870  tkhisto_NumMissingHits->add(thedetid,1.);
871  if ( ((*hit)->getType()==2) )
872  tkhisto_NumberInactiveHits->add(thedetid,1.);
873  if ( ((*hit)->getType()==0) )
874  tkhisto_NumberValidHits->add(thedetid,1.);
875  }
876  }
877 
878  if (!(*hit)->isValid()) continue;
879  DetId detID = (*hit)->geographicalId();
880  if (detID.det() != DetId::Tracker) continue;
881  const TrackingRecHit* theHit = (*hit);
882  const ProjectedSiStripRecHit2D* projhit = dynamic_cast<const ProjectedSiStripRecHit2D*>( (theHit) );
883  const SiStripMatchedRecHit2D* matchedhit = dynamic_cast<const SiStripMatchedRecHit2D*> ( (theHit) );
884  const SiStripRecHit2D* hit2D = dynamic_cast<const SiStripRecHit2D*> ( (theHit) );
885  const SiStripRecHit1D* hit1D = dynamic_cast<const SiStripRecHit1D*> ( (theHit) );
886 
887  // GlobalPoint globalPoint = hit->globalPosition();
888  // reco::TrajectoryStateOnSurface stateOnSurface = transientTrack->stateOnSurface(globalPoint);
889 
890  LocalVector localMomentum;
891  hitStudy(es,projhit,matchedhit,hit2D,hit1D,localMomentum,track_ok);
892  }
893 
894  // hit pattern of the track
895  // const reco::HitPattern & hitsPattern = track->hitPattern();
896  // loop over the hits of the track
897  // for (int i=0; i<hitsPattern.numberOfHits(); i++) {
898  // for (int i=0; i<hitsPattern.numberOfHits(reco::HitPattern::TRACK_HITS); i++) {
899  // uint32_t hit = hitsPattern.getHitPattern(reco::HitPattern::TRACK_HITS,i);
900 
901  // if the hit is valid and in pixel barrel, print out the layer
902  // if (hitsPattern.validHitFilter(hit) && hitsPattern.pixelBarrelHitFilter(hit))
903 
904  // if (!hitsPattern.validHitFilter(hit)) continue;
905 // if (hitsPattern.pixelHitFilter(hit)) std::cout << "pixel" << std::endl; // pixel
906 // if (hitsPattern.pixelBarrelHitFilter(hit)) std::cout << "pixel barrel" << std::endl; // pixel barrel
907 // if (hitsPattern.pixelEndcapHitFilter(hit)) std::cout << "pixel endcap" << std::endl; // pixel endcap
908 // if (hitsPattern.stripHitFilter(hit)) std::cout << "strip" << std::endl; // strip
909 // if (hitsPattern.stripTIBHitFilter(hit)) std::cout << "TIB" << std::endl; // strip TIB
910 // if (hitsPattern.stripTIDHitFilter(hit)) std::cout << "TID" << std::endl; // strip TID
911 // if (hitsPattern.stripTOBHitFilter(hit)) std::cout << "TOB" << std::endl; // strip TOB
912 // if (hitsPattern.stripTECHitFilter(hit)) std::cout << "TEC" << std::endl; // strip TEC
913 // if (hitsPattern.muonDTHitFilter(hit)) std::cout << "DT" << std::endl; // muon DT
914 // if (hitsPattern.muonCSCHitFilter(hit)) std::cout << "CSC" << std::endl; // muon CSC
915 // if (hitsPattern.muonRPCHitFilter(hit)) std::cout << "RPC" << std::endl; // muon RPC
916 //
917 // // expert level: printout the hit in 10-bit binary format
918 // std::cout << "hit in 10-bit binary format = ";
919 // for (int j=9; j>=0; j--) {
920 // int bit = (hit >> j) & 0x1;
921 // std::cout << bit;
922 // }
923 // std::cout << std::endl;
924  // }
925  }
926 }
927 //------------------------------------------------------------------------
929  //Perform track study
930  numTracks = TItkAssociatorCollection->size();
931  int i=0;
932  for(TrajTrackAssociationCollection::const_iterator it = TItkAssociatorCollection->begin();it != TItkAssociatorCollection->end(); ++it){
933  const edm::Ref<std::vector<Trajectory> > traj_iterator = it->key;
934 
935  // Trajectory Map, extract Trajectory for this track
936  //reco::TrackRef trackref = it->val;
937  LogDebug("SiStripMonitorTrack")
938  << "Track number "<< ++i << std::endl;
939  // << "\n\tmomentum: " << trackref->momentum()
940  // << "\n\tPT: " << trackref->pt()
941  // << "\n\tvertex: " << trackref->vertex()
942  // << "\n\timpact parameter: " << trackref->d0()
943  // << "\n\tcharge: " << trackref->charge()
944  // << "\n\tnormalizedChi2: " << trackref->normalizedChi2()
945  // <<"\n\tFrom EXTRA : "
946  // <<"\n\t\touter PT "<< trackref->outerPt()<<std::endl;
947 
948  // trajectoryStudy(traj_iterator,trackref,es);
949  bool track_ok = trackFilter(*(it->val));
950  trajectoryStudy(traj_iterator,es,track_ok);
951 
952  }
953 }
954 //------------------------------------------------------------------------
955 template <class T> void SiStripMonitorTrack::RecHitInfo(const T* tkrecHit, LocalVector LV, const edm::EventSetup& es, bool track_ok){
956 
957  if(!tkrecHit->isValid()){
958  LogTrace("SiStripMonitorTrack") <<"\t\t Invalid Hit " << std::endl;
959  return;
960  }
961 
962  const uint32_t& detid = tkrecHit->geographicalId().rawId();
963 
964  LogTrace("SiStripMonitorTrack")
965  <<"\n\t\tRecHit on det "<<detid
966  <<"\n\t\tRecHit in LP "<<tkrecHit->localPosition()
967  <<"\n\t\tRecHit in GP "<<tkgeom_->idToDet(tkrecHit->geographicalId())->surface().toGlobal(tkrecHit->localPosition())
968  <<"\n\t\tRecHit trackLocal vector "<<LV.x() << " " << LV.y() << " " << LV.z() <<std::endl;
969 
970 
971  //Retrieve tracker topology from geometry
972  edm::ESHandle<TrackerTopology> tTopoHandle;
973  es.get<TrackerTopologyRcd>().get(tTopoHandle);
974  const TrackerTopology* const tTopo = tTopoHandle.product();
975 
976  //Get SiStripCluster from SiStripRecHit
977  if ( tkrecHit != NULL ){
978  const SiStripCluster* SiStripCluster_ = &*(tkrecHit->cluster());
979  SiStripClusterInfo SiStripClusterInfo_(*SiStripCluster_,es,detid);
980 
981  const Det2MEs MEs = findMEs(tTopo, detid);
982  if (clusterInfos(&SiStripClusterInfo_,detid, OnTrack, track_ok, LV, MEs))
983  {
984  vPSiStripCluster.insert(SiStripCluster_);
985  }
986  }
987  else
988  {
989  edm::LogError("SiStripMonitorTrack") << "NULL hit" << std::endl;
990  }
991  }
992 
993 //------------------------------------------------------------------------
995 {
996 
997  //Retrieve tracker topology from geometry
998  edm::ESHandle<TrackerTopology> tTopoHandle;
999  es.get<TrackerTopologyRcd>().get(tTopoHandle);
1000  const TrackerTopology* const tTopo = tTopoHandle.product();
1001 
1003  ev.getByToken( clusterToken_, siStripClusterHandle);
1004  if (siStripClusterHandle.isValid()){
1005  //Loop on Dets
1006  for (edmNew::DetSetVector<SiStripCluster>::const_iterator DSViter=siStripClusterHandle->begin(), DSVEnd=siStripClusterHandle->end();
1007  DSViter!=DSVEnd; ++DSViter) {
1008 
1009  uint32_t detid=DSViter->id();
1010  const Det2MEs MEs = findMEs(tTopo, detid);
1011 
1012  LogDebug("SiStripMonitorTrack") << "on detid "<< detid << " N Cluster= " << DSViter->size();
1013 
1014  //Loop on Clusters
1015  for(edmNew::DetSet<SiStripCluster>::const_iterator ClusIter = DSViter->begin(), ClusEnd = DSViter->end();
1016  ClusIter!=ClusEnd; ++ClusIter) {
1017 
1018  if (vPSiStripCluster.find(&*ClusIter) == vPSiStripCluster.end()) {
1019  SiStripClusterInfo SiStripClusterInfo_(*ClusIter,es,detid);
1020  clusterInfos(&SiStripClusterInfo_,detid,OffTrack, /*track_ok*/ false,LV,MEs);
1021  }
1022  }
1023  }
1024  } else {
1025  edm::LogError("SiStripMonitorTrack")<< "ClusterCollection is not valid!!" << std::endl;
1026  return;
1027  }
1028 }
1029 
1030 //------------------------------------------------------------------------
1032  SiStripHistoId hidmanager1;
1033 
1034  std::string layer_id = hidmanager1.getSubdetid(detid, tTopo, false);
1035  std::string ring_id = hidmanager1.getSubdetid(detid, tTopo, true);
1036  std::string sdet_tag = folderOrganizer_.getSubDetFolderAndTag(detid, tTopo).second;
1037 
1038  Det2MEs me;
1039  me.iLayer = nullptr;
1040  me.iRing = nullptr;
1041  me.iSubdet = nullptr;
1042 
1043  std::map<std::string, LayerMEs>::iterator iLayer = LayerMEsMap.find(layer_id);
1044  if (iLayer != LayerMEsMap.end()) {
1045  me.iLayer = &(iLayer->second);
1046  }
1047 
1048  std::map<std::string, RingMEs>::iterator iRing = RingMEsMap.find(ring_id);
1049  if (iRing != RingMEsMap.end()) {
1050  me.iRing = &(iRing->second);
1051  }
1052 
1053  std::map<std::string, SubDetMEs>::iterator iSubdet = SubDetMEsMap.find(sdet_tag);
1054  if (iSubdet != SubDetMEsMap.end()) {
1055  me.iSubdet = &(iSubdet->second);
1056  }
1057 
1058  return me;
1059 }
1060 
1061 //------------------------------------------------------------------------
1063 bool SiStripMonitorTrack::clusterInfos(SiStripClusterInfo* cluster, const uint32_t detid, enum ClusterFlags flag, bool track_ok, const LocalVector LV, const Det2MEs& MEs)
1064 {
1065 
1066  if (cluster==NULL) return false;
1067  // if one imposes a cut on the clusters, apply it
1068  if( (applyClusterQuality_) &&
1069  (cluster->signalOverNoise() < sToNLowerLimit_ ||
1070  cluster->signalOverNoise() > sToNUpperLimit_ ||
1071  cluster->width() < widthLowerLimit_ ||
1072  cluster->width() > widthUpperLimit_) ) return false;
1073  // start of the analysis
1074 
1075  float cosRZ = -2;
1076  LogDebug("SiStripMonitorTrack")<< "\n\tLV " << LV.x() << " " << LV.y() << " " << LV.z() << " " << LV.mag() << std::endl;
1077  if (LV.mag()){
1078  cosRZ= fabs(LV.z())/LV.mag();
1079  LogDebug("SiStripMonitorTrack")<< "\n\t cosRZ " << cosRZ << std::endl;
1080  }
1081 
1082  // Filling SubDet/Layer Plots (on Track + off Track)
1083  float StoN = cluster->signalOverNoise();
1084  float noise = cluster->noiseRescaledByGain();
1085  uint16_t charge = cluster->charge();
1086  uint16_t width = cluster->width();
1087  float position = cluster->baryStrip();
1088 
1089  // new dE/dx (chargePerCM)
1090  // https://indico.cern.ch/event/342236/session/5/contribution/10/material/slides/0.pdf
1091  float dQdx_fromTrack = siStripClusterTools::chargePerCM(detid, *cluster, LV);
1092  // from straigth line origin-sensor centre
1093  const StripGeomDetUnit* DetUnit = static_cast<const StripGeomDetUnit*>(tkgeom_->idToDetUnit(DetId(detid)));
1094  LocalPoint locVtx = DetUnit->toLocal(GlobalPoint(0.0, 0.0, 0.0));
1095  LocalVector locDir(locVtx.x(), locVtx.y(), locVtx.z());
1096  float dQdx_fromOrigin = siStripClusterTools::chargePerCM(detid, *cluster, locDir);
1097 
1098  if (TkHistoMap_On_ && (flag == OnTrack)) {
1099  uint32_t adet=cluster->detId();
1100  if(track_ok) tkhisto_ClChPerCMfromTrack->fill(adet,dQdx_fromTrack);
1101  }
1102  if (clchCMoriginTkHmap_On_ && (flag == OffTrack)){
1103  uint32_t adet=cluster->detId();
1104  if(track_ok) tkhisto_ClChPerCMfromOrigin->fill(adet,dQdx_fromOrigin);
1105  }
1106 
1107  if(flag==OnTrack){
1108  if (MEs.iSubdet != nullptr) MEs.iSubdet->totNClustersOnTrack++;
1109  // layerMEs
1110  if (MEs.iLayer != nullptr) {
1111  if(noise > 0.0) fillME(MEs.iLayer->ClusterStoNCorrOnTrack, StoN*cosRZ);
1112  if(noise == 0.0) LogDebug("SiStripMonitorTrack") << "Module " << detid << " in Event " << eventNb << " noise " << cluster->noiseRescaledByGain() << std::endl;
1113  fillME(MEs.iLayer->ClusterChargeCorrOnTrack, charge*cosRZ);
1114  fillME(MEs.iLayer->ClusterChargeOnTrack, charge);
1115  fillME(MEs.iLayer->ClusterNoiseOnTrack, noise);
1116  fillME(MEs.iLayer->ClusterWidthOnTrack, width);
1117  fillME(MEs.iLayer->ClusterPosOnTrack, position);
1118  if(track_ok) fillME(MEs.iLayer->ClusterChargePerCMfromTrack, dQdx_fromTrack);
1119  if(track_ok) fillME(MEs.iLayer->ClusterChargePerCMfromOriginOnTrack, dQdx_fromOrigin);
1120  }
1121  // ringMEs
1122  if (MEs.iRing != nullptr) {
1123  if(noise > 0.0) fillME(MEs.iRing->ClusterStoNCorrOnTrack, StoN*cosRZ);
1124  if(noise == 0.0) LogDebug("SiStripMonitorTrack") << "Module " << detid << " in Event " << eventNb << " noise " << cluster->noiseRescaledByGain() << std::endl;
1125  fillME(MEs.iRing->ClusterChargeCorrOnTrack, charge*cosRZ);
1126  fillME(MEs.iRing->ClusterChargeOnTrack, charge);
1127  fillME(MEs.iRing->ClusterNoiseOnTrack, noise);
1128  fillME(MEs.iRing->ClusterWidthOnTrack, width);
1129  if(track_ok) fillME(MEs.iRing->ClusterChargePerCMfromTrack, dQdx_fromTrack);
1130  if(track_ok) fillME(MEs.iRing->ClusterChargePerCMfromOriginOnTrack, dQdx_fromOrigin);
1131  }
1132  // subdetMEs
1133  if(MEs.iSubdet != nullptr){
1134  fillME(MEs.iSubdet->ClusterChargeOnTrack,charge);
1135  if(noise > 0.0) fillME(MEs.iSubdet->ClusterStoNCorrOnTrack,StoN*cosRZ);
1136  if(track_ok) fillME(MEs.iSubdet->ClusterChargePerCMfromTrack,dQdx_fromTrack);
1137  if(track_ok) fillME(MEs.iSubdet->ClusterChargePerCMfromOriginOnTrack,dQdx_fromOrigin);
1138  }
1139  //******** TkHistoMaps
1140  if (TkHistoMap_On_) {
1141  uint32_t adet=cluster->detId();
1142  tkhisto_NumOnTrack->add(adet,1.);
1143  if(noise > 0.0) tkhisto_StoNCorrOnTrack->fill(adet,cluster->signalOverNoise()*cosRZ);
1144  if(noise == 0.0)
1145  LogDebug("SiStripMonitorTrack") << "Module " << detid << " in Event " << eventNb << " noise " << noise << std::endl;
1146  }
1147  // Module plots filled only for onTrack Clusters
1148  if(Mod_On_){
1149  SiStripHistoId hidmanager2;
1150  std::string name = hidmanager2.createHistoId("","det",detid);
1151  //fillModMEs
1152  std::map<std::string, ModMEs>::iterator iModME = ModMEsMap.find(name);
1153  if(iModME!=ModMEsMap.end()){
1154  if(noise > 0.0) fillME(iModME->second.ClusterStoNCorr ,StoN*cosRZ);
1155  if(noise == 0.0) LogDebug("SiStripMonitorTrack") << "Module " << name << " in Event " << eventNb << " noise " << noise << std::endl;
1156  fillME(iModME->second.ClusterCharge,charge);
1157 
1158  fillME(iModME->second.ClusterChargeCorr,charge*cosRZ);
1159 
1160  fillME(iModME->second.ClusterWidth ,width);
1161  fillME(iModME->second.ClusterPos ,position);
1162 
1163  if(track_ok) fillME(iModME->second.ClusterChargePerCMfromTrack, dQdx_fromTrack);
1164  if(track_ok) fillME(iModME->second.ClusterChargePerCMfromOrigin, dQdx_fromOrigin);
1165 
1166  //fill the PGV histo
1167  float PGVmax = cluster->maxCharge();
1168  int PGVposCounter = cluster->maxIndex();
1169  for (int i= int(conf_.getParameter<edm::ParameterSet>("TProfileClusterPGV").getParameter<double>("xmin"));i<PGVposCounter;++i)
1170  fillME(iModME->second.ClusterPGV, i,0.);
1171  for (auto it=cluster->stripCharges().begin();it<cluster->stripCharges().end();++it) {
1172  fillME(iModME->second.ClusterPGV, PGVposCounter++,(*it)/PGVmax);
1173  }
1174  for (int i= PGVposCounter;i<int(conf_.getParameter<edm::ParameterSet>("TProfileClusterPGV").getParameter<double>("xmax"));++i)
1175  fillME(iModME->second.ClusterPGV, i,0.);
1176  //end fill the PGV histo
1177  }
1178  }
1179  } else {
1180  if (flag == OffTrack) {
1181  if (MEs.iSubdet != nullptr) MEs.iSubdet->totNClustersOffTrack++;
1182  //******** TkHistoMaps
1183  if (TkHistoMap_On_) {
1184  uint32_t adet=cluster->detId();
1185  tkhisto_NumOffTrack->add(adet,1.);
1186  if(charge > 250){
1187  LogDebug("SiStripMonitorTrack") << "Module firing " << detid << " in Event " << eventNb << std::endl;
1188  }
1189  }
1190  }
1191  // layerMEs
1192  if (MEs.iLayer != nullptr) {
1193  fillME(MEs.iLayer->ClusterChargeOffTrack, charge);
1194  fillME(MEs.iLayer->ClusterNoiseOffTrack, noise);
1195  fillME(MEs.iLayer->ClusterWidthOffTrack, width);
1196  fillME(MEs.iLayer->ClusterPosOffTrack, position);
1197  fillME(MEs.iLayer->ClusterChargePerCMfromOriginOffTrack, dQdx_fromOrigin);
1198  }
1199  // ringMEs
1200  if (MEs.iRing != nullptr) {
1201  fillME(MEs.iRing->ClusterChargeOffTrack, charge);
1202  fillME(MEs.iRing->ClusterNoiseOffTrack, noise);
1203  fillME(MEs.iRing->ClusterWidthOffTrack, width);
1204  fillME(MEs.iRing->ClusterChargePerCMfromOriginOffTrack, dQdx_fromOrigin);
1205  }
1206  // subdetMEs
1207  if(MEs.iSubdet != nullptr){
1208  fillME(MEs.iSubdet->ClusterChargeOffTrack,charge);
1209  if(noise > 0.0) fillME(MEs.iSubdet->ClusterStoNOffTrack,StoN);
1210  fillME(MEs.iSubdet->ClusterChargePerCMfromOriginOffTrack,dQdx_fromOrigin);
1211  }
1212  }
1213  return true;
1214 }
1215 //--------------------------------------------------------------------------------
#define LogDebug(id)
RunNumber_t run() const
Definition: EventID.h:39
uint8_t maxCharge() const
double p() const
momentum vector magnitude
Definition: TrackBase.h:610
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:41
Det2MEs findMEs(const TrackerTopology *tTopo, const uint32_t detid)
int i
Definition: DBlmapReader.cc:9
MonitorElement * ClusterChargePerCMfromTrack
boost::transform_iterator< IterHelp, const_IdIter > const_iterator
TkHistoMap * tkhisto_NumOffTrack
SiStripMonitorTrack(const edm::ParameterSet &)
void setSiStripFolderName(std::string name)
virtual void analyze(const edm::Event &, const edm::EventSetup &)
void trackStudy(const edm::Event &ev, const edm::EventSetup &es)
void trackStudyFromTrack(edm::Handle< reco::TrackCollection > trackCollectionHandle, const edm::EventSetup &es)
edm::EDGetTokenT< reco::TrackCollection > trackToken_
void trackStudyFromTrajectory(edm::Handle< TrajTrackAssociationCollection > TItkAssociatorCollection, const edm::EventSetup &es)
const GeomDetUnit * monoDet() const
Definition: GluedGeomDet.h:20
void fillME(MonitorElement *ME, float value1)
std::pair< const std::string, const char * > getSubDetFolderAndTag(const uint32_t &detid, const TrackerTopology *tTopo)
SiStripDCSStatus * dcsStatus_
double normalizedChi2() const
chi-squared divided by n.d.o.f. (or chi-squared * 1e6 if n.d.o.f. is zero)
Definition: TrackBase.h:556
MonitorElement * bookProfile(Args &&...args)
Definition: DQMStore.h:157
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
float noiseRescaledByGain() const
void book(DQMStore::IBooker &, const TrackerTopology *tTopo)
void AllClusters(const edm::Event &ev, const edm::EventSetup &es)
std::map< std::string, RingMEs > RingMEsMap
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
Definition: GeomDet.h:52
float chargePerCM(DetId detid, Iter a, Iter b)
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
float baryStrip() const
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
edm::ParameterSet conf_
T y() const
Definition: PV3DBase.h:63
LocalPoint toLocal(const GlobalPoint &gp) const
Conversion to the R.F. of the GeomDet.
Definition: GeomDet.h:67
std::pair< std::string, int32_t > GetSubDetAndLayer(const uint32_t &detid, const TrackerTopology *tTopo, bool ring_flag=0)
MonitorElement * bookME1D(DQMStore::IBooker &, const char *, const char *)
#define NULL
Definition: scimark2.h:8
MonitorElement * ClusterChargePerCMfromTrack
bool ev
MonitorElement * ClusterChargeCorrOnTrack
Provides a code based selection for trigger and DCS information in order to have no failing filters i...
data_type const * const_iterator
Definition: DetSetNew.h:30
bool trackFilter(const reco::Track &track)
key_type key() const
Accessor for product key.
Definition: Ref.h:264
edm::ESHandle< SiStripDetCabling > SiStripDetCabling_
void bookLayerMEs(DQMStore::IBooker &, const uint32_t, std::string &)
uint16_t maxIndex() const
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
MonitorElement * ClusterChargePerCMfromOriginOffTrack
auto stripCharges() const -> decltype(cluster() ->amplitudes())
void setDetectorFolder(uint32_t rawdetid, const TrackerTopology *tTopo)
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
LocalVector localMomentum() const
edm::ESHandle< TrackerGeometry > tkgeom_
bool getStatus(edm::Event const &e, edm::EventSetup const &eSetup)
edmNew::DetSet< SiStripCluster >::const_iterator ClusIter
math::XYZTLorentzVectorD LV
float signalOverNoise() const
T mag() const
Definition: PV3DBase.h:67
vector< ParameterSet > Parameters
edm::EventNumber_t eventNb
TkHistoMap * tkhisto_NumMissingHits
TrackingRecHit::ConstRecHitPointer ConstRecHitPointer
uint16_t charge() const
std::unordered_set< const SiStripCluster * > vPSiStripCluster
std::map< std::string, SubDetMEs > SubDetMEsMap
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
void fill(uint32_t &detid, float value)
Definition: TkHistoMap.cc:180
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:616
const std::string subdet_tag("SubDet")
T z() const
Definition: PV3DBase.h:64
MonitorElement * bookME2D(DQMStore::IBooker &, const char *, const char *)
uint16_t width() const
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
void tag(MonitorElement *, unsigned int)
Definition: DQMStore.cc:285
TH1 * getTH1(void) const
void bookSubDetMEs(DQMStore::IBooker &, std::string &name)
MonitorElement * bookME3D(DQMStore::IBooker &, const char *, const char *)
int orbitNumber() const
Definition: EventBase.h:66
MonitorElement * ClusterChargePerCMfromOrigin
MonitorElement * ClusterChargePerCMfromOriginOffTrack
SiStripFolderOrganizer folderOrganizer_
std::string getSubdetid(uint32_t id, const TrackerTopology *tTopo, bool flag_ring)
MonitorElement * ClusterChargePerCMfromTrack
bool isValid() const
Definition: HandleBase.h:75
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
#define LogTrace(id)
SiStripRecHit2D originalHit() const
Detector identifier class for the strip tracker.
Definition: SiStripDetId.h:17
Definition: DetId.h:18
edm::EDGetTokenT< TrajTrackAssociationCollection > trackTrajToken_
void bookModMEs(DQMStore::IBooker &, const uint32_t)
tuple trackCollection
TkHistoMap * tkhisto_NumberInactiveHits
void setLayerFolder(uint32_t rawdetid, const TrackerTopology *tTopo, int32_t layer=0, bool ring_flag=0)
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:273
TkHistoMap * tkhisto_ClChPerCMfromOrigin
SiStripRecHit2D stereoHit() const
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
void hitStudy(const edm::EventSetup &es, const ProjectedSiStripRecHit2D *projhit, const SiStripMatchedRecHit2D *matchedhit, const SiStripRecHit2D *hit2D, const SiStripRecHit1D *hit1D, LocalVector localMomentum, const bool track_ok)
const HitPattern & hitPattern() const
Access the hit pattern, indicating in which Tracker layers the track has hits.
Definition: TrackBase.h:445
std::string createHistoId(std::string description, std::string id_type, uint32_t component_id)
MonitorElement * ClusterChargePerCMfromTrack
const T & get() const
Definition: EventSetup.h:56
T const * product() const
Definition: ESHandle.h:86
bool clusterInfos(SiStripClusterInfo *cluster, const uint32_t detid, enum ClusterFlags flags, bool track_ok, LocalVector LV, const Det2MEs &MEs)
void dqmBeginRun(const edm::Run &run, const edm::EventSetup &es)
std::map< std::string, ModMEs > ModMEsMap
MonitorElement * bookMETrend(DQMStore::IBooker &, const char *)
TkHistoMap * tkhisto_ClChPerCMfromTrack
std::string HistoName
int numberOfValidTrackerHits() const
Definition: HitPattern.h:828
TkHistoMap * tkhisto_NumOnTrack
SiStripRecHit2D monoHit() const
uint32_t detId() const
GenericTriggerEventFlag * genTriggerEventFlag_
MonitorElement * ClusterChargePerCMfromOriginOnTrack
edm::EventID id() const
Definition: EventBase.h:59
MonitorElement * handleBookMEs(DQMStore::IBooker &, std::string &, std::string &, std::string &, std::string &)
static int position[264][3]
Definition: ReadPGInfo.cc:509
MonitorElement * bookMEProfile(DQMStore::IBooker &, const char *, const char *)
TkHistoMap * tkhisto_StoNCorrOnTrack
DetId geographicalId() const
void initRun(const edm::Run &run, const edm::EventSetup &setup)
To be called from beginRun() methods.
MonitorElement * ClusterChargePerCMfromOriginOnTrack
std::string createHistoLayer(std::string description, std::string id_type, std::string path, std::string flag)
Detector det() const
get the detector field from this detid
Definition: DetId.h:35
MonitorElement * book3D(Args &&...args)
Definition: DQMStore.h:151
long double T
T x() const
Definition: PV3DBase.h:62
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
void bookRingMEs(DQMStore::IBooker &, const uint32_t, std::string &)
MonitorElement * ClusterChargePerCMfromOriginOnTrack
void trajectoryStudy(const edm::Ref< std::vector< Trajectory > > traj, const edm::EventSetup &es, bool track_ok)
void add(uint32_t &detid, float value)
Definition: TkHistoMap.cc:213
TkHistoMap * tkhisto_NumberValidHits
const GeomDetUnit * stereoDet() const
Definition: GluedGeomDet.h:21
TrackingRecHitCollection::base::const_iterator trackingRecHit_iterator
iterator over a vector of reference to TrackingRecHit in the same collection
Definition: Run.h:43
void RecHitInfo(const T *tkrecHit, LocalVector LV, const edm::EventSetup &, bool ok)
edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusterToken_
std::map< std::string, LayerMEs > LayerMEsMap
MonitorElement * ClusterChargePerCMfromOriginOffTrack