50 "\n------------------------------------------"
51 "\nUnAvailable Service TkHistoMap: please insert in the configuration file an instance like"
52 "\n\tprocess.TkDetMap = cms.Service(\"TkDetMap\")"
53 "\n------------------------------------------";
72 if(!fedcabling)
return;
80 std::string tmap_title =
" Tracker Map from " + map_type;
91 if (map_type ==
"QTestAlarm") {
132 edm::LogError(
"SiStripTopLevelDirNotFound") <<
"I cannot find the SiStrip top level directory in the DQM file";
136 stripTopLevelDir_=mechanicalview_dir.substr(0,mechanicalview_dir.find_last_of(
"/"));
144 if(!fedcabling)
return;
162 std::stringstream
ss;
167 if (runNumber_>0) { tmap_title =
" Run: " + sRunNumber +
", Tracker Map from " + map_type; }
168 else { tmap_title =
" Tracker Map from " + map_type; }
171 if(tkmapPset.
exists(
"TopModules"))
176 if(tkmapPset.
exists(
"numberTopModules"))
181 if (tkmapPset.
exists(
"topModLabel"))
186 if (map_type ==
"QTestAlarm") {
207 edm::LogInfo(
"PSUMapToBeSaved") <<
"Ready to save PSU TkMap " << map_type << namesuffix <<
" with range set to " <<
tkMapMin_ <<
" - " <<
tkMapMax_;
215 edm::LogInfo(
"FEDMapToBeSaved") <<
"Ready to save FED TkMap " << map_type << namesuffix <<
" with range set to " <<
tkMapMin_ <<
" - " <<
tkMapMax_;
243 std::map<unsigned int,std::string>* badmodmap =
new std::map<unsigned int,std::string>;
246 uint32_t detId_save = 0;
248 for(std::map< uint32_t, std::vector<const FedChannelConnection *> >::const_iterator
module =
detcabling_->getDetCabling().begin();
250 uint32_t detId =
module->first;
251 if (detId == 0 || detId == 0xFFFFFFFF)
continue;
252 if (detId_save != detId) {
258 edm::LogWarning(
"TwiceTheSameDetId") <<
"The detid " << detId <<
" was found already in the loop on SiStripDetCabling";
273 bool tibDone=
false,tidSide1Done=
false,tidSide2Done=
false,tobDone=
false,tecSide1Done=
false,tecSide2Done=
false;
274 unsigned int tibFirst=369120277-1,
275 tidSide1First=402664197-1,tidSide2First=402672389-1,
276 tobFirst=436228134-1,
277 tecSide1First=470044965-1,tecSide2First=470307109-1;
279 int ntib=0,ntids1=0,ntids2=0,ntob=0,ntecs1=0,ntecs2=0;
281 for(std::map<unsigned int,std::string>::const_iterator badmod = badmodmap->begin(); badmod!= badmodmap->end(); ++badmod) {
286 if(tTopo->
tidSide(ssdetid)==1) ntids1++;
287 if(tTopo->
tidSide(ssdetid)==2) ntids2++;
292 if(tTopo->
tecSide(ssdetid)==1) ntecs1++;
293 if(tTopo->
tecSide(ssdetid)==2) ntecs2++;
299 edm::LogVerbatim(
"BadModuleList") <<
"--------------------------------------------------------------";
311 for(std::map<unsigned int,std::string>::const_iterator badmod = badmodmap->begin(); badmod!= badmodmap->end(); ++badmod) {
312 if(!tibDone && badmod->first >= tibFirst) {
318 if(!tidSide1Done && badmod->first >= tidSide1First) {
324 if(!tidSide2Done && badmod->first >= tidSide2First) {
330 if(!tobDone && badmod->first >= tobFirst) {
336 if(!tecSide1Done && badmod->first >= tecSide1First) {
342 if(!tecSide2Done && badmod->first >= tecSide2First) {
356 DQMStore* dqm_store,
bool isBad, std::map<unsigned int,std::string>* badmodmap) {
361 int rval, gval, bval;
363 if(isBad) { rval=255; gval=255; bval = 0; comment <<
" PCLBadModule ";}
367 if(badmodmap && (flag!=0 || isBad)){
370 (*badmodmap)[det_id] = comment.str() + layer;
385 std::vector<std::string> subdet_folder;
386 subdet_folder.push_back(
"TIB");
387 subdet_folder.push_back(
"TOB");
388 subdet_folder.push_back(
"TEC/MINUS");
389 subdet_folder.push_back(
"TEC/PLUS");
390 subdet_folder.push_back(
"TID/MINUS");
391 subdet_folder.push_back(
"TID/PLUS");
396 std::vector<std::pair<float,uint32_t> >* topNmodVec =
new std::vector<std::pair<float,uint32_t> >;
398 for (std::vector<std::string>::const_iterator it = subdet_folder.begin(); it != subdet_folder.end(); it++) {
400 if (!dqm_store->
dirExists(dname))
continue;
401 dqm_store->
cd(dname);
402 std::vector<std::string> layerVec = dqm_store->
getSubdirs();
403 for (std::vector<std::string>::const_iterator iLayer = layerVec.begin(); iLayer != layerVec.end(); iLayer++) {
404 if ((*iLayer).find(
"BadModuleList") !=std::string::npos)
continue;
405 std::vector<MonitorElement*> meVec = dqm_store->
getContents((*iLayer));
408 for (std::vector<MonitorElement*>::const_iterator itkh = meVec.begin(); itkh != meVec.end(); itkh++) {
409 name = (*itkh)->getName();
410 if (name.find(
"TkHMap") == std::string::npos)
continue;
411 if (htype ==
"QTestAlarm" ){
412 edm::LogError(
"ItShouldNotBeHere") <<
"QTestAlarm map: you should not be here!";
415 }
else if (name.find(htype) != std::string::npos) {
420 if (tkhmap_me != 0) {
427 dqm_store->
cd(mechanicalview_dir);
444 if (topNmodVec->empty())
return;
446 std::sort(topNmodVec->rbegin(), topNmodVec->rend());
450 edm::LogVerbatim(
"TopModules") <<
"------------------------------------------------------";
452 for (std::vector<std::pair<float, uint32_t> >::const_iterator itNmod = topNmodVec->begin(); itNmod != topNmodVec->end(); itNmod++){
453 std::pair<float, uint32_t> aPair=(*itNmod);
454 uint32_t det_id = aPair.second;
460 if(tTopo->
tidSide(ssdetid)==1) subdetector =
"TID/MINUS ";
461 if(tTopo->
tidSide(ssdetid)==2) subdetector =
"TID/PLUS ";
465 if(tTopo->
tecSide(ssdetid)==1) subdetector =
"TEC/MINUS ";
466 if(tTopo->
tecSide(ssdetid)==2) subdetector =
"TEC/PLUS ";
469 if (flag == 0)
edm::LogVerbatim(
"TopModules") << subdetector << comment.str() <<
" value: "<< aPair.first;
471 edm::LogVerbatim(
"TopModules") <<
"------------------------------------------------------";
482 std::string lname = name.substr(name.find(
"TkHMap_")+7);
483 lname = lname.substr(lname.find(
"_T")+1);
484 std::vector<uint32_t> layer_detids;
486 for (std::vector<uint32_t>::const_iterator idet = layer_detids.begin(); idet != layer_detids.end(); idet++) {
487 uint32_t det_id= (*idet);
488 if (det_id <= 0)
continue;
492 if ( (name.find(
"NumberOfOff") != std::string::npos) ||
493 (name.find(
"NumberOfOnTrackCluster") != std::string::npos) ) {
496 fval = tp->GetBinEntries(tp->GetBin(xyval.
ix, xyval.
iy)) * tp->GetBinContent(xyval.
ix, xyval.
iy);
499 if (htype ==
"QTestAlarm") {
500 edm::LogError(
"ItShouldNotBeHere") <<
"QTestAlarm map: you should not be here!";
516 auto detPair = std::make_pair(fval,det_id);
517 topNmodVec->push_back(detPair);
530 if (map_type.find(
"FractionOfBadChannels") != std::string::npos)
tkMapMax_ = 1.0;
531 else if (map_type.find(
"NumberOfCluster") != std::string::npos)
tkMapMax_ = 0.01;
532 else if (map_type.find(
"NumberOfDigi") != std::string::npos)
tkMapMax_ = 0.6;
533 else if (map_type.find(
"NumberOfOffTrackCluster") != std::string::npos)
tkMapMax_ = 100.0;
534 else if (map_type.find(
"NumberOfOnTrackCluster") != std::string::npos)
tkMapMax_ = 50.0;
535 else if (map_type.find(
"StoNCorrOnTrack") != std::string::npos)
tkMapMax_ = 200.0;
557 comment <<
"Module " << det_id;
563 comment <<
" FEDCHs ";
564 std::vector<const FedChannelConnection*> conns =
detcabling_->getConnections(det_id);
565 for(
unsigned int i=0;
i< conns.size() ;++
i) {
567 comment << std::setw(3) << conns[
i]->fedId() <<
"/" << std::setw(2) << conns[
i]->fedCh()<<
" ";
573 if(conns.size()==0) { comment <<
" "; }
574 if(conns.size()==1) { comment <<
" "; }
575 if(conns.size()==2) { comment <<
" "; }
577 if(!dqm_store)
return flag;
595 if (dqm_store->
dirExists(subdet_folder)){
596 badmodule_folder = subdet_folder +
"/BadModuleList";
597 LogDebug(
"SearchBadModule") << subdet_folder <<
" exists: " << badmodule_folder;
600 edm::LogError(
"SubDetFolderNotFound") << subdet_folder <<
" does not exist for detid " << det_id;
603 if (!dqm_store->
dirExists(badmodule_folder)) {
604 LogDebug(
"BadModuleFolderNotFound") << badmodule_folder <<
" does not exist for detid " << det_id;
607 std::ostringstream badmodule_path;
608 badmodule_path << badmodule_folder <<
"/" << det_id;
609 LogDebug(
"SearchBadModule") << badmodule_folder <<
" exists: " << badmodule_path;
613 LogDebug(
"SearchBadModule") <<
"Monitor Element found";
617 comment << message.c_str();
626 std::map<std::string, float> tkhmap_value;
627 int qtalarm_flag = 0;
631 edm::LogError(
"SiStripTrackerMapCreator::createInfoFile") <<
"Tree not found!";
634 tkinfo_tree->Branch(
"DetId",&det_id,
"DetId/i");
635 for(std::vector<std::string>::const_iterator
in = map_names.begin();
in != map_names.end(); ++
in) {
637 if(mapname ==
"QTestAlarm") {
639 tkinfo_tree->Branch(mapname.c_str(),&qtalarm_flag,
std::string(mapname+
"/I").c_str());
641 tkhmap_value[mapname] = -1.0;
642 tkinfo_tree->Branch(mapname.c_str(),&tkhmap_value[mapname],
std::string(mapname+
"/F").c_str());
651 edm::LogError(
"SiStripTrackerMapCreator::createInfoFile") <<
"I cannot find the SiStrip top level directory in the DQM file";
655 dirname=mechanicalview_dir.substr(0,mechanicalview_dir.find_last_of(
"/"));
656 edm::LogInfo(
"SiStripTrackerMapCreator::createInfoFile") <<
"SiStrip top level directory is " <<
dirname;
660 std::vector<TkHistoMap*> tkHMaps;
662 uint32_t nHists = map_names.size();
664 for(uint32_t ih = 0; ih < nHists; ++ih) {
666 if(map_names.at(ih) !=
"QTestAlarm") {
667 std::string tkhmap_name =
"TkHMap_" + map_names.at(ih);
668 tkHMaps.at(ih)->loadTkHistoMap(dirname, tkhmap_name,
true);
672 for(std::vector<uint32_t>::const_iterator idet = detidList.begin(); idet != detidList.end(); ++idet) {
674 for(uint32_t ih = 0; ih < nHists; ++ih) {
675 if(map_names.at(ih) ==
"QTestAlarm") {
679 tkhmap_value[map_names.at(ih)] = tkHMaps.at(ih)->getValue(det_id);
683 edm::LogError(
"SiStripTrackerMapCreator::createInfoFile") <<
"Tree not found!";
691 for(uint32_t ih = 0; ih < nHists; ++ih) {
692 delete tkHMaps.at(ih);
int getLayerNum(const std::string &in) const
static const char runNumber_[]
T getUntrackedParameter(std::string const &, T const &) const
const std::string & getName(void) const
get name of ME
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
TProfile2D * getTProfile2D(void) const
uint16_t getDetectorFlag(uint32_t det_id)
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)
void cd(void)
go to top directory (ie. root)
edm::ESHandle< SiStripDetCabling > detcabling_
bool exists(std::string const ¶meterName) 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)
~SiStripTrackerMapCreator()
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)
void setTkMapFromAlarm(DQMStore *dqm_store, const edm::EventSetup &eSetup)
unsigned int tidSide(const DetId &id) const
std::map< uint32_t, uint16_t > detflag_
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)
void setTkMapRangeOffline()
std::string stripTopLevelDir_
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. "my/long/dir/my_histo")
void getDetsForLayer(int layer, std::vector< uint32_t > &output) const
void setTkMapFromHistogram(DQMStore *dqm_store, std::string &htype, const edm::EventSetup &eSetup)
std::vector< MonitorElement * > getContents(const std::string &path) const
void fillc(int idmod, int RGBcode)
bool dirExists(const std::string &path) const
true if directory exists
Detector identifier class for the strip tracker.
unsigned long long int rval
SubDetector subDetector() const
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)
void paintTkMapFromHistogram(DQMStore *dqm_store, MonitorElement *me, std::string &map_type, std::vector< std::pair< float, uint32_t > > *topNmodVec)
int64_t getIntValue(void) const
T const * product() const
TkLayerMap::XYbin cached_XYbin
void createInfoFile(std::vector< std::string > map_names, TTree *tkinfo_tree, DQMStore *dqm_store, std::vector< uint32_t > detidList)
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)
unsigned int layer(const DetId &id) const
double getBinContent(int binx) const
get content of bin (1-D)
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)
void setText(int idmod, std::string s)
const TkLayerMap::XYbin & getXY(uint32_t &, uint32_t &cached_detid, int16_t &cached_layer, TkLayerMap::XYbin &cached_XYbin) const
static bool goToDir(DQMStore *dqm_store, std::string name)
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