CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiStripTrackerMapCreator.cc
Go to the documentation of this file.
8 
11 
14 
19 
20 #include <iostream>
21 
22 //
23 // -- Constructor
24 //
25 /*
26 SiStripTrackerMapCreator::SiStripTrackerMapCreator() {
27  trackerMap_ = 0;
28  if(!edm::Service<TkDetMap>().isAvailable()){
29  edm::LogError("TkHistoMap") <<
30  "\n------------------------------------------"
31  "\nUnAvailable Service TkHistoMap: please insert in the configuration file an instance like"
32  "\n\tprocess.TkDetMap = cms.Service(\"TkDetMap\")"
33  "\n------------------------------------------";
34  }
35  tkDetMap_=edm::Service<TkDetMap>().operator->();
36 }
37 */
38 SiStripTrackerMapCreator::SiStripTrackerMapCreator(const edm::EventSetup& eSetup): meanToMaxFactor_(2.5),eSetup_(eSetup)
39  //, psumap_()
40 {
41  cached_detid=0;
42  cached_layer=0;
43  trackerMap_ = 0;
46  // psumap_.BuildMap("CalibTracker/SiStripDCS/data/StripPSUDetIDMap_FromJan132010.dat",false);
47  if(!edm::Service<TkDetMap>().isAvailable()){
48  edm::LogError("TkHistoMap") <<
49  "\n------------------------------------------"
50  "\nUnAvailable Service TkHistoMap: please insert in the configuration file an instance like"
51  "\n\tprocess.TkDetMap = cms.Service(\"TkDetMap\")"
52  "\n------------------------------------------";
53  }
55 }
56 //
57 // -- Destructor
58 //
60  if (trackerMap_) delete trackerMap_;
61 }
62 //
63 // -- Create Geometric and Fed Tracker Map
64 //
66  DQMStore* dqm_store, std::string& map_type,
67  const edm::EventSetup& eSetup) {
68 
69  const SiStripFedCabling* fedcabling = detcabling_->fedCabling();
70 
71  if(!fedcabling) return;
72 
74  eSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
75  const TrackerTopology* const tTopo = tTopoHandle.product();
76 
77  if (trackerMap_) delete trackerMap_;
78  trackerMap_ = new TrackerMap(tkmapPset, fedcabling,tTopo);
79  std::string tmap_title = " Tracker Map from " + map_type;
80  trackerMap_->setTitle(tmap_title);
81 
82  nDet = 0;
83  tkMapMax_ = 0.0;
84  tkMapMin_ = 0.0;
85  meanToMaxFactor_ = 2.5;
86  useSSQuality_ = false;
87  ssqLabel_ = "";
88  stripTopLevelDir_="SiStrip";
89 
90  if (map_type == "QTestAlarm") {
91  setTkMapFromAlarm(dqm_store, eSetup);
92  /*
93  trackerMap_->fillc_all_blank();
94  const std::vector<uint16_t>& feds = fedcabling->feds();
95  uint32_t detId_save = 0;
96  for(std::vector<unsigned short>::const_iterator ifed = feds.begin();
97  ifed < feds.end(); ifed++){
98  const std::vector<FedChannelConnection> fedChannels = fedcabling->connections( *ifed );
99  for(std::vector<FedChannelConnection>::const_iterator iconn = fedChannels.begin(); iconn < fedChannels.end(); iconn++){
100 
101  uint32_t detId = iconn->detId();
102  if (detId == 0 || detId == 0xFFFFFFFF) continue;
103  if (detId_save != detId) {
104  detId_save = detId;
105  paintTkMapFromAlarm(detId, dqm_store);
106  }
107  }
108  }
109  */
110  } else {
112  setTkMapFromHistogram(dqm_store, map_type, eSetup);
113  setTkMapRange(map_type);
114  }
116  delete trackerMap_;
117  trackerMap_ = 0;
118 }
119 //
120 // -- Create Tracker Map for Offline process
121 //
123  DQMStore* dqm_store, std::string& map_type,
124  const edm::EventSetup& eSetup) {
125 
126  // Determine the strip top level dirctory in the DQM file: it is the path where MechanicalView is minus one directory
127 
128  std::string mdir = "MechanicalView";
129  dqm_store->cd();
130  if (!SiStripUtility::goToDir(dqm_store, mdir)) {
131  edm::LogError("SiStripTopLevelDirNotFound") << "I cannot find the SiStrip top level directory in the DQM file";
132  }
133  else {
134  std::string mechanicalview_dir = dqm_store->pwd();
135  stripTopLevelDir_=mechanicalview_dir.substr(0,mechanicalview_dir.find_last_of("/"));
136  edm::LogInfo("SiStripTopLevelDirFound") << "SiStrip top level directory is " << stripTopLevelDir_;
137  }
138  dqm_store->cd();
139 
140  //
141  const SiStripFedCabling* fedcabling = detcabling_->fedCabling();
142 
143  if(!fedcabling) return;
144 
145  edm::ESHandle<TrackerTopology> tTopoHandle;
146  eSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
147  const TrackerTopology* const tTopo = tTopoHandle.product();
148 
149  if (trackerMap_) delete trackerMap_;
150  trackerMap_ = new TrackerMap(tkmapPset,fedcabling,tTopo);
151 
152  meanToMaxFactor_ = tkmapPset.getUntrackedParameter<double>("meanToMaxFact",2.5);
153  useSSQuality_ = tkmapPset.getUntrackedParameter<bool>("useSSQuality",false);
154  ssqLabel_ = tkmapPset.getUntrackedParameter<std::string>("ssqLabel","");
155  bool tkMapPSU = tkmapPset.getUntrackedParameter<bool>("psuMap",false);
156  bool tkMapFED = tkmapPset.getUntrackedParameter<bool>("fedMap",false);
157  std::string namesuffix = tkmapPset.getUntrackedParameter<std::string>("mapSuffix","");
158 
159  std::string tmap_title = " Tracker Map from " + map_type;
160  trackerMap_->setTitle(tmap_title);
161 
162  if(tkmapPset.exists("TopModules"))
163  topModules=tkmapPset.getUntrackedParameter<bool>("TopModules");
164  else
165  topModules=false;
166 
167  if(tkmapPset.exists("numberTopModules"))
168  numTopModules=tkmapPset.getUntrackedParameter<uint32_t>("numberTopModules");
169  else
170  numTopModules = 20;
171 
172  if (tkmapPset.exists("topModLabel"))
173  topModLabel=tkmapPset.getUntrackedParameter<int32_t>("topModLabel");
174  else
175  topModLabel = " top Modules " + map_type;
176 
177  if (map_type == "QTestAlarm") {
178  setTkMapFromAlarm(dqm_store, eSetup);
179  }
180  else {
181  setTkMapFromHistogram(dqm_store, map_type, eSetup);
182  }
183  // if not overwitten by manual configuration min=0 and max= mean value * meanToMaxFactor_
185 
186  // check manual setting
187 
188  if(tkmapPset.exists("mapMax")) tkMapMax_ = tkmapPset.getUntrackedParameter<double>("mapMax");
189  if(tkmapPset.exists("mapMin")) tkMapMin_ = tkmapPset.getUntrackedParameter<double>("mapMin");
190 
191  edm::LogInfo("TkMapToBeSaved") << "Ready to save TkMap " << map_type << namesuffix << " with range set to " << tkMapMin_ << " - " << tkMapMax_;
192 
193  trackerMap_->save(true, tkMapMin_,tkMapMax_, map_type+namesuffix+".svg");
194  trackerMap_->save(true, tkMapMin_,tkMapMax_, map_type+namesuffix+".png",4500,2400);
195 
196  if(tkMapPSU) {
197 
198  edm::LogInfo("PSUMapToBeSaved") << "Ready to save PSU TkMap " << map_type << namesuffix << " with range set to " << tkMapMin_ << " - " << tkMapMax_;
199  // trackerMap_->save_as_psutrackermap(true, tkMapMin_,tkMapMax_, map_type+namesuffix+"_psu.svg");
200  trackerMap_->save_as_psutrackermap(true, tkMapMin_,tkMapMax_, map_type+namesuffix+"_psu.png");
201 
202  }
203 
204  if(tkMapFED) {
205 
206  edm::LogInfo("FEDMapToBeSaved") << "Ready to save FED TkMap " << map_type << namesuffix << " with range set to " << tkMapMin_ << " - " << tkMapMax_;
207  // trackerMap_->save_as_fedtrackermap(true, tkMapMin_,tkMapMax_, map_type+"_fed.svg");
208  trackerMap_->save_as_fedtrackermap(true, tkMapMin_,tkMapMax_, map_type+namesuffix+"_fed.png");
209 
210  }
211 
212  delete trackerMap_;
213  trackerMap_ = 0;
214 }
215 //
216 // -- Fill Tracker Map with QTest Alarms and SiStripQuality bad modules
218 
219  //Retrieve tracker topology from geometry
220  edm::ESHandle<TrackerTopology> tTopoHandle;
221  eSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
222  const TrackerTopology* const tTopo = tTopoHandle.product();
223 
224  nDet = 0;
225  tkMapMax_ = 0.0;
226  tkMapMin_ = 0.0;
227 
229 
231 
233 
234  std::map<unsigned int,std::string>* badmodmap = new std::map<unsigned int,std::string>;
235 
236  // used to avoid multiple checks on the same detid since the loop is done on the FED channels
237  uint32_t detId_save = 0;
238  // example of loop using SiStripDetCabling
239  for(std::map< uint32_t, std::vector<const FedChannelConnection *> >::const_iterator module = detcabling_->getDetCabling().begin();
240  module!=detcabling_->getDetCabling().end();++module) {
241  uint32_t detId = module->first;
242  if (detId == 0 || detId == 0xFFFFFFFF) continue;
243  if (detId_save != detId) {
244  detId_save = detId;
245  bool isBad = useSSQuality_ && ssq->IsModuleBad(detId);
246  paintTkMapFromAlarm(detId, tTopo, dqm_store,isBad,badmodmap);
247  }
248  else {
249  edm::LogWarning("TwiceTheSameDetId") << "The detid " << detId << " was found already in the loop on SiStripDetCabling";
250  }
251  }
252  //
253  printBadModuleList(badmodmap, eSetup);
254  delete badmodmap;
255 }
256 //
257 void SiStripTrackerMapCreator::printBadModuleList(std::map<unsigned int,std::string>* badmodmap, const edm::EventSetup& eSetup) {
258 
259  //Retrieve tracker topology from geometry
260  edm::ESHandle<TrackerTopology> tTopoHandle;
261  eSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
262  const TrackerTopology* const tTopo = tTopoHandle.product();
263 
264  bool tibDone=false,tidSide1Done=false,tidSide2Done=false,tobDone=false,tecSide1Done=false,tecSide2Done=false;
265  unsigned int tibFirst=369120277-1,
266  tidSide1First=402664197-1,tidSide2First=402672389-1,
267  tobFirst=436228134-1,
268  tecSide1First=470044965-1,tecSide2First=470307109-1;
269 
270  int ntib=0,ntids1=0,ntids2=0,ntob=0,ntecs1=0,ntecs2=0;
271 
272  for(std::map<unsigned int,std::string>::const_iterator badmod = badmodmap->begin(); badmod!= badmodmap->end(); ++badmod) {
273  SiStripDetId ssdetid(badmod->first);
274  if(ssdetid.subDetector()==SiStripDetId::TIB) ntib++;
275  if(ssdetid.subDetector()==SiStripDetId::TID) {
276 
277  if(tTopo->tidSide(ssdetid)==1) ntids1++;
278  if(tTopo->tidSide(ssdetid)==2) ntids2++;
279  }
280  if(ssdetid.subDetector()==SiStripDetId::TOB) ntob++;
281  if(ssdetid.subDetector()==SiStripDetId::TEC) {
282 
283  if(tTopo->tecSide(ssdetid)==1) ntecs1++;
284  if(tTopo->tecSide(ssdetid)==2) ntecs2++;
285  }
286  }
287 
288  edm::LogVerbatim("BadModuleList") << "Number of bad modules in total:";
289  edm::LogVerbatim("BadModuleList") << "--------------------------------------------------------------";
290  edm::LogVerbatim("BadModuleList") << "TIB: " << ntib;
291  edm::LogVerbatim("BadModuleList") << "TID/MINUS: " << ntids1;
292  edm::LogVerbatim("BadModuleList") << "TID/PLUS: " << ntids2;
293  edm::LogVerbatim("BadModuleList") << "TOB: " << ntob;
294  edm::LogVerbatim("BadModuleList") << "TEC/MINUS: " << ntecs1;
295  edm::LogVerbatim("BadModuleList") << "TEC/PLUS: " << ntecs2;
296  edm::LogVerbatim("BadModuleList") << "-------------------------------";
297  edm::LogVerbatim("BadModuleList") ;
298  edm::LogVerbatim("BadModuleList") << "List of bad modules per partition:";
299  edm::LogVerbatim("BadModuleList") << "----------------------------------";
300 
301  for(std::map<unsigned int,std::string>::const_iterator badmod = badmodmap->begin(); badmod!= badmodmap->end(); ++badmod) {
302  if(!tibDone && badmod->first >= tibFirst) {
303  tibDone = true;
304  edm::LogVerbatim("BadModuleList") ;
305  edm::LogVerbatim("BadModuleList") << "SubDetector TIB";
306  edm::LogVerbatim("BadModuleList") ;
307  }
308  if(!tidSide1Done && badmod->first >= tidSide1First) {
309  tidSide1Done = true;
310  edm::LogVerbatim("BadModuleList") ;
311  edm::LogVerbatim("BadModuleList") << "SubDetector TID/MINUS";
312  edm::LogVerbatim("BadModuleList") ;
313  }
314  if(!tidSide2Done && badmod->first >= tidSide2First) {
315  tidSide2Done = true;
316  edm::LogVerbatim("BadModuleList") ;
317  edm::LogVerbatim("BadModuleList") << "SubDetector TID/PLUS";
318  edm::LogVerbatim("BadModuleList") ;
319  }
320  if(!tobDone && badmod->first >= tobFirst) {
321  tobDone = true;
322  edm::LogVerbatim("BadModuleList") ;
323  edm::LogVerbatim("BadModuleList") << "SubDetector TOB";
324  edm::LogVerbatim("BadModuleList") ;
325  }
326  if(!tecSide1Done && badmod->first >= tecSide1First) {
327  tecSide1Done = true;
328  edm::LogVerbatim("BadModuleList") ;
329  edm::LogVerbatim("BadModuleList") << "SubDetector TEC/MINUS";
330  edm::LogVerbatim("BadModuleList") ;
331  }
332  if(!tecSide2Done && badmod->first >= tecSide2First) {
333  tecSide2Done = true;
334  edm::LogVerbatim("BadModuleList") ;
335  edm::LogVerbatim("BadModuleList") << "SubDetector TEC/PLUS";
336  edm::LogVerbatim("BadModuleList") ;
337  }
338  edm::LogVerbatim("BadModuleList") << badmod->second;
339  }
340 }
341 
342 //
343 // -- Paint Tracker Map with QTest Alarms
344 //
346  DQMStore* dqm_store, bool isBad, std::map<unsigned int,std::string>* badmodmap) {
347  std::ostringstream comment;
348  uint16_t flag = 0;
349  flag = getDetectorFlagAndComment(dqm_store, det_id, tTopo, comment);
350 
351  int rval, gval, bval;
352  SiStripUtility::getDetectorStatusColor(flag, rval, gval, bval);
353  if(isBad) { rval=255; gval=255; bval = 0; comment << " PCLBadModule ";}
354  trackerMap_->setText(det_id, comment.str());
355  trackerMap_->fillc(det_id, rval, gval, bval);
356  if(badmodmap && (flag!=0 || isBad)) (*badmodmap)[det_id] = comment.str();
357 }
358 
359 //
360 // -- Paint Tracker Map from TkHistoMap Histograms
362  dqm_store->cd();
363 
364  std::string mdir = "MechanicalView";
365  if (!SiStripUtility::goToDir(dqm_store, mdir)) return;
366  std::string mechanicalview_dir = dqm_store->pwd();
367 
368  std::vector<std::string> subdet_folder;
369  subdet_folder.push_back("TIB");
370  subdet_folder.push_back("TOB");
371  subdet_folder.push_back("TEC/MINUS");
372  subdet_folder.push_back("TEC/PLUS");
373  subdet_folder.push_back("TID/MINUS");
374  subdet_folder.push_back("TID/PLUS");
375 
376  nDet = 0;
377  tkMapMax_ = 0.0;
378  tkMapMin_ = 0.0;
379  std::vector<std::pair<float,uint32_t> >* topNmodVec = new std::vector<std::pair<float,uint32_t> >;
380 
381  for (std::vector<std::string>::const_iterator it = subdet_folder.begin(); it != subdet_folder.end(); it++) {
382  std::string dname = mechanicalview_dir + "/" + (*it);
383  if (!dqm_store->dirExists(dname)) continue;
384  dqm_store->cd(dname);
385  std::vector<std::string> layerVec = dqm_store->getSubdirs();
386  for (std::vector<std::string>::const_iterator iLayer = layerVec.begin(); iLayer != layerVec.end(); iLayer++) {
387  if ((*iLayer).find("BadModuleList") !=std::string::npos) continue;
388  std::vector<MonitorElement*> meVec = dqm_store->getContents((*iLayer));
389  MonitorElement* tkhmap_me = 0;
391  for (std::vector<MonitorElement*>::const_iterator itkh = meVec.begin(); itkh != meVec.end(); itkh++) {
392  name = (*itkh)->getName();
393  if (name.find("TkHMap") == std::string::npos) continue;
394  if (htype == "QTestAlarm" ){
395  edm::LogError("ItShouldNotBeHere") << "QTestAlarm map: you should not be here!";
396  tkhmap_me = (*itkh);
397  break;
398  } else if (name.find(htype) != std::string::npos) {
399  tkhmap_me = (*itkh);
400  break;
401  }
402  }
403  if (tkhmap_me != 0) {
404  if (topModules){
405  paintTkMapFromHistogram(dqm_store,tkhmap_me, htype, topNmodVec);
406  }
407  else paintTkMapFromHistogram(dqm_store,tkhmap_me, htype, 0);
408  }
409  }
410  dqm_store->cd(mechanicalview_dir);
411  }
412  dqm_store->cd();
413  if (topModules) printTopModules(topNmodVec, eSetup);
414  delete topNmodVec;
415 }
416 
417 void SiStripTrackerMapCreator::printTopModules(std::vector<std::pair<float,uint32_t> >* topNmodVec, const edm::EventSetup& eSetup){
418 
420  //edm::ESHandle<TrackerTopology> tTopoHandle;
421  //eSetup.get<TrackerTopologyRecord>().get(tTopoHandle);
422  //const TrackerTopology* const tTopo = tTopoHandle.product();
423  edm::ESHandle<TrackerTopology> tTopoHandle;
424  eSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
425  const TrackerTopology* const tTopo = tTopoHandle.product();
426 
427  if (topNmodVec->empty()) return;
428 
429  std::sort(topNmodVec->rbegin(), topNmodVec->rend());
430  if (topNmodVec->size() > numTopModules) topNmodVec->resize(numTopModules);
431 
432  edm::LogVerbatim("TopModules") << topModLabel;
433  edm::LogVerbatim("TopModules") << "------------------------------------------------------";
434 
435  for (std::vector<std::pair<float, uint32_t> >::const_iterator itNmod = topNmodVec->begin(); itNmod != topNmodVec->end(); itNmod++){
436  std::pair<float, uint32_t> aPair=(*itNmod);
437  uint32_t det_id = aPair.second;
438  std::ostringstream comment;
439  std::string subdetector;
440  SiStripDetId ssdetid(aPair.second);
441  if(ssdetid.subDetector()==SiStripDetId::TIB) subdetector = "TIB ";
442  if(ssdetid.subDetector()==SiStripDetId::TID){
443  if(tTopo->tidSide(ssdetid)==1) subdetector = "TID/MINUS ";
444  if(tTopo->tidSide(ssdetid)==2) subdetector = "TID/PLUS ";
445  }
446  if(ssdetid.subDetector()==SiStripDetId::TOB) subdetector = "TOB ";
447  if(ssdetid.subDetector()==SiStripDetId::TEC){
448  if(tTopo->tecSide(ssdetid)==1) subdetector = "TEC/MINUS ";
449  if(tTopo->tecSide(ssdetid)==2) subdetector = "TEC/PLUS ";
450  }
451  uint16_t flag = getDetectorFlagAndComment(0, det_id, tTopo, comment);
452  if (flag == 0) edm::LogVerbatim("TopModules") << subdetector << comment.str() << " value: "<< aPair.first;
453  }
454  edm::LogVerbatim("TopModules") << "------------------------------------------------------";
455 }
456 
457 
458 void SiStripTrackerMapCreator::paintTkMapFromHistogram(DQMStore* dqm_store, MonitorElement* me, std::string& htype, std::vector<std::pair<float, uint32_t> >* topNmodVec) {
459 
460  // edm::ESHandle<SiStripQuality> ssq;
461 
462  // if(useSSQuality_) { eSetup_.get<SiStripQualityRcd>().get(ssqLabel_,ssq); }
463 
464  std::string name = me->getName();
465  std::string lname = name.substr(name.find("TkHMap_")+7);
466  lname = lname.substr(lname.find("_T")+1);
467  std::vector<uint32_t> layer_detids;
468  tkDetMap_->getDetsForLayer(tkDetMap_->getLayerNum(lname), layer_detids);
469  for (std::vector<uint32_t>::const_iterator idet = layer_detids.begin(); idet != layer_detids.end(); idet++) {
470  uint32_t det_id= (*idet);
471  if (det_id <= 0) continue;
472  nDet++;
474  float fval = 0.0;
475  if ( (name.find("NumberOfOfffTrackCluster") != std::string::npos) ||
476  (name.find("NumberOfOnTrackCluster") != std::string::npos) ) {
478  TProfile2D* tp = me->getTProfile2D() ;
479  fval = tp->GetBinEntries(tp->GetBin(xyval.ix, xyval.iy)) * tp->GetBinContent(xyval.ix, xyval.iy);
480  }
481  } else fval = me->getBinContent(xyval.ix, xyval.iy);
482  if (htype == "QTestAlarm") {
483  edm::LogError("ItShouldNotBeHere") << "QTestAlarm map: you should not be here!";
484  /*
485  int rval, gval, bval;
486  std::ostringstream comment;
487  uint32_t flag = 0;
488  flag = getDetectorFlagAndComment(dqm_store, det_id, comment);
489  SiStripUtility::getDetectorStatusColor(flag, rval, gval, bval);
490  if(useSSQuality_ && ssq->IsModuleBad(det_id)) { rval=255; gval=255; bval = 0;}
491  trackerMap_->fillc(det_id, rval, gval, bval);
492  trackerMap_->setText(det_id, comment.str());
493  */
494  } else {
495  if (fval == 0.0) trackerMap_->fillc(det_id,255, 255, 255);
496  else {
497  trackerMap_->fill_current_val(det_id, fval);
498  if(topNmodVec){
499  auto detPair = std::make_pair(fval,det_id);
500  topNmodVec->push_back(detPair);
501  }
502  }
503  tkMapMax_ += fval;
504  }
505  }
506 }
507 //
508 // -- Get Tracker Map Fill Range
509 //
511  tkMapMin_ = 0.0;
512  if (tkMapMax_ == 0.0) {
513  if (map_type.find("FractionOfBadChannels") != std::string::npos) tkMapMax_ = 1.0;
514  else if (map_type.find("NumberOfCluster") != std::string::npos) tkMapMax_ = 0.01;
515  else if (map_type.find("NumberOfDigi") != std::string::npos) tkMapMax_ = 0.6;
516  else if (map_type.find("NumberOfOffTrackCluster") != std::string::npos) tkMapMax_ = 100.0;
517  else if (map_type.find("NumberOfOnTrackCluster") != std::string::npos) tkMapMax_ = 50.0;
518  else if (map_type.find("StoNCorrOnTrack") != std::string::npos) tkMapMax_ = 200.0;
519  } else {
520  tkMapMax_ = tkMapMax_/nDet*1.0;
522  }
524 }
526  tkMapMin_ = 0.0;
527  if (tkMapMax_ != 0.0) {
528  tkMapMax_ = tkMapMax_/(nDet*1.0);
530  }
531  // the following line seems to be useless and misleading: in the offline map creation the range is set with the save... methods
532  // trackerMap_->setRange(tkMapMin_, tkMapMax_);
533 }
534 //
535 // -- Get Flag and status Comment
536 //
538  const TrackerTopology* tTopo, std::ostringstream& comment) {
539  // comment << " DetId " << det_id << " : ";
540  comment << "Module " << det_id;
541  uint16_t flag = 0;
542 
543  // get FED channels corresponding to the det_id
544 
545  // if(detcabling_) {
546  comment << " FEDCHs ";
547  std::vector<const FedChannelConnection*> conns = detcabling_->getConnections(det_id);
548  for(unsigned int i=0; i< conns.size() ;++i) {
549  if(conns[i]) {
550  comment << std::setw(3) << conns[i]->fedId() << "/" << std::setw(2) << conns[i]->fedCh()<< " ";
551  }
552  else {
553  comment << " ";
554  }
555  }
556  if(conns.size()==0) { comment << " "; }
557  if(conns.size()==1) { comment << " "; }
558  if(conns.size()==2) { comment << " "; }
559  // }
560  if(!dqm_store) return flag;
561  // get PSU channel corresponding to the det_id
562  /*
563  comment << " PSU: ";
564  comment << psumap_.getPSUName(det_id);
565  */
566  //
567 
568  SiStripFolderOrganizer folder_organizer;
569  std::string subdet_folder, badmodule_folder;
570 
571  dqm_store->cd();
572 
573  folder_organizer.setSiStripFolderName(stripTopLevelDir_);
574  folder_organizer.getSubDetFolder(det_id, tTopo, subdet_folder);
575 
576  LogDebug("SearchBadModule") << det_id << " " << subdet_folder << " " << stripTopLevelDir_;
577 
578  if (dqm_store->dirExists(subdet_folder)){
579  badmodule_folder = subdet_folder + "/BadModuleList";
580  LogDebug("SearchBadModule") << subdet_folder << " exists: " << badmodule_folder;
581  } else {
582  // badmodule_folder = dqm_store->pwd() + "/BadModuleList";
583  edm::LogError("SubDetFolderNotFound") << subdet_folder << " does not exist for detid " << det_id;
584  return flag;
585  }
586  if (!dqm_store->dirExists(badmodule_folder)) {
587  LogDebug("BadModuleFolderNotFound") << badmodule_folder << " does not exist for detid " << det_id;
588  return flag;
589  }
590  std::ostringstream badmodule_path;
591  badmodule_path << badmodule_folder << "/" << det_id;
592  LogDebug("SearchBadModule") << badmodule_folder << " exists: " << badmodule_path;
593 
594  MonitorElement* bad_module_me = dqm_store->get(badmodule_path.str());
595  if (bad_module_me && bad_module_me->kind() == MonitorElement::DQM_KIND_INT) {
596  LogDebug("SearchBadModule") << "Monitor Element found";
597  flag = bad_module_me->getIntValue();
599  SiStripUtility::getBadModuleStatus(flag, message);
600  comment << message.c_str();
601  }
602  return flag;
603 }
#define LogDebug(id)
int getLayerNum(const std::string &in) const
Definition: TkDetMap.cc:777
T getUntrackedParameter(std::string const &, T const &) const
const std::string & getName(void) const
get name of ME
int i
Definition: DBlmapReader.cc:9
void fillc_all_blank()
Definition: TrackerMap.cc:2732
void setSiStripFolderName(std::string name)
void getSubDetFolder(const uint32_t &detid, const TrackerTopology *tTopo, std::string &folder_name)
std::vector< std::string > getSubdirs(void) const
Definition: DQMStore.cc:1699
TProfile2D * getTProfile2D(void) const
void save_as_psutrackermap(bool print_total=true, float minval=0., float maxval=0., std::string s="psu_svgmap.svg", int width=100+(360+100)*5+300, int height=50+(150+50)*6+300)
Definition: TrackerMap.cc:1844
void cd(void)
go to top directory (ie. root)
Definition: DQMStore.cc:684
edm::ESHandle< SiStripDetCabling > detcabling_
bool exists(std::string const &parameterName) const
checks if a parameter exists
static void getDetectorStatusColor(int status, int &rval, int &gval, int &bval)
uint16_t getDetectorFlagAndComment(DQMStore *dqm_store, uint32_t det_id, const TrackerTopology *tTopo, std::ostringstream &comment)
void printBadModuleList(std::map< unsigned int, std::string > *badmodmap, const edm::EventSetup &eSetup)
static void getBadModuleStatus(uint16_t flag, std::string &message)
void paintTkMapFromAlarm(uint32_t det_id, const TrackerTopology *tTopo, DQMStore *dqm_store, bool isBad=false, std::map< unsigned int, std::string > *badmodmap=0)
void setTitle(std::string s)
Definition: TrackerMap.h:127
void fill_all_blank()
Definition: TrackerMap.cc:2740
void setTkMapFromAlarm(DQMStore *dqm_store, const edm::EventSetup &eSetup)
unsigned int tidSide(const DetId &id) const
const edm::EventSetup & eSetup_
void save(bool print_total=true, float minval=0., float maxval=0., std::string s="svgmap.svg", int width=1500, int height=800)
Definition: TrackerMap.cc:699
Kind kind(void) const
Get the type of the monitor element.
MonitorElement * get(const std::string &path) const
get ME from full pathname (e.g. &quot;my/long/dir/my_histo&quot;)
Definition: DQMStore.cc:1748
void getDetsForLayer(int layer, std::vector< uint32_t > &output) const
Definition: TkDetMap.cc:695
void setTkMapFromHistogram(DQMStore *dqm_store, std::string &htype, const edm::EventSetup &eSetup)
std::vector< MonitorElement * > getContents(const std::string &path) const
Definition: DQMStore.cc:1777
void fillc(int idmod, int RGBcode)
Definition: TrackerMap.h:104
bool dirExists(const std::string &path) const
true if directory exists
Definition: DQMStore.cc:772
Detector identifier class for the strip tracker.
Definition: SiStripDetId.h:17
unsigned long long int rval
Definition: vlib.h:22
SubDetector subDetector() const
Definition: SiStripDetId.h:114
void save_as_fedtrackermap(bool print_total=true, float minval=0., float maxval=0., std::string s="fed_svgmap.svg", int width=100+(90+100)*31+300, int height=150+(2940+150)*1+300)
Definition: TrackerMap.cc:2126
void paintTkMapFromHistogram(DQMStore *dqm_store, MonitorElement *me, std::string &map_type, std::vector< std::pair< float, uint32_t > > *topNmodVec)
int64_t getIntValue(void) const
const T & get() const
Definition: EventSetup.h:55
T const * product() const
Definition: ESHandle.h:86
void printTopModules(std::vector< std::pair< float, uint32_t > > *topNmodVec, const edm::EventSetup &eSetup)
Contains cabling info at the device level, including DetId, APV pair numbers, hardware addresses...
void setRange(float min, float max)
Definition: TrackerMap.cc:671
double getBinContent(int binx) const
get content of bin (1-D)
void printonline()
Definition: TrackerMap.cc:2878
void createForOffline(const edm::ParameterSet &tkmapPset, DQMStore *dqm_store, std::string &htype, const edm::EventSetup &eSetup)
SiStripTrackerMapCreator(const edm::EventSetup &eSetup)
void fill_current_val(int idmod, float current_val)
Definition: TrackerMap.cc:2750
void setText(int idmod, std::string s)
Definition: TrackerMap.cc:2788
const TkLayerMap::XYbin & getXY(uint32_t &, uint32_t &cached_detid, int16_t &cached_layer, TkLayerMap::XYbin &cached_XYbin) const
Definition: TkDetMap.cc:652
static bool goToDir(DQMStore *dqm_store, std::string name)
Definition: vlib.h:208
void setTkMapRange(std::string &map_type)
void create(const edm::ParameterSet &tkmapPset, DQMStore *dqm_store, std::string &htype, const edm::EventSetup &eSetup)
unsigned int tecSide(const DetId &id) const
const std::string & pwd(void) const
Definition: DQMStore.cc:679
#define comment(par)
Definition: vmac.h:161