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  for (std::map<std::string, SubDetMEs>::iterator iSubDet = SubDetMEsMap.begin();
124  iSubDet != SubDetMEsMap.end(); iSubDet++) {
125  SubDetMEs subdet_mes = iSubDet->second;
126  if (subdet_mes.totNClustersOnTrack > 0) {
127  fillME(subdet_mes.nClustersOnTrack, subdet_mes.totNClustersOnTrack);
128  }
129  fillME(subdet_mes.nClustersOffTrack, subdet_mes.totNClustersOffTrack);
130  if (Trend_On_) {
133  }
134  }
135 }
136 
137 //------------------------------------------------------------------------
139 {
140 
141  SiStripFolderOrganizer folder_organizer;
142  folder_organizer.setSiStripFolderName(topFolderName_);
143  //******** TkHistoMaps
144  if (TkHistoMap_On_) {
145  tkhisto_StoNCorrOnTrack = new TkHistoMap(ibooker , topFolderName_ ,"TkHMap_StoNCorrOnTrack", 0.0,true);
146  tkhisto_NumOnTrack = new TkHistoMap(ibooker , topFolderName_, "TkHMap_NumberOfOnTrackCluster", 0.0,true);
147  tkhisto_NumOffTrack = new TkHistoMap(ibooker , topFolderName_, "TkHMap_NumberOfOfffTrackCluster",0.0,true);
148  }
149  //******** TkHistoMaps
150 
151  std::vector<uint32_t> vdetId_;
152  SiStripDetCabling_->addActiveDetectorsRawIds(vdetId_);
153  //Histos for each detector, layer and module
154  for (std::vector<uint32_t>::const_iterator detid_iter=vdetId_.begin();detid_iter!=vdetId_.end();detid_iter++){ //loop on all the active detid
155  uint32_t detid = *detid_iter;
156 
157  if (detid < 1){
158  edm::LogError("SiStripMonitorTrack")<< "[" <<__PRETTY_FUNCTION__ << "] invalid detid " << detid<< std::endl;
159  continue;
160  }
161 
162 
164 
165  // book Layer and RING plots
166  std::pair<std::string,int32_t> det_layer_pair = folder_organizer.GetSubDetAndLayer(detid,tTopo,false);
167  /*
168  std::string thickness;
169  std::pair<std::string,int32_t> det_layer_pair_test = folder_organizer.GetSubDetAndLayerThickness(detid,tTopo,thickness);
170  std::cout << "[SiStripMonitorTrack::book] det_layer_pair " << det_layer_pair.first << " " << det_layer_pair.second << " " << thickness << std::endl;
171  */
172 
173  SiStripHistoId hidmanager;
174  std::string layer_id = hidmanager.getSubdetid(detid, tTopo, false);
175 
176  std::map<std::string, LayerMEs>::iterator iLayerME = LayerMEsMap.find(layer_id);
177  if(iLayerME==LayerMEsMap.end()){
178  folder_organizer.setLayerFolder(detid, tTopo, det_layer_pair.second, false);
179  bookLayerMEs(ibooker , detid, layer_id);
180  }
181 
182  std::string subdet = det_layer_pair.first;
183  if ( subdet.find("TEC") != std::string::npos || subdet.find("TID") != std::string::npos ) {
184  std::pair<std::string,int32_t> det_ring_pair = folder_organizer.GetSubDetAndLayer(detid,tTopo,true);
185  std::string ring_id = hidmanager.getSubdetid(detid, tTopo, true);
186  std::map<std::string, RingMEs>::iterator iRingME = RingMEsMap.find(ring_id);
187  if(iRingME==RingMEsMap.end()){
188  folder_organizer.setLayerFolder(detid, tTopo, det_ring_pair.second, true);
189  bookRingMEs(ibooker , detid, ring_id);
190  }
191  }
192 
193  // book sub-detector plots
194  std::pair<std::string,std::string> sdet_pair = folder_organizer.getSubDetFolderAndTag(detid, tTopo);
195  if (SubDetMEsMap.find(sdet_pair.second) == SubDetMEsMap.end()){
196  ibooker.setCurrentFolder(sdet_pair.first);
197  bookSubDetMEs(ibooker , sdet_pair.second);
198  }
199  // book module plots
200  if(Mod_On_) {
201  folder_organizer.setDetectorFolder(detid,tTopo);
202  bookModMEs(ibooker , *detid_iter);
203  }
204  }//end loop on detectors detid
205 }
206 
207 //--------------------------------------------------------------------------------
208 void SiStripMonitorTrack::bookModMEs(DQMStore::IBooker & ibooker , const uint32_t id)//Histograms at MODULE level
209 {
210  std::string name = "det";
211  SiStripHistoId hidmanager;
212  std::string hid = hidmanager.createHistoId("",name,id);
213  std::map<std::string, ModMEs>::iterator iModME = ModMEsMap.find(hid);
214  if(iModME==ModMEsMap.end()){
215  ModMEs theModMEs;
216  theModMEs.ClusterStoNCorr = 0;
217  theModMEs.ClusterCharge = 0;
218  theModMEs.ClusterChargeCorr = 0;
219  theModMEs.ClusterWidth = 0;
220  theModMEs.ClusterPos = 0;
221  theModMEs.ClusterPGV = 0;
222  theModMEs.ClusterChargePerCMfromTrack = 0;
223  theModMEs.ClusterChargePerCMfromOrigin = 0;
224 
225  // Cluster Width
226  theModMEs.ClusterWidth=bookME1D(ibooker , "TH1ClusterWidth", hidmanager.createHistoId("ClusterWidth_OnTrack",name,id).c_str());
227  ibooker.tag(theModMEs.ClusterWidth,id);
228  // Cluster Charge
229  theModMEs.ClusterCharge=bookME1D(ibooker , "TH1ClusterCharge", hidmanager.createHistoId("ClusterCharge_OnTrack",name,id).c_str());
230  ibooker.tag(theModMEs.ClusterCharge,id);
231  // Cluster Charge Corrected
232  theModMEs.ClusterChargeCorr=bookME1D(ibooker , "TH1ClusterChargeCorr", hidmanager.createHistoId("ClusterChargeCorr_OnTrack",name,id).c_str());
233  ibooker.tag(theModMEs.ClusterChargeCorr,id);
234  // Cluster StoN Corrected
235  theModMEs.ClusterStoNCorr=bookME1D(ibooker , "TH1ClusterStoNCorrMod", hidmanager.createHistoId("ClusterStoNCorr_OnTrack",name,id).c_str());
236  ibooker.tag(theModMEs.ClusterStoNCorr,id);
237  // Cluster Position
238  short total_nr_strips = SiStripDetCabling_->nApvPairs(id) * 2 * 128;
239  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);
240  ibooker.tag(theModMEs.ClusterPos,id);
241  // Cluster PGV
242  theModMEs.ClusterPGV=bookMEProfile(ibooker , "TProfileClusterPGV", hidmanager.createHistoId("PGV_OnTrack",name,id).c_str());
243  ibooker.tag(theModMEs.ClusterPGV,id);
244  // Cluster Charge per cm
245  theModMEs.ClusterChargePerCMfromTrack = bookME1D(ibooker , "TH1ClusterChargePerCM", hidmanager.createHistoId("ClusterChargePerCMfromTrack",name,id).c_str());
246  ibooker.tag(theModMEs.ClusterChargePerCMfromTrack,id);
247 
248  theModMEs.ClusterChargePerCMfromOrigin = bookME1D(ibooker , "TH1ClusterChargePerCM", hidmanager.createHistoId("ClusterChargePerCMfromOrigin",name,id).c_str());
249  ibooker.tag(theModMEs.ClusterChargePerCMfromOrigin,id);
250 
251  ModMEsMap[hid]=theModMEs;
252  }
253 }
254 
256 
257  MonitorElement* me = NULL;
258  bool view = false;
259  view = (conf_.getParameter<edm::ParameterSet>(histoParameters.c_str())).getParameter<bool>(viewParameter.c_str());
260  if ( id.find("TEC") == std::string::npos && id.find("TID") == std::string::npos ) {
261  me = bookME1D(ibooker , histoParameters.c_str(), histoName.c_str());
262  } else {
263  if (view) {
264  // histoName = histoName + "__" + thickness;
265  me = bookME1D(ibooker , histoParameters.c_str(), histoName.c_str());
266  }
267  }
268  return me;
269 }
270 
271 //
272 // -- Book Layer Level Histograms and Trend plots
273 //
274 //------------------------------------------------------------------------
275 void SiStripMonitorTrack::bookLayerMEs(DQMStore::IBooker & ibooker , const uint32_t mod_id, std::string& layer_id)
276 {
277  std::string name = "layer";
278  std::string view = "layerView";
279  std::string hname;
280  std::string hpar;
281  SiStripHistoId hidmanager;
282 
283  LayerMEs theLayerMEs;
284  theLayerMEs.ClusterStoNCorrOnTrack = 0;
285  theLayerMEs.ClusterChargeCorrOnTrack = 0;
286  theLayerMEs.ClusterChargeOnTrack = 0;
287  theLayerMEs.ClusterChargeOffTrack = 0;
288  theLayerMEs.ClusterNoiseOnTrack = 0;
289  theLayerMEs.ClusterNoiseOffTrack = 0;
290  theLayerMEs.ClusterWidthOnTrack = 0;
291  theLayerMEs.ClusterWidthOffTrack = 0;
292  theLayerMEs.ClusterPosOnTrack = 0;
293  theLayerMEs.ClusterPosOffTrack = 0;
294  theLayerMEs.ClusterChargePerCMfromTrack = 0;
295  theLayerMEs.ClusterChargePerCMfromOriginOnTrack = 0;
296  theLayerMEs.ClusterChargePerCMfromOriginOffTrack = 0;
297 
298  // Signal/Noise (w/ cluster charge corrected)
299  hname = hidmanager.createHistoLayer("Summary_ClusterStoNCorr",name,layer_id,"OnTrack");
300  hpar = "TH1ClusterStoNCorr";
301  theLayerMEs.ClusterStoNCorrOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
302 
303  // Cluster Charge Corrected
304  hname = hidmanager.createHistoLayer("Summary_ClusterChargeCorr",name,layer_id,"OnTrack");
305  hpar = "TH1ClusterChargeCorr";
306  theLayerMEs.ClusterChargeCorrOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
307 
308  // Cluster Charge (On and Off Track)
309  hname = hidmanager.createHistoLayer("Summary_ClusterCharge",name,layer_id,"OnTrack");
310  hpar = "TH1ClusterCharge";
311  theLayerMEs.ClusterChargeOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
312 
313  hname = hidmanager.createHistoLayer("Summary_ClusterCharge",name,layer_id,"OffTrack");
314  hpar = "TH1ClusterCharge";
315  theLayerMEs.ClusterChargeOffTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
316 
317  // Cluster Noise (On and Off Track)
318  hname = hidmanager.createHistoLayer("Summary_ClusterNoise",name,layer_id,"OnTrack");
319  hpar = "TH1ClusterNoise";
320  theLayerMEs.ClusterNoiseOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
321 
322  hname = hidmanager.createHistoLayer("Summary_ClusterNoise",name,layer_id,"OffTrack");
323  hpar = "TH1ClusterNoise";
324  theLayerMEs.ClusterNoiseOffTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
325 
326  // Cluster Width (On and Off Track)
327  hname = hidmanager.createHistoLayer("Summary_ClusterWidth",name,layer_id,"OnTrack");
328  hpar = "TH1ClusterWidth";
329  theLayerMEs.ClusterWidthOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
330 
331  hname = hidmanager.createHistoLayer("Summary_ClusterWidth",name,layer_id,"OffTrack");
332  hpar = "TH1ClusterWidth";
333  theLayerMEs.ClusterWidthOffTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
334 
335  //Cluster Position
336  short total_nr_strips = SiStripDetCabling_->nApvPairs(mod_id) * 2 * 128;
337  if (layer_id.find("TEC") != std::string::npos) total_nr_strips = 3 * 2 * 128;
338 
339  hname = hidmanager.createHistoLayer("Summary_ClusterPosition",name,layer_id,"OnTrack");
340  theLayerMEs.ClusterPosOnTrack = ibooker.book1D(hname, hname, total_nr_strips, 0.5,total_nr_strips+0.5);
341 
342  hname = hidmanager.createHistoLayer("Summary_ClusterPosition",name,layer_id,"OffTrack");
343  theLayerMEs.ClusterPosOffTrack = ibooker.book1D(hname, hname, total_nr_strips, 0.5,total_nr_strips+0.5);
344 
345  // dQ/dx
346  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromTrack",name,layer_id,"");
347  hpar = "TH1ClusterChargePerCM";
348  theLayerMEs.ClusterChargePerCMfromTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
349 
350  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromOrigin",name,layer_id,"OnTrack");
351  hpar = "TH1ClusterChargePerCM";
352  theLayerMEs.ClusterChargePerCMfromOriginOnTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
353 
354  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromOrigin",name,layer_id,"OffTrack");
355  hpar = "TH1ClusterChargePerCM";
356  theLayerMEs.ClusterChargePerCMfromOriginOffTrack = handleBookMEs(ibooker,view,layer_id,hpar,hname);
357 
358  //bookeeping
359  LayerMEsMap[layer_id]=theLayerMEs;
360 
361 }
362 
364 {
365 
366  std::string name = "ring";
367  std::string view = "ringView";
368  std::string hname;
369  std::string hpar;
370  SiStripHistoId hidmanager;
371 
372  RingMEs theRingMEs;
373  theRingMEs.ClusterStoNCorrOnTrack = 0;
374  theRingMEs.ClusterChargeCorrOnTrack = 0;
375  theRingMEs.ClusterChargeOnTrack = 0;
376  theRingMEs.ClusterChargeOffTrack = 0;
377  theRingMEs.ClusterNoiseOnTrack = 0;
378  theRingMEs.ClusterNoiseOffTrack = 0;
379  theRingMEs.ClusterWidthOnTrack = 0;
380  theRingMEs.ClusterWidthOffTrack = 0;
381  theRingMEs.ClusterChargePerCMfromTrack = 0;
384 
385  hname = hidmanager.createHistoLayer("Summary_ClusterStoNCorr",name,ring_id,"OnTrack");
386  hpar = "TH1ClusterStoNCorr";
387  theRingMEs.ClusterStoNCorrOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
388 
389  // Cluster Charge Corrected
390  hname = hidmanager.createHistoLayer("Summary_ClusterChargeCorr",name,ring_id,"OnTrack");
391  hpar = "TH1ClusterChargeCorr";
392  theRingMEs.ClusterChargeCorrOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
393 
394  // Cluster Charge (On and Off Track)
395  hname = hidmanager.createHistoLayer("Summary_ClusterCharge",name,ring_id,"OnTrack");
396  hpar = "TH1ClusterCharge";
397  theRingMEs.ClusterChargeOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
398 
399  hname = hidmanager.createHistoLayer("Summary_ClusterCharge",name,ring_id,"OffTrack");
400  hpar = "TH1ClusterCharge";
401  theRingMEs.ClusterChargeOffTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
402 
403  // Cluster Noise (On and Off Track)
404  hname = hidmanager.createHistoLayer("Summary_ClusterNoise",name,ring_id,"OnTrack");
405  hpar = "TH1ClusterNoise";
406  theRingMEs.ClusterNoiseOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
407 
408  hname = hidmanager.createHistoLayer("Summary_ClusterNoise",name,ring_id,"OffTrack");
409  hpar = "TH1ClusterNoise";
410  theRingMEs.ClusterNoiseOffTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
411 
412  // Cluster Width (On and Off Track)
413  hname = hidmanager.createHistoLayer("Summary_ClusterWidth",name,ring_id,"OnTrack");
414  hpar = "TH1ClusterWidth";
415  theRingMEs.ClusterWidthOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
416 
417  hname = hidmanager.createHistoLayer("Summary_ClusterWidth",name,ring_id,"OffTrack");
418  hpar = "TH1ClusterWidth";
419  theRingMEs.ClusterWidthOffTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
420 
421  // dQ/dx
422  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromTrack",name,ring_id,"");
423  hpar = "TH1ClusterChargePerCM";
424  theRingMEs.ClusterChargePerCMfromTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
425 
426  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromOrigin",name,ring_id,"OnTrack");
427  hpar = "TH1ClusterChargePerCM";
428  theRingMEs.ClusterChargePerCMfromOriginOnTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
429 
430  hname = hidmanager.createHistoLayer("Summary_ClusterChargePerCMfromOrigin",name,ring_id,"OffTrack");
431  hpar = "TH1ClusterChargePerCM";
432  theRingMEs.ClusterChargePerCMfromOriginOffTrack = handleBookMEs(ibooker,view,ring_id,hpar,hname);
433 
434  //bookeeping
435  RingMEsMap[ring_id]=theRingMEs;
436 
437 }
438 //------------------------------------------------------------------------
439 //
440 // -- Book Histograms at Sub-Detector Level
441 //
443 
445  subdet_tag = "__" + name;
446  std::string completeName;
447 
448  SubDetMEs theSubDetMEs;
449  theSubDetMEs.totNClustersOnTrack = 0;
450  theSubDetMEs.totNClustersOffTrack = 0;
451  theSubDetMEs.nClustersOnTrack = 0;
452  theSubDetMEs.nClustersTrendOnTrack = 0;
453  theSubDetMEs.nClustersOffTrack = 0;
454  theSubDetMEs.nClustersTrendOffTrack = 0;
455  theSubDetMEs.ClusterStoNCorrOnTrack = 0;
456  theSubDetMEs.ClusterChargeOnTrack = 0;
457  theSubDetMEs.ClusterChargeOffTrack = 0;
458  theSubDetMEs.ClusterStoNOffTrack = 0;
459  theSubDetMEs.ClusterChargePerCMfromTrack = 0;
460  theSubDetMEs.ClusterChargePerCMfromOriginOnTrack = 0;
461  theSubDetMEs.ClusterChargePerCMfromOriginOffTrack = 0;
462 
463  // TotalNumber of Cluster OnTrack
464  completeName = "Summary_TotalNumberOfClusters_OnTrack" + subdet_tag;
465  theSubDetMEs.nClustersOnTrack = bookME1D(ibooker , "TH1nClustersOn", completeName.c_str());
466  theSubDetMEs.nClustersOnTrack->getTH1()->StatOverflows(kTRUE);
467 
468  // TotalNumber of Cluster OffTrack
469  completeName = "Summary_TotalNumberOfClusters_OffTrack" + subdet_tag;
470  theSubDetMEs.nClustersOffTrack = bookME1D(ibooker , "TH1nClustersOff", completeName.c_str());
471  theSubDetMEs.nClustersOffTrack->getTH1()->StatOverflows(kTRUE);
472 
473  // Cluster StoN On Track
474  completeName = "Summary_ClusterStoNCorr_OnTrack" + subdet_tag;
475  theSubDetMEs.ClusterStoNCorrOnTrack = bookME1D(ibooker , "TH1ClusterStoNCorr", completeName.c_str());
476 
477  // Cluster Charge On Track
478  completeName = "Summary_ClusterCharge_OnTrack" + subdet_tag;
479  theSubDetMEs.ClusterChargeOnTrack=bookME1D(ibooker , "TH1ClusterCharge", completeName.c_str());
480 
481  // Cluster Charge Off Track
482  completeName = "Summary_ClusterCharge_OffTrack" + subdet_tag;
483  theSubDetMEs.ClusterChargeOffTrack=bookME1D(ibooker , "TH1ClusterCharge", completeName.c_str());
484 
485  // Cluster Charge StoN Off Track
486  completeName = "Summary_ClusterStoN_OffTrack" + subdet_tag;
487  theSubDetMEs.ClusterStoNOffTrack = bookME1D(ibooker , "TH1ClusterStoN", completeName.c_str());
488 
489  // cluster charge per cm on track
490  completeName = "Summary_ClusterChargePerCMfromTrack" + subdet_tag;
491  theSubDetMEs.ClusterChargePerCMfromTrack=bookME1D(ibooker , "TH1ClusterChargePerCM", completeName.c_str());
492 
493  // cluster charge per cm on track
494  completeName = "Summary_ClusterChargePerCMfromOrigin_OnTrack" + subdet_tag;
495  theSubDetMEs.ClusterChargePerCMfromOriginOnTrack=bookME1D(ibooker , "TH1ClusterChargePerCM", completeName.c_str());
496 
497  // cluster charge per cm off track
498  completeName = "Summary_ClusterChargePerCMfromOrigin_OffTrack" + subdet_tag;
499  theSubDetMEs.ClusterChargePerCMfromOriginOffTrack=bookME1D(ibooker , "TH1ClusterChargePerCM", completeName.c_str());
500 
501  if(Trend_On_){
502  // TotalNumber of Cluster
503  completeName = "Trend_TotalNumberOfClusters_OnTrack" + subdet_tag;
504  theSubDetMEs.nClustersTrendOnTrack = bookMETrend(ibooker , completeName.c_str());
505  completeName = "Trend_TotalNumberOfClusters_OffTrack" + subdet_tag;
506  theSubDetMEs.nClustersTrendOffTrack = bookMETrend(ibooker , completeName.c_str());
507  }
508 
509  //bookeeping
510  SubDetMEsMap[name]=theSubDetMEs;
511 
512 }
513 //--------------------------------------------------------------------------------
514 
515 MonitorElement* SiStripMonitorTrack::bookME1D(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName)
516 {
517  Parameters = conf_.getParameter<edm::ParameterSet>(ParameterSetLabel);
518  return ibooker.book1D(HistoName,HistoName,
519  Parameters.getParameter<int32_t>("Nbinx"),
520  Parameters.getParameter<double>("xmin"),
521  Parameters.getParameter<double>("xmax")
522  );
523 }
524 
525 //--------------------------------------------------------------------------------
526 MonitorElement* SiStripMonitorTrack::bookME2D(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName)
527 {
528  Parameters = conf_.getParameter<edm::ParameterSet>(ParameterSetLabel);
529  return ibooker.book2D(HistoName,HistoName,
530  Parameters.getParameter<int32_t>("Nbinx"),
531  Parameters.getParameter<double>("xmin"),
532  Parameters.getParameter<double>("xmax"),
533  Parameters.getParameter<int32_t>("Nbiny"),
534  Parameters.getParameter<double>("ymin"),
535  Parameters.getParameter<double>("ymax")
536  );
537 }
538 
539 //--------------------------------------------------------------------------------
540 MonitorElement* SiStripMonitorTrack::bookME3D(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName)
541 {
542  Parameters = conf_.getParameter<edm::ParameterSet>(ParameterSetLabel);
543  return ibooker.book3D(HistoName,HistoName,
544  Parameters.getParameter<int32_t>("Nbinx"),
545  Parameters.getParameter<double>("xmin"),
546  Parameters.getParameter<double>("xmax"),
547  Parameters.getParameter<int32_t>("Nbiny"),
548  Parameters.getParameter<double>("ymin"),
549  Parameters.getParameter<double>("ymax"),
550  Parameters.getParameter<int32_t>("Nbinz"),
551  Parameters.getParameter<double>("zmin"),
552  Parameters.getParameter<double>("zmax")
553  );
554 }
555 
556 //--------------------------------------------------------------------------------
557 MonitorElement* SiStripMonitorTrack::bookMEProfile(DQMStore::IBooker & ibooker , const char* ParameterSetLabel, const char* HistoName)
558 {
559  Parameters = conf_.getParameter<edm::ParameterSet>(ParameterSetLabel);
560  return ibooker.bookProfile(HistoName,HistoName,
561  Parameters.getParameter<int32_t>("Nbinx"),
562  Parameters.getParameter<double>("xmin"),
563  Parameters.getParameter<double>("xmax"),
564  Parameters.getParameter<int32_t>("Nbiny"),
565  Parameters.getParameter<double>("ymin"),
566  Parameters.getParameter<double>("ymax"),
567  "" );
568 }
569 
570 //--------------------------------------------------------------------------------
572 {
573  edm::ParameterSet ParametersTrend = conf_.getParameter<edm::ParameterSet>("Trending");
574  MonitorElement* me = ibooker.bookProfile(HistoName,HistoName,
575  ParametersTrend.getParameter<int32_t>("Nbins"),
576  ParametersTrend.getParameter<double>("xmin"),
577  ParametersTrend.getParameter<double>("xmax"),
578  0 , 0 , "" );
579  if (me->kind() == MonitorElement::DQM_KIND_TPROFILE) me->getTH1()->SetCanExtend(TH1::kAllAxes);
580 
581  if(!me) return me;
582  me->setAxisTitle("Lumisection",1);
583  return me;
584 }
585 
586 //------------------------------------------------------------------------------------------
587 void SiStripMonitorTrack::trajectoryStudy(const edm::Ref<std::vector<Trajectory> > traj, const edm::EventSetup& es) {
588 
589 
590  const std::vector<TrajectoryMeasurement> & measurements = traj->measurements();
591  std::vector<TrajectoryMeasurement>::const_iterator traj_mes_iterator;
592  for(std::vector<TrajectoryMeasurement>::const_iterator traj_mes_iterator= measurements.begin(), traj_mes_end=measurements.end();
593  traj_mes_iterator!=traj_mes_end;traj_mes_iterator++){//loop on measurements
594  //trajectory local direction and position on detector
595  LocalVector statedirection;
596 
597  TrajectoryStateOnSurface updatedtsos=traj_mes_iterator->updatedState();
598  ConstRecHitPointer ttrh=traj_mes_iterator->recHit();
599 
600  if (!ttrh->isValid()) continue;
601 
602  const ProjectedSiStripRecHit2D* projhit = dynamic_cast<const ProjectedSiStripRecHit2D*>( ttrh->hit() );
603  const SiStripMatchedRecHit2D* matchedhit = dynamic_cast<const SiStripMatchedRecHit2D*>( ttrh->hit() );
604  const SiStripRecHit2D* hit2D = dynamic_cast<const SiStripRecHit2D*>( ttrh->hit() );
605  const SiStripRecHit1D* hit1D = dynamic_cast<const SiStripRecHit1D*>( ttrh->hit() );
606 
607  // RecHitType type=Single;
608 
609  if(matchedhit){
610  LogTrace("SiStripMonitorTrack")<<"\nMatched recHit found"<< std::endl;
611  // type=Matched;
612 
613  GluedGeomDet * gdet=(GluedGeomDet *)tkgeom_->idToDet(matchedhit->geographicalId());
614  GlobalVector gtrkdirup=gdet->toGlobal(updatedtsos.localMomentum());
615  //mono side
616  const GeomDetUnit * monodet=gdet->monoDet();
617  statedirection=monodet->toLocal(gtrkdirup);
618  SiStripRecHit2D m = matchedhit->monoHit();
619  // if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&m,statedirection,trackref,es);
620  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&m,statedirection,es);
621  //stereo side
622  const GeomDetUnit * stereodet=gdet->stereoDet();
623  statedirection=stereodet->toLocal(gtrkdirup);
624  SiStripRecHit2D s = matchedhit->stereoHit();
625  // if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&s,statedirection,trackref,es);
626  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&s,statedirection,es);
627  }
628  else if(projhit){
629  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found"<< std::endl;
630  // type=Projected;
631  GluedGeomDet * gdet=(GluedGeomDet *)tkgeom_->idToDet(projhit->geographicalId());
632 
633  GlobalVector gtrkdirup=gdet->toGlobal(updatedtsos.localMomentum());
634  const SiStripRecHit2D originalhit=projhit->originalHit();
635  const GeomDetUnit * det;
636  if(!StripSubdetector(originalhit.geographicalId().rawId()).stereo()){
637  //mono side
638  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found MONO"<< std::endl;
639  det=gdet->monoDet();
640  statedirection=det->toLocal(gtrkdirup);
641  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&(originalhit),statedirection,es);
642  }
643  else{
644  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found STEREO"<< std::endl;
645  //stereo side
646  det=gdet->stereoDet();
647  statedirection=det->toLocal(gtrkdirup);
648  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&(originalhit),statedirection,es);
649  }
650  }else if (hit2D){
651  statedirection=updatedtsos.localMomentum();
652  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(hit2D,statedirection,es);
653  } else if (hit1D) {
654  statedirection=updatedtsos.localMomentum();
655  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit1D>(hit1D,statedirection,es);
656  } else {
657  LogDebug ("SiStripMonitorTrack")
658  << " LocalMomentum: "<<statedirection
659  << "\nLocal x-z plane angle: "<<atan2(statedirection.x(),statedirection.z());
660  }
661 
662  }
663 
664 }
665 //------------------------------------------------------------------------
667  const ProjectedSiStripRecHit2D* projhit,
668  const SiStripMatchedRecHit2D* matchedhit,
669  const SiStripRecHit2D* hit2D,
670  const SiStripRecHit1D* hit1D,
671  LocalVector localMomentum
672  ) {
673  LocalVector statedirection;
674  if(matchedhit){ // type=Matched;
675  LogTrace("SiStripMonitorTrack")<<"\nMatched recHit found"<< std::endl;
676 
677  GluedGeomDet * gdet=(GluedGeomDet *)tkgeom_->idToDet(matchedhit->geographicalId());
678 
679  GlobalVector gtrkdirup=gdet->toGlobal(localMomentum);
680 
681  //mono side
682  const GeomDetUnit * monodet=gdet->monoDet();
683  statedirection=monodet->toLocal(gtrkdirup);
684  SiStripRecHit2D m = matchedhit->monoHit();
685  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&m,statedirection,es);
686 
687  //stereo side
688  const GeomDetUnit * stereodet=gdet->stereoDet();
689  statedirection=stereodet->toLocal(gtrkdirup);
690  SiStripRecHit2D s = matchedhit->stereoHit();
691  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&s,statedirection,es);
692  }
693  else if(projhit){ // type=Projected;
694  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found"<< std::endl;
695 
696  GluedGeomDet * gdet=(GluedGeomDet *)tkgeom_->idToDet(projhit->geographicalId());
697 
698  GlobalVector gtrkdirup=gdet->toGlobal(localMomentum);
699  const SiStripRecHit2D originalhit=projhit->originalHit();
700 
701  const GeomDetUnit * det;
702  if(!StripSubdetector(originalhit.geographicalId().rawId()).stereo()){
703  //mono side
704  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found MONO"<< std::endl;
705  det=gdet->monoDet();
706  statedirection=det->toLocal(gtrkdirup);
707  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&(originalhit),statedirection,es);
708  }
709  else{
710  LogTrace("SiStripMonitorTrack")<<"\nProjected recHit found STEREO"<< std::endl;
711  //stereo side
712  det=gdet->stereoDet();
713  statedirection=det->toLocal(gtrkdirup);
714  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(&(originalhit),statedirection,es);
715  }
716  } else if (hit2D){ // type=2D
717  statedirection=localMomentum;
718  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit2D>(hit2D,statedirection,es);
719  } else if (hit1D) { // type=1D
720  statedirection=localMomentum;
721  if(statedirection.mag() != 0) RecHitInfo<SiStripRecHit1D>(hit1D,statedirection,es);
722  } else {
723  LogDebug ("SiStripMonitorTrack")
724  << " LocalMomentum: "<<statedirection
725  << "\nLocal x-z plane angle: "<<atan2(statedirection.x(),statedirection.z());
726  }
727 
728 }
729 //------------------------------------------------------------------------
731 
732 using namespace std;
733 using namespace edm;
734 using namespace reco;
735 
736  // trajectory input
737  edm::Handle<TrajTrackAssociationCollection> TItkAssociatorCollection;
738  ev.getByToken(trackTrajToken_, TItkAssociatorCollection);
739  if( TItkAssociatorCollection.isValid()){
740  trackStudyFromTrajectory(TItkAssociatorCollection,es);
741  } else {
742  edm::LogError("SiStripMonitorTrack")<<"Association not found ... try w/ track collection"<<std::endl;
743 
744  // edm::Handle<std::vector<Trajectory> > trajectories;
745  // ev.getByToken(trajectoryToken_, trajectories);
746 
747  // track input
748  edm::Handle<reco::TrackCollection > trackCollectionHandle;
749  ev.getByToken(trackToken_, trackCollectionHandle);//takes the track collection
750  if (!trackCollectionHandle.isValid()){
751  edm::LogError("SiStripMonitorTrack")<<"also Track Collection is not valid !! " << TrackLabel_<<std::endl;
752  return;
753  } else {
754  trackStudyFromTrack(trackCollectionHandle,es);
755  }
756  }
757 
758 }
759 //------------------------------------------------------------------------
761 
762  // edm::ESHandle<TransientTrackBuilder> builder;
763  // es.get<TransientTrackRecord>().get("TransientTrackBuilder",builder);
764  // const TransientTrackBuilder* transientTrackBuilder = builder.product();
765 
766  reco::TrackCollection trackCollection = *trackCollectionHandle;
767  for (reco::TrackCollection::const_iterator track = trackCollection.begin(), etrack = trackCollection.end();
768  track!=etrack; ++track) {
769 
770  // const reco::TransientTrack transientTrack = transientTrackBuilder->build(track);
771 
772 
773  for (trackingRecHit_iterator hit = track->recHitsBegin(), ehit = track->recHitsEnd();
774  hit!=ehit; ++hit) {
775  if (!(*hit)->isValid()) continue;
776  DetId detID = (*hit)->geographicalId();
777  if (detID.det() != DetId::Tracker) continue;
778  const TrackingRecHit* theHit = (*hit);
779  const ProjectedSiStripRecHit2D* projhit = dynamic_cast<const ProjectedSiStripRecHit2D*>( (theHit) );
780  const SiStripMatchedRecHit2D* matchedhit = dynamic_cast<const SiStripMatchedRecHit2D*> ( (theHit) );
781  const SiStripRecHit2D* hit2D = dynamic_cast<const SiStripRecHit2D*> ( (theHit) );
782  const SiStripRecHit1D* hit1D = dynamic_cast<const SiStripRecHit1D*> ( (theHit) );
783 
784  // GlobalPoint globalPoint = hit->globalPosition();
785  // reco::TrajectoryStateOnSurface stateOnSurface = transientTrack->stateOnSurface(globalPoint);
786 
787  LocalVector localMomentum;
788  hitStudy(es,projhit,matchedhit,hit2D,hit1D,localMomentum);
789  }
790 
791 
792 
793  // hit pattern of the track
794  const reco::HitPattern & hitsPattern = track->hitPattern();
795  // loop over the hits of the track
796  // for (int i=0; i<hitsPattern.numberOfHits(); i++) {
797  for (int i=0; i<hitsPattern.numberOfHits(reco::HitPattern::TRACK_HITS); i++) {
798  uint32_t hit = hitsPattern.getHitPattern(reco::HitPattern::TRACK_HITS,i);
799 
800  // if the hit is valid and in pixel barrel, print out the layer
801  if (hitsPattern.validHitFilter(hit) && hitsPattern.pixelBarrelHitFilter(hit))
802 
803  if (!hitsPattern.validHitFilter(hit)) continue;
804 // if (hitsPattern.pixelHitFilter(hit)) std::cout << "pixel" << std::endl; // pixel
805 // if (hitsPattern.pixelBarrelHitFilter(hit)) std::cout << "pixel barrel" << std::endl; // pixel barrel
806 // if (hitsPattern.pixelEndcapHitFilter(hit)) std::cout << "pixel endcap" << std::endl; // pixel endcap
807 // if (hitsPattern.stripHitFilter(hit)) std::cout << "strip" << std::endl; // strip
808 // if (hitsPattern.stripTIBHitFilter(hit)) std::cout << "TIB" << std::endl; // strip TIB
809 // if (hitsPattern.stripTIDHitFilter(hit)) std::cout << "TID" << std::endl; // strip TID
810 // if (hitsPattern.stripTOBHitFilter(hit)) std::cout << "TOB" << std::endl; // strip TOB
811 // if (hitsPattern.stripTECHitFilter(hit)) std::cout << "TEC" << std::endl; // strip TEC
812 // if (hitsPattern.muonDTHitFilter(hit)) std::cout << "DT" << std::endl; // muon DT
813 // if (hitsPattern.muonCSCHitFilter(hit)) std::cout << "CSC" << std::endl; // muon CSC
814 // if (hitsPattern.muonRPCHitFilter(hit)) std::cout << "RPC" << std::endl; // muon RPC
815 //
816 // // expert level: printout the hit in 10-bit binary format
817 // std::cout << "hit in 10-bit binary format = ";
818 // for (int j=9; j>=0; j--) {
819 // int bit = (hit >> j) & 0x1;
820 // std::cout << bit;
821 // }
822 // std::cout << std::endl;
823  }
824  }
825 }
826 //------------------------------------------------------------------------
828  //Perform track study
829  int i=0;
830  for(TrajTrackAssociationCollection::const_iterator it = TItkAssociatorCollection->begin();it != TItkAssociatorCollection->end(); ++it){
831  const edm::Ref<std::vector<Trajectory> > traj_iterator = it->key;
832 
833  // Trajectory Map, extract Trajectory for this track
834  reco::TrackRef trackref = it->val;
835  LogDebug("SiStripMonitorTrack")
836  << "Track number "<< i+1 << std::endl;
837  // << "\n\tmomentum: " << trackref->momentum()
838  // << "\n\tPT: " << trackref->pt()
839  // << "\n\tvertex: " << trackref->vertex()
840  // << "\n\timpact parameter: " << trackref->d0()
841  // << "\n\tcharge: " << trackref->charge()
842  // << "\n\tnormalizedChi2: " << trackref->normalizedChi2()
843  // <<"\n\tFrom EXTRA : "
844  // <<"\n\t\touter PT "<< trackref->outerPt()<<std::endl;
845  i++;
846 
847  // trajectoryStudy(traj_iterator,trackref,es);
848  trajectoryStudy(traj_iterator,es);
849 
850  }
851 }
852 //------------------------------------------------------------------------
853 template <class T> void SiStripMonitorTrack::RecHitInfo(const T* tkrecHit, LocalVector LV, const edm::EventSetup& es){
854 
855  if(!tkrecHit->isValid()){
856  LogTrace("SiStripMonitorTrack") <<"\t\t Invalid Hit " << std::endl;
857  return;
858  }
859 
860  const uint32_t& detid = tkrecHit->geographicalId().rawId();
861 
862  LogTrace("SiStripMonitorTrack")
863  <<"\n\t\tRecHit on det "<<tkrecHit->geographicalId().rawId()
864  <<"\n\t\tRecHit in LP "<<tkrecHit->localPosition()
865  <<"\n\t\tRecHit in GP "<<tkgeom_->idToDet(tkrecHit->geographicalId())->surface().toGlobal(tkrecHit->localPosition())
866  <<"\n\t\tRecHit trackLocal vector "<<LV.x() << " " << LV.y() << " " << LV.z() <<std::endl;
867 
868 
869  //Retrieve tracker topology from geometry
870  edm::ESHandle<TrackerTopology> tTopoHandle;
871  es.get<TrackerTopologyRcd>().get(tTopoHandle);
872  const TrackerTopology* const tTopo = tTopoHandle.product();
873 
874  //Get SiStripCluster from SiStripRecHit
875  if ( tkrecHit != NULL ){
876  const SiStripCluster* SiStripCluster_ = &*(tkrecHit->cluster());
877  SiStripClusterInfo SiStripClusterInfo_(*SiStripCluster_,es,detid);
878 
879  const Det2MEs MEs = findMEs(tTopo, detid);
880  if (clusterInfos(&SiStripClusterInfo_,detid, OnTrack, LV, MEs))
881  {
882  vPSiStripCluster.insert(SiStripCluster_);
883  }
884  }
885  else
886  {
887  edm::LogError("SiStripMonitorTrack") << "NULL hit" << std::endl;
888  }
889  }
890 
891 //------------------------------------------------------------------------
893 {
894 
895  //Retrieve tracker topology from geometry
896  edm::ESHandle<TrackerTopology> tTopoHandle;
897  es.get<TrackerTopologyRcd>().get(tTopoHandle);
898  const TrackerTopology* const tTopo = tTopoHandle.product();
899 
901  ev.getByToken( clusterToken_, siStripClusterHandle);
902  if (!siStripClusterHandle.isValid()){
903  edm::LogError("SiStripMonitorTrack")<< "ClusterCollection is not valid!!" << std::endl;
904  return;
905  }
906  else
907  {
908  //Loop on Dets
909  for (edmNew::DetSetVector<SiStripCluster>::const_iterator DSViter=siStripClusterHandle->begin();
910  DSViter!=siStripClusterHandle->end();
911  DSViter++)
912  {
913  uint32_t detid=DSViter->id();
914  const Det2MEs MEs = findMEs(tTopo, detid);
915 
916  LogDebug("SiStripMonitorTrack") << "on detid "<< detid << " N Cluster= " << DSViter->size();
917 
918  //Loop on Clusters
920  ClusIter!=DSViter->end();
921  ClusIter++)
922  {
923  if (vPSiStripCluster.find(&*ClusIter) == vPSiStripCluster.end())
924  {
925  SiStripClusterInfo SiStripClusterInfo_(*ClusIter,es,detid);
926  clusterInfos(&SiStripClusterInfo_,detid,OffTrack,LV,MEs);
927  }
928  }
929  }
930  }
931 }
932 
933 //------------------------------------------------------------------------
935  SiStripHistoId hidmanager1;
936 
937  std::string layer_id = hidmanager1.getSubdetid(detid, tTopo, false);
938  std::string ring_id = hidmanager1.getSubdetid(detid, tTopo, true);
939  std::string sdet_tag = folderOrganizer_.getSubDetFolderAndTag(detid, tTopo).second;
940 
941  Det2MEs me;
942  me.iLayer = nullptr;
943  me.iRing = nullptr;
944  me.iSubdet = nullptr;
945 
946  std::map<std::string, LayerMEs>::iterator iLayer = LayerMEsMap.find(layer_id);
947  if (iLayer != LayerMEsMap.end()) {
948  me.iLayer = &(iLayer->second);
949  }
950 
951  std::map<std::string, RingMEs>::iterator iRing = RingMEsMap.find(ring_id);
952  if (iRing != RingMEsMap.end()) {
953  me.iRing = &(iRing->second);
954  }
955 
956  std::map<std::string, SubDetMEs>::iterator iSubdet = SubDetMEsMap.find(sdet_tag);
957  if (iSubdet != SubDetMEsMap.end()) {
958  me.iSubdet = &(iSubdet->second);
959  }
960 
961  return me;
962 }
963 
964 //------------------------------------------------------------------------
965 bool SiStripMonitorTrack::clusterInfos(SiStripClusterInfo* cluster, const uint32_t detid, enum ClusterFlags flag, const LocalVector LV, const Det2MEs& MEs)
966 {
967 
968  if (cluster==NULL) return false;
969  // if one imposes a cut on the clusters, apply it
970  if( (applyClusterQuality_) &&
971  (cluster->signalOverNoise() < sToNLowerLimit_ ||
972  cluster->signalOverNoise() > sToNUpperLimit_ ||
973  cluster->width() < widthLowerLimit_ ||
974  cluster->width() > widthUpperLimit_) ) return false;
975  // start of the analysis
976 
977  if (MEs.iSubdet != nullptr) {
978  if (flag == OnTrack) MEs.iSubdet->totNClustersOnTrack++;
979  else if (flag == OffTrack) MEs.iSubdet->totNClustersOffTrack++;
980  }
981 
982  float cosRZ = -2;
983  LogDebug("SiStripMonitorTrack")<< "\n\tLV " << LV.x() << " " << LV.y() << " " << LV.z() << " " << LV.mag() << std::endl;
984  if (LV.mag()!=0){
985  cosRZ= fabs(LV.z())/LV.mag();
986  LogDebug("SiStripMonitorTrack")<< "\n\t cosRZ " << cosRZ << std::endl;
987  }
989 
990  // Filling SubDet/Layer Plots (on Track + off Track)
991  fillMEs(cluster,detid,cosRZ,flag,LV,MEs);
992 
993  //******** TkHistoMaps
994  if (TkHistoMap_On_) {
995  uint32_t adet=cluster->detId();
996  float noise = cluster->noiseRescaledByGain();
997  if(flag==OnTrack){
998  tkhisto_NumOnTrack->add(adet,1.);
999  if(noise > 0.0) tkhisto_StoNCorrOnTrack->fill(adet,cluster->signalOverNoise()*cosRZ);
1000  if(noise == 0.0)
1001  LogDebug("SiStripMonitorTrack") << "Module " << detid << " in Event " << eventNb << " noise " << noise << std::endl;
1002  }
1003  else if(flag==OffTrack){
1004  tkhisto_NumOffTrack->add(adet,1.);
1005  if(cluster->charge() > 250){
1006  LogDebug("SiStripMonitorTrack") << "Module firing " << detid << " in Event " << eventNb << std::endl;
1007  }
1008  }
1009  }
1010 
1011  // Module plots filled only for onTrack Clusters
1012  if(Mod_On_){
1013  if(flag==OnTrack){
1014  SiStripHistoId hidmanager2;
1015  name =hidmanager2.createHistoId("","det",detid);
1016  fillModMEs(cluster,name,cosRZ,detid,LV);
1017  }
1018  }
1019  return true;
1020 }
1022 //--------------------------------------------------------------------------------
1024 {
1025  std::map<std::string, ModMEs>::iterator iModME = ModMEsMap.find(name);
1026  if(iModME!=ModMEsMap.end()){
1027 
1028  float StoN = cluster->signalOverNoise();
1029  uint16_t charge = cluster->charge();
1030  uint16_t width = cluster->width();
1031  float position = cluster->baryStrip();
1032 
1033  // new dE/dx (chargePerCM)
1034  // https://indico.cern.ch/event/342236/session/5/contribution/10/material/slides/0.pdf
1035  float dQdx_fromTrack = siStripClusterTools::chargePerCM(detid, *cluster, LV);
1036  // from straigth line origin-sensor centre
1037  const StripGeomDetUnit* DetUnit = (const StripGeomDetUnit*) tkgeom_->idToDetUnit(DetId(detid));
1038  LocalPoint locVtx = DetUnit->toLocal(GlobalPoint(0.0, 0.0, 0.0));
1039  LocalVector locDir(locVtx.x(), locVtx.y(), locVtx.z());
1040  float dQdx_fromOrigin = siStripClusterTools::chargePerCM(detid, *cluster, locDir);
1041 
1042  float noise = cluster->noiseRescaledByGain();
1043  if(noise > 0.0) fillME(iModME->second.ClusterStoNCorr ,StoN*cos);
1044  if(noise == 0.0) LogDebug("SiStripMonitorTrack") << "Module " << name << " in Event " << eventNb << " noise " << noise << std::endl;
1045  fillME(iModME->second.ClusterCharge,charge);
1046 
1047  fillME(iModME->second.ClusterChargeCorr,charge*cos);
1048 
1049  fillME(iModME->second.ClusterWidth ,width);
1050  fillME(iModME->second.ClusterPos ,position);
1051 
1052  fillME(iModME->second.ClusterChargePerCMfromTrack, dQdx_fromTrack);
1053  fillME(iModME->second.ClusterChargePerCMfromOrigin, dQdx_fromOrigin);
1054 
1055  //fill the PGV histo
1056  float PGVmax = cluster->maxCharge();
1057  int PGVposCounter = cluster->maxIndex();
1058  for (int i= int(conf_.getParameter<edm::ParameterSet>("TProfileClusterPGV").getParameter<double>("xmin"));i<PGVposCounter;++i)
1059  fillME(iModME->second.ClusterPGV, i,0.);
1060  for (auto it=cluster->stripCharges().begin();it<cluster->stripCharges().end();++it) {
1061  fillME(iModME->second.ClusterPGV, PGVposCounter++,(*it)/PGVmax);
1062  }
1063  for (int i= PGVposCounter;i<int(conf_.getParameter<edm::ParameterSet>("TProfileClusterPGV").getParameter<double>("xmax"));++i)
1064  fillME(iModME->second.ClusterPGV, i,0.);
1065  //end fill the PGV histo
1066  }
1067 }
1068 
1069 
1070 //------------------------------------------------------------------------
1071 void SiStripMonitorTrack::fillMEs(SiStripClusterInfo* cluster, const uint32_t detid, float cos, enum ClusterFlags flag, const LocalVector LV, const Det2MEs& MEs)
1072 {
1073  float StoN = cluster->signalOverNoise();
1074  float noise = cluster->noiseRescaledByGain();
1075  uint16_t charge = cluster->charge();
1076  uint16_t width = cluster->width();
1077  float position = cluster->baryStrip();
1078 
1079  // new dE/dx (chargePerCM)
1080  // https://indico.cern.ch/event/342236/session/5/contribution/10/material/slides/0.pdf
1081  float dQdx_fromTrack = siStripClusterTools::chargePerCM(detid, *cluster, LV);
1082  // from straigth line origin-sensor centre
1083  const StripGeomDetUnit* DetUnit = (const StripGeomDetUnit*) tkgeom_->idToDetUnit(DetId(detid));
1084  LocalPoint locVtx = DetUnit->toLocal(GlobalPoint(0.0, 0.0, 0.0));
1085  LocalVector locDir(locVtx.x(), locVtx.y(), locVtx.z());
1086  float dQdx_fromOrigin = siStripClusterTools::chargePerCM(detid, *cluster, locDir);
1087 
1088  // layerMEs
1089  if (MEs.iLayer != nullptr) {
1090  if(flag==OnTrack){
1091  if(noise > 0.0) fillME(MEs.iLayer->ClusterStoNCorrOnTrack, StoN*cos);
1092  if(noise == 0.0) LogDebug("SiStripMonitorTrack") << "Module " << detid << " in Event " << eventNb << " noise " << cluster->noiseRescaledByGain() << std::endl;
1093  fillME(MEs.iLayer->ClusterChargeCorrOnTrack, charge*cos);
1094  fillME(MEs.iLayer->ClusterChargeOnTrack, charge);
1095  fillME(MEs.iLayer->ClusterNoiseOnTrack, noise);
1096  fillME(MEs.iLayer->ClusterWidthOnTrack, width);
1097  fillME(MEs.iLayer->ClusterPosOnTrack, position);
1098  fillME(MEs.iLayer->ClusterChargePerCMfromTrack, dQdx_fromTrack);
1099  fillME(MEs.iLayer->ClusterChargePerCMfromOriginOnTrack, dQdx_fromOrigin);
1100  } else {
1101  fillME(MEs.iLayer->ClusterChargeOffTrack, charge);
1102  fillME(MEs.iLayer->ClusterNoiseOffTrack, noise);
1103  fillME(MEs.iLayer->ClusterWidthOffTrack, width);
1104  fillME(MEs.iLayer->ClusterPosOffTrack, position);
1105  fillME(MEs.iLayer->ClusterChargePerCMfromOriginOffTrack, dQdx_fromOrigin);
1106  }
1107  }
1108 
1109  // ringMEs
1110  if (MEs.iRing != nullptr) {
1111  if(flag==OnTrack){
1112  if(noise > 0.0) fillME(MEs.iRing->ClusterStoNCorrOnTrack, StoN*cos);
1113  if(noise == 0.0) LogDebug("SiStripMonitorTrack") << "Module " << detid << " in Event " << eventNb << " noise " << cluster->noiseRescaledByGain() << std::endl;
1114  fillME(MEs.iRing->ClusterChargeCorrOnTrack, charge*cos);
1115  fillME(MEs.iRing->ClusterChargeOnTrack, charge);
1116  fillME(MEs.iRing->ClusterNoiseOnTrack, noise);
1117  fillME(MEs.iRing->ClusterWidthOnTrack, width);
1118  fillME(MEs.iRing->ClusterChargePerCMfromTrack, dQdx_fromTrack);
1119  fillME(MEs.iRing->ClusterChargePerCMfromOriginOnTrack, dQdx_fromOrigin);
1120  } else {
1121  fillME(MEs.iRing->ClusterChargeOffTrack, charge);
1122  fillME(MEs.iRing->ClusterNoiseOffTrack, noise);
1123  fillME(MEs.iRing->ClusterWidthOffTrack, width);
1124  fillME(MEs.iRing->ClusterChargePerCMfromOriginOffTrack, dQdx_fromOrigin);
1125  }
1126  }
1127  // subdetMEs
1128  if(MEs.iSubdet != nullptr){
1129  if(flag==OnTrack){
1130  fillME(MEs.iSubdet->ClusterChargeOnTrack,charge);
1131  if(noise > 0.0) fillME(MEs.iSubdet->ClusterStoNCorrOnTrack,StoN*cos);
1132  fillME(MEs.iSubdet->ClusterChargePerCMfromTrack,dQdx_fromTrack);
1133  fillME(MEs.iSubdet->ClusterChargePerCMfromOriginOnTrack,dQdx_fromOrigin);
1134  } else {
1135  fillME(MEs.iSubdet->ClusterChargeOffTrack,charge);
1136  if(noise > 0.0) fillME(MEs.iSubdet->ClusterStoNOffTrack,StoN);
1137  fillME(MEs.iSubdet->ClusterChargePerCMfromOriginOffTrack,dQdx_fromOrigin);
1138  }
1139  }
1140 }
#define LogDebug(id)
RunNumber_t run() const
Definition: EventID.h:39
uint8_t maxCharge() const
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
void fillMEs(SiStripClusterInfo *, const uint32_t detid, float, enum ClusterFlags, const LocalVector LV, const Det2MEs &MEs)
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_
MonitorElement * bookProfile(Args &&...args)
Definition: DQMStore.h:157
void hitStudy(const edm::EventSetup &es, const ProjectedSiStripRecHit2D *projhit, const SiStripMatchedRecHit2D *matchedhit, const SiStripRecHit2D *hit2D, const SiStripRecHit1D *hit1D, LocalVector localMomentum)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
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:13
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
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 trajectoryStudy(const edm::Ref< std::vector< Trajectory > > traj, const edm::EventSetup &es)
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
static bool pixelBarrelHitFilter(uint16_t pattern)
Definition: HitPattern.h:516
MonitorElement * ClusterChargePerCMfromOriginOffTrack
auto stripCharges() const -> decltype(cluster() ->amplitudes())
void setDetectorFolder(uint32_t rawdetid, const TrackerTopology *tTopo)
static bool validHitFilter(uint16_t pattern)
Definition: HitPattern.h:698
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
uint16_t hitPattern[ARRAY_LENGTH]
Definition: HitPattern.h:418
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.
const std::string subdet_tag("SubDet")
T z() const
Definition: PV3DBase.h:64
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
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:286
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:67
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)
tuple conf
Definition: dbtoconf.py:185
SiStripRecHit2D originalHit() const
Definition: DetId.h:18
edm::EDGetTokenT< TrajTrackAssociationCollection > trackTrajToken_
void bookModMEs(DQMStore::IBooker &, const uint32_t)
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:274
SiStripRecHit2D stereoHit() const
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
std::string createHistoId(std::string description, std::string id_type, uint32_t component_id)
MonitorElement * ClusterChargePerCMfromTrack
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:86
void dqmBeginRun(const edm::Run &run, const edm::EventSetup &es)
std::map< std::string, ModMEs > ModMEsMap
MonitorElement * bookMETrend(DQMStore::IBooker &, const char *)
std::string HistoName
TkHistoMap * tkhisto_NumOnTrack
SiStripRecHit2D monoHit() const
uint32_t detId() const
GenericTriggerEventFlag * genTriggerEventFlag_
void RecHitInfo(const T *tkrecHit, LocalVector LV, const edm::EventSetup &)
MonitorElement * ClusterChargePerCMfromOriginOnTrack
edm::EventID id() const
Definition: EventBase.h:60
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
bool clusterInfos(SiStripClusterInfo *cluster, const uint32_t detid, enum ClusterFlags flags, LocalVector LV, const Det2MEs &MEs)
std::string createHistoLayer(std::string description, std::string id_type, std::string path, std::string flag)
uint16_t getHitPattern(HitCategory category, int position) const
Definition: HitPattern.h:456
void fillModMEs(SiStripClusterInfo *cluster, std::string name, float cos, const uint32_t detid, const LocalVector LV)
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 bookRingMEs(DQMStore::IBooker &, const uint32_t, std::string &)
MonitorElement * ClusterChargePerCMfromOriginOnTrack
void add(uint32_t &detid, float value)
Definition: TkHistoMap.cc:213
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:41
int numberOfHits(HitCategory category) const
Definition: HitPattern.h:718
edm::EDGetTokenT< edmNew::DetSetVector< SiStripCluster > > clusterToken_
std::map< std::string, LayerMEs > LayerMEsMap
MonitorElement * ClusterChargePerCMfromOriginOffTrack