CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
SiPixelInformationExtractor Class Reference

#include <SiPixelInformationExtractor.h>

Public Types

typedef dqm::legacy::DQMStore DQMStore
 
typedef dqm::legacy::MonitorElement MonitorElement
 

Public Member Functions

void bookNoisyPixels (DQMStore::IBooker &iBooker, float noiseRate, bool Tier0Flag)
 
void computeStatus (MonitorElement *mE, double &colorValue, std::pair< double, double > &norm)
 (Documentation under construction). More...
 
void findNoisyPixels (DQMStore::IBooker &iBooker, DQMStore::IGetter &iGetter, bool init, float noiseRate, int noiseRateDenominator, const SiPixelFedCablingMap *theCablingMap)
 
int getDetId (MonitorElement *mE)
 (Documentation under construction). More...
 
std::string getMEType (MonitorElement *mE)
 
void getNormalization (MonitorElement *mE, std::pair< double, double > &norm, std::string theMEType)
 (Documentation under construction). More...
 
void getNormalization2D (MonitorElement *mE, std::pair< double, double > &normX, std::pair< double, double > &normY, std::string theMEType)
 (Documentation under construction). More...
 
void readConfiguration ()
 Read Configuration File. More...
 
bool readConfiguration (std::map< std::string, std::vector< std::string >> &layoutMap, std::map< std::string, std::map< std::string, std::string >> &qtestsMap, std::map< std::string, std::vector< std::string >> &meQTestsMap)
 
 SiPixelInformationExtractor (bool offlineXMLfile)
 Constructor of the SiPixelInformationExtractor class. More...
 
 ~SiPixelInformationExtractor ()
 Destructor of the SiPixelInformationExtractor class. More...
 

Private Member Functions

void createDummiesFromLayout ()
 
void getItemList (const std::multimap< std::string, std::string > &req_map, std::string item_name, std::vector< std::string > &items)
 (Documentation under construction). More...
 
std::string getItemValue (const std::multimap< std::string, std::string > &req_map, std::string item_name)
 (Documentation under construction). More...
 
std::string getItemValue (std::multimap< std::string, std::string > &req_map, std::string item_name)
 
bool hasItem (std::multimap< std::string, std::string > &req_map, std::string item_name)
 (Documentation under construction). More...
 
void selectColor (std::string &col, int status)
 
void selectColor (std::string &col, std::vector< QReport *> &reports)
 
void selectImage (std::string &name, int status)
 
void selectImage (std::string &name, std::vector< QReport *> &reports)
 

Private Attributes

SiPixelActionExecutoractionExecutor_
 
int alarmCounter_
 
MonitorElementBarrelNdigisFREQProjection
 
SiPixelConfigParserconfigParser_
 
SiPixelConfigWriterconfigWriter_
 
int count
 
MonitorElementEndcapNdigisFREQProjection
 
bool endOfModules_
 
int errcount
 
MonitorElementEventRateBarrelPixels
 
MonitorElementEventRateEndcapPixels
 
bool flagHotModule_
 
bool gotDigis
 
std::map< std::string, std::vector< std::string > > layoutMap
 
SiPixelLayoutParserlayoutParser_
 
std::map< std::string, std::vector< std::string > > meQTestsMap
 
std::ofstream myfile_
 
int nevents_
 
std::map< uint32_t, std::vector< std::pair< std::pair< int, int >, float > > > noisyDetIds_
 
bool offlineXMLfile_
 
std::map< std::string, std::map< std::string, std::string > > qtestsMap
 
bool readMeMap_
 
bool readQTestMap_
 
bool readReference_
 

Detailed Description

Definition at line 33 of file SiPixelInformationExtractor.h.

Member Typedef Documentation

◆ DQMStore

Definition at line 36 of file SiPixelInformationExtractor.h.

◆ MonitorElement

Definition at line 35 of file SiPixelInformationExtractor.h.

Constructor & Destructor Documentation

◆ SiPixelInformationExtractor()

SiPixelInformationExtractor::SiPixelInformationExtractor ( bool  offlineXMLfile)

Constructor of the SiPixelInformationExtractor class.

Definition at line 67 of file SiPixelInformationExtractor.cc.

References readReference_.

67  : offlineXMLfile_(offlineXMLfile) {
68  edm::LogInfo("SiPixelInformationExtractor") << " Creating SiPixelInformationExtractor "
69  << "\n";
70 
71  readReference_ = false;
72 }
Log< level::Info, false > LogInfo

◆ ~SiPixelInformationExtractor()

SiPixelInformationExtractor::~SiPixelInformationExtractor ( )

Destructor of the SiPixelInformationExtractor class.

Definition at line 78 of file SiPixelInformationExtractor.cc.

78  {
79  edm::LogInfo("SiPixelInformationExtractor") << " Deleting SiPixelInformationExtractor "
80  << "\n";
81 }
Log< level::Info, false > LogInfo

Member Function Documentation

◆ bookNoisyPixels()

void SiPixelInformationExtractor::bookNoisyPixels ( DQMStore::IBooker iBooker,
float  noiseRate,
bool  Tier0Flag 
)

Definition at line 328 of file SiPixelInformationExtractor.cc.

References dqm::implementation::IBooker::book1D(), dqm::implementation::NavigatorBase::cd(), EventRateBarrelPixels, EventRateEndcapPixels, dqm::impl::MonitorElement::setAxisTitle(), and dqm::implementation::NavigatorBase::setCurrentFolder().

328  {
329  // std::cout<<"BOOK NOISY PIXEL MEs!"<<std::endl;
330  iBooker.cd();
331  if (noiseRate_ >= 0.) {
332  iBooker.setCurrentFolder("Pixel/Barrel");
333  EventRateBarrelPixels = iBooker.book1D("barrelEventRate", "Digi event rate for all Barrel pixels", 1000, 0., 0.01);
334  EventRateBarrelPixels->setAxisTitle("Event Rate", 1);
335  EventRateBarrelPixels->setAxisTitle("Number of Pixels", 2);
336  iBooker.cd();
337  iBooker.setCurrentFolder("Pixel/Endcap");
338  EventRateEndcapPixels = iBooker.book1D("endcapEventRate", "Digi event rate for all Endcap pixels", 1000, 0., 0.01);
339  EventRateEndcapPixels->setAxisTitle("Event Rate", 1);
340  EventRateEndcapPixels->setAxisTitle("Number of Pixels", 2);
341  }
342 }
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:36
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
virtual void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)

◆ computeStatus()

void SiPixelInformationExtractor::computeStatus ( MonitorElement theME,
double &  colorValue,
std::pair< double, double > &  norm 
)

(Documentation under construction).

Definition at line 217 of file SiPixelInformationExtractor.cc.

References dqm::impl::MonitorElement::getMean(), getMEType(), getNormalization(), getNormalization2D(), and mathSSE::sqrt().

217  {
218  double normalizationX = 1;
219  double normalizationY = 1;
220  double meanX = 0;
221  double meanY = 0;
222 
223  colorValue = 0;
224 
225  pair<double, double> normX;
226  pair<double, double> normY;
227 
228  string theMEType = getMEType(theME);
229 
230  if (theMEType.find("TH1") != string::npos) {
231  meanX = (double)theME->getMean();
232  getNormalization(theME, normX, "TH1");
233  normalizationX = fabs(normX.second - normX.first);
234  if (normalizationX == 0) {
235  normalizationX = 1.E-20;
236  }
237  colorValue = meanX / normalizationX;
238  norm.first = normX.first;
239  norm.second = normX.second;
240  }
241 
242  if (theMEType.find("TH2") != string::npos) {
243  meanX = (double)theME->getMean(1);
244  meanY = (double)theME->getMean(2);
245  getNormalization2D(theME, normX, normY, "TH2");
246  normalizationX = fabs(normX.second - normX.first);
247  normalizationY = fabs(normY.second - normY.first);
248  if (normalizationX == 0) {
249  normalizationX = 1.E-20;
250  }
251  if (normalizationY == 0) {
252  normalizationY = 1.E-20;
253  }
254  double cVX = meanX / normalizationX;
255  double cVY = meanY / normalizationY;
256  colorValue = sqrt(cVX * cVX + cVY * cVY);
257  if (normalizationX >= normalizationY) {
258  norm.first = normX.first;
259  norm.second = normX.second;
260  } else {
261  norm.first = normY.first;
262  norm.second = normY.second;
263  }
264  }
265 
266  return;
267 }
void getNormalization(MonitorElement *mE, std::pair< double, double > &norm, std::string theMEType)
(Documentation under construction).
T sqrt(T t)
Definition: SSEVec.h:19
void getNormalization2D(MonitorElement *mE, std::pair< double, double > &normX, std::pair< double, double > &normY, std::string theMEType)
(Documentation under construction).
std::string getMEType(MonitorElement *mE)
virtual double getMean(int axis=1) const
get mean value of histogram along x, y or z axis (axis=1, 2, 3 respectively)

◆ createDummiesFromLayout()

void SiPixelInformationExtractor::createDummiesFromLayout ( )
private

◆ findNoisyPixels()

void SiPixelInformationExtractor::findNoisyPixels ( DQMStore::IBooker iBooker,
DQMStore::IGetter iGetter,
bool  init,
float  noiseRate,
int  noiseRateDenominator,
const SiPixelFedCablingMap theCablingMap 
)

Definition at line 346 of file SiPixelInformationExtractor.cc.

References cms::cuda::assert(), dqm::implementation::NavigatorBase::cd(), sipixelobjects::ElectronicIndex::dcol, sipixelobjects::LocalPixel::DcolPxid::dcol, hgcalTestNeighbor_cfi::detector, hcalRecHitTable_cff::detId, RefreshWebPage::dname, endOfModules_, EventRateBarrelPixels, EventRateEndcapPixels, PixelSLinkDataInputSource_cfi::fedid, dqm::impl::MonitorElement::Fill(), SiPixelFedCablingMap::findItem(), dqm::implementation::IGetter::get(), getDetId(), dqm::implementation::IGetter::getMEs(), dqm::implementation::IGetter::getSubdirs(), dqm::implementation::NavigatorBase::goUp(), mps_fire::i, sipixelobjects::PixelROC::idInDetUnit(), PixelBarrelName::isHalfModule(), dqmiolumiharvest::j, sipixelobjects::ElectronicIndex::link, genParticles_cff::map, hlt_dqm_clientPB-live_cfg::me, myfile_, PixelBarrelName::name(), PixelEndcapName::name(), nevents_, noisyDetIds_, runTauDisplay::outputname, castor_dqm_sourceclient_file_cfg::path, dqm::implementation::NavigatorBase::pwd(), sipixelobjects::ElectronicIndex::pxid, sipixelobjects::LocalPixel::DcolPxid::pxid, sipixelobjects::ElectronicIndex::roc, sipixelobjects::LocalPixel::rocCol(), sipixelobjects::LocalPixel::rocRow(), dqm::implementation::NavigatorBase::setCurrentFolder(), AlCaHLTBitMon_QueryRunRegistry::string, SiPixelFrameConverter::toCabling(), and trackerHitRTTI::vector.

351  {
352  if (init) {
353  endOfModules_ = false;
354  nevents_ = noiseRateDenominator_;
355  if (nevents_ == -1) {
356  iBooker.cd();
357  iGetter.cd();
358  iBooker.setCurrentFolder("Pixel/EventInfo");
359  iGetter.setCurrentFolder("Pixel/EventInfo");
360  nevents_ = (iGetter.get("Pixel/EventInfo/processedEvents"))->getIntValue();
361  }
362  iBooker.cd();
363  iGetter.cd();
364  myfile_.open("NoisyPixelList.txt", ios::app);
365  myfile_ << "Noise summary, ran over " << nevents_ << " events, threshold was set to " << noiseRate_ << std::endl;
366  }
367  string currDir = iBooker.pwd();
368  string dname = currDir.substr(currDir.find_last_of('/') + 1);
369 
370  if (dname.find("Module_") != string::npos) {
371  vector<string> meVec = iGetter.getMEs();
372  for (vector<string>::const_iterator it = meVec.begin(); it != meVec.end(); it++) {
373  string full_path = currDir + "/" + (*it);
374  if (full_path.find("hitmap_siPixelDigis") != string::npos) {
375  MonitorElement *me = iGetter.get(full_path);
376  if (!me)
377  continue;
378  int detid = getDetId(me);
379  int pixcol = -1;
380  int pixrow = -1;
381  std::vector<std::pair<std::pair<int, int>, float>> noisyPixelsInModule;
382  TH2F *hothisto = me->getTH2F();
383  if (hothisto) {
384  for (int i = 1; i != hothisto->GetNbinsX() + 1; i++) {
385  for (int j = 1; j != hothisto->GetNbinsY() + 1; j++) {
386  float value = (hothisto->GetBinContent(i, j)) / float(nevents_);
387  if (me->getPathname().find("Barrel") != string::npos) {
388  EventRateBarrelPixels = iGetter.get("Pixel/Barrel/barrelEventRate");
391  } else if (me->getPathname().find("Endcap") != string::npos) {
392  EventRateEndcapPixels = iGetter.get("Pixel/Endcap/endcapEventRate");
395  }
396  if (value > noiseRate_) {
397  pixcol = i - 1;
398  pixrow = j - 1;
399 
400  std::pair<int, int> address(pixcol, pixrow);
401  std::pair<std::pair<int, int>, float> PixelStats(address, value);
402  noisyPixelsInModule.push_back(PixelStats);
403  }
404  }
405  }
406  }
407  noisyDetIds_[detid] = noisyPixelsInModule;
408  }
409  }
410  }
411  vector<string> subDirVec = iGetter.getSubdirs();
412  for (vector<string>::const_iterator ic = subDirVec.begin(); ic != subDirVec.end(); ic++) {
413  if ((*ic).find("AdditionalPixelErrors") != string::npos)
414  continue;
415  iGetter.cd(*ic);
416  iBooker.cd(*ic);
417  init = false;
418  findNoisyPixels(iBooker, iGetter, init, noiseRate_, noiseRateDenominator_, theCablingMap);
419  iBooker.goUp();
420  iGetter.setCurrentFolder(iBooker.pwd());
421  }
422 
423  if (iBooker.pwd().find("EventInfo") != string::npos)
424  endOfModules_ = true;
425 
426  if (!endOfModules_)
427  return;
428  if (currDir == "Pixel/EventInfo/reportSummaryContents") {
429  std::vector<std::pair<sipixelobjects::DetectorIndex, double>> pixelvec;
430  std::map<uint32_t, int> myfedmap;
431  std::map<uint32_t, std::string> mynamemap;
432  int realfedID = -1;
433  int n_noisyrocs_all = 0;
434  int n_noisyrocs_barrel = 0;
435  int n_noisyrocs_endcap = 0;
436  int n_verynoisyrocs_all = 0;
437  int n_verynoisyrocs_barrel = 0;
438  int n_verynoisyrocs_endcap = 0;
439 
440  for (int fid = 0; fid < 40; fid++) {
441  for (std::map<uint32_t, std::vector<std::pair<std::pair<int, int>, float>>>::const_iterator it =
442  noisyDetIds_.begin();
443  it != noisyDetIds_.end();
444  it++) {
445  uint32_t detid = (*it).first;
446  std::vector<std::pair<std::pair<int, int>, float>> noisyPixels = (*it).second;
447  // now convert into online conventions:
448  for (int fedid = 0; fedid <= 40; ++fedid) {
449  SiPixelFrameConverter converter(theCablingMap, fedid);
450  uint32_t newDetId = detid;
451  if (converter.hasDetUnit(newDetId)) {
452  realfedID = fedid;
453  break;
454  }
455  }
456  if (fid == realfedID) {
457  if (realfedID == -1)
458  continue;
459  DetId detId(detid);
460  uint32_t detSubId = detId.subdetId();
462  bool HalfModule = false;
463  if (detSubId == 2) { // FPIX
464  PixelEndcapName nameworker(detid);
465  outputname = nameworker.name();
466  } else if (detSubId == 1) { // BPIX
467  PixelBarrelName nameworker(detid);
468  outputname = nameworker.name();
469  HalfModule = nameworker.isHalfModule();
470 
471  } else {
472  continue;
473  }
474  std::map<int, int> myrocmap;
475  myfedmap[detid] = realfedID;
476  mynamemap[detid] = outputname;
477 
478  for (std::vector<std::pair<std::pair<int, int>, float>>::const_iterator pxl = noisyPixels.begin();
479  pxl != noisyPixels.end();
480  pxl++) {
481  std::pair<int, int> offlineaddress = (*pxl).first;
482  float Noise_frac = (*pxl).second;
483  int offlineColumn = offlineaddress.first;
484  int offlineRow = offlineaddress.second;
485 
487  SiPixelFrameConverter formatter(theCablingMap, realfedID);
488  sipixelobjects::DetectorIndex detector = {detid, offlineRow, offlineColumn};
489  formatter.toCabling(cabling, detector);
490  // cabling should now contain cabling.roc and cabling.dcol and
491  // cabling.pxid however, the coordinates now need to be converted
492  // from dcl,pxid to the row,col coordinates used in the calibration
493  // info
495  loc.dcol = cabling.dcol;
496  loc.pxid = cabling.pxid;
497 
498  sipixelobjects::LocalPixel locpixel(loc);
499  assert(realfedID >= 0);
500  assert(cabling.link >= 0);
501  assert(cabling.roc >= 0);
502  sipixelobjects::CablingPathToDetUnit path = {static_cast<unsigned int>(realfedID),
503  static_cast<unsigned int>(cabling.link),
504  static_cast<unsigned int>(cabling.roc)};
505  const sipixelobjects::PixelROC *theRoc = theCablingMap->findItem(path);
506  // END of FIX
507 
508  int onlineColumn = locpixel.rocCol();
509  int onlineRow = locpixel.rocRow();
510  myrocmap[(theRoc->idInDetUnit())]++;
511 
512  // ROC numbers in the barrel go from 8 to 15 instead of 0 to 7 in
513  // half modules. This is a fix to get the roc number, and add 8 to
514  // it if: it's a Barrel module AND on the minus side AND a Half
515  // module
516 
517  int rocnumber = -1;
518 
519  if ((detSubId == 1) && (outputname.find("mO") != string::npos || outputname.find("mI") != string::npos) &&
520  (HalfModule)) {
521  rocnumber = theRoc->idInDetUnit() + 8;
522  } else {
523  rocnumber = theRoc->idInDetUnit();
524  }
525 
526  myfile_ << "NAME: " << outputname << " , DETID: " << detid << " , OFFLINE: col,row: " << offlineColumn
527  << "," << offlineRow << " \t , ONLINE: roc,col,row: " << rocnumber << "," << onlineColumn << ","
528  << onlineRow << " \t , fed,dcol,pixid,link: " << realfedID << "," << loc.dcol << "," << loc.pxid
529  << "," << cabling.link << ", Noise fraction: " << Noise_frac << std::endl;
530  }
531  for (std::map<int, int>::const_iterator nrc = myrocmap.begin(); nrc != myrocmap.end(); nrc++) {
532  if ((*nrc).second > 0) {
533  n_noisyrocs_all++;
534  if (detSubId == 2) {
535  n_noisyrocs_endcap++;
536  } else if (detSubId == 1) {
537  n_noisyrocs_barrel++;
538  }
539  }
540  if ((*nrc).second > 40) {
541  n_verynoisyrocs_all++;
542  if (detSubId == 2) {
543  n_verynoisyrocs_endcap++;
544  } else if (detSubId == 1) {
545  n_verynoisyrocs_barrel++;
546  }
547  }
548  }
549  }
550  }
551  }
552  myfile_ << "There are " << n_noisyrocs_all
553  << " noisy ROCs (ROCs with at least 1 noisy pixel) in the entire "
554  "detector. "
555  << n_noisyrocs_endcap << " are in the FPIX and " << n_noisyrocs_barrel << " are in the BPIX. " << endl;
556  myfile_ << "There are " << n_verynoisyrocs_all
557  << " highly noisy ROCs (ROCs with at least 10% of all pixels "
558  "passing the noise threshold) in the entire detector. "
559  << n_verynoisyrocs_endcap << " are in the FPIX and " << n_verynoisyrocs_barrel << " are in the BPIX. "
560  << endl;
561  }
562  myfile_.close();
563  return;
564 }
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:36
virtual std::vector< std::string > getMEs() const
Definition: DQMStore.cc:759
virtual std::string pwd()
Definition: DQMStore.cc:20
assert(be >=bs)
identify pixel inside single ROC
Definition: LocalPixel.h:7
void Fill(long long x)
void findNoisyPixels(DQMStore::IBooker &iBooker, DQMStore::IGetter &iGetter, bool init, float noiseRate, int noiseRateDenominator, const SiPixelFedCablingMap *theCablingMap)
const sipixelobjects::PixelROC * findItem(const sipixelobjects::CablingPathToDetUnit &path) const final
Definition: value.py:1
double collumn and pixel ID in double collumn representation
Definition: LocalPixel.h:19
Definition: init.py:1
std::map< uint32_t, std::vector< std::pair< std::pair< int, int >, float > > > noisyDetIds_
Definition: DetId.h:17
virtual MonitorElement * get(std::string const &fullpath) const
Definition: DQMStore.cc:712
int getDetId(MonitorElement *mE)
(Documentation under construction).
unsigned int idInDetUnit() const
id of this ROC in DetUnit etermined by token path
Definition: PixelROC.h:37
virtual DQM_DEPRECATED std::vector< std::string > getSubdirs() const
Definition: DQMStore.cc:739

◆ getDetId()

int SiPixelInformationExtractor::getDetId ( MonitorElement mE)

(Documentation under construction).

Given a pointer to ME returns the associated detId

Definition at line 312 of file SiPixelInformationExtractor.cc.

References hcalRecHitTable_cff::detId, and dqm::impl::MonitorElement::getName().

Referenced by findNoisyPixels().

312  {
313  const string &mEName = mE->getName();
314 
315  int detId = 0;
316 
317  if (mEName.find("_3") != string::npos) {
318  string detIdString = mEName.substr((mEName.find_last_of('_')) + 1, 9);
319  std::istringstream isst;
320  isst.str(detIdString);
321  isst >> detId;
322  }
323  return detId;
324 }
const std::string & getName() const
get name of ME

◆ getItemList()

void SiPixelInformationExtractor::getItemList ( const std::multimap< std::string, std::string > &  req_map,
std::string  item_name,
std::vector< std::string > &  items 
)
private

(Documentation under construction).

This method

Definition at line 109 of file SiPixelInformationExtractor.cc.

References mps_monitormerge::items.

111  {
112  items.clear();
113  for (multimap<string, string>::const_iterator it = req_map.begin(); it != req_map.end(); it++) {
114  if (it->first == item_name) {
115  items.push_back(it->second);
116  }
117  }
118 }

◆ getItemValue() [1/2]

std::string SiPixelInformationExtractor::getItemValue ( const std::multimap< std::string, std::string > &  req_map,
std::string  item_name 
)
private

(Documentation under construction).

This method

Definition at line 137 of file SiPixelInformationExtractor.cc.

References AlCaHLTBitMon_QueryRunRegistry::string, and relativeConstraints::value.

138  {
139  std::multimap<std::string, std::string>::const_iterator pos = req_map.find(item_name);
140  std::string value = " ";
141  if (pos != req_map.end()) {
142  value = pos->second;
143  }
144  return value;
145 }
Definition: value.py:1

◆ getItemValue() [2/2]

std::string SiPixelInformationExtractor::getItemValue ( std::multimap< std::string, std::string > &  req_map,
std::string  item_name 
)
private

Definition at line 146 of file SiPixelInformationExtractor.cc.

References AlCaHLTBitMon_QueryRunRegistry::string, and relativeConstraints::value.

147  {
148  std::multimap<std::string, std::string>::iterator pos = req_map.find(item_name);
149  std::string value = " ";
150  if (pos != req_map.end()) {
151  value = pos->second;
152  }
153  return value;
154 }
Definition: value.py:1

◆ getMEType()

std::string SiPixelInformationExtractor::getMEType ( MonitorElement mE)

Definition at line 92 of file SiPixelInformationExtractor.cc.

References dqm::legacy::MonitorElement::getRootObject().

Referenced by computeStatus().

92  {
93  string qtype = theMe->getRootObject()->IsA()->GetName();
94  if (qtype.find("TH1") != string::npos) {
95  return "TH1";
96  } else if (qtype.find("TH2") != string::npos) {
97  return "TH2";
98  } else if (qtype.find("TH3") != string::npos) {
99  return "TH3";
100  }
101  return "TH1";
102 }

◆ getNormalization()

void SiPixelInformationExtractor::getNormalization ( MonitorElement theME,
std::pair< double, double > &  norm,
std::string  theMEType 
)

(Documentation under construction).

Definition at line 273 of file SiPixelInformationExtractor.cc.

References dqm::impl::MonitorElement::getNbinsX().

Referenced by computeStatus().

275  {
276  double normLow = 0;
277  double normHigh = 0;
278 
279  if (theMEType.find("TH1") != string::npos) {
280  normHigh = (double)theME->getNbinsX();
281  norm.first = normLow;
282  norm.second = normHigh;
283  }
284 }
virtual int getNbinsX() const
get # of bins in X-axis

◆ getNormalization2D()

void SiPixelInformationExtractor::getNormalization2D ( MonitorElement theME,
std::pair< double, double > &  normX,
std::pair< double, double > &  normY,
std::string  theMEType 
)

(Documentation under construction).

Definition at line 290 of file SiPixelInformationExtractor.cc.

References dqm::impl::MonitorElement::getNbinsX(), and dqm::impl::MonitorElement::getNbinsY().

Referenced by computeStatus().

293  {
294  double normLow = 0;
295  double normHigh = 0;
296 
297  if (theMEType.find("TH2") != string::npos) {
298  normHigh = (double)theME->getNbinsX();
299  normX.first = normLow;
300  normX.second = normHigh;
301  normHigh = (double)theME->getNbinsY();
302  normY.first = normLow;
303  normY.second = normHigh;
304  }
305 }
virtual int getNbinsY() const
get # of bins in Y-axis
virtual int getNbinsX() const
get # of bins in X-axis

◆ hasItem()

bool SiPixelInformationExtractor::hasItem ( std::multimap< std::string, std::string > &  req_map,
std::string  item_name 
)
private

(Documentation under construction).

This method

Definition at line 125 of file SiPixelInformationExtractor.cc.

125  {
126  multimap<string, string>::iterator pos = req_map.find(item_name);
127  if (pos != req_map.end())
128  return true;
129  return false;
130 }

◆ readConfiguration() [1/2]

void SiPixelInformationExtractor::readConfiguration ( )

Read Configuration File.

Definition at line 87 of file SiPixelInformationExtractor.cc.

87 {}

◆ readConfiguration() [2/2]

bool SiPixelInformationExtractor::readConfiguration ( std::map< std::string, std::vector< std::string >> &  layoutMap,
std::map< std::string, std::map< std::string, std::string >> &  qtestsMap,
std::map< std::string, std::vector< std::string >> &  meQTestsMap 
)

◆ selectColor() [1/2]

void SiPixelInformationExtractor::selectColor ( std::string &  col,
int  status 
)
private

◆ selectColor() [2/2]

void SiPixelInformationExtractor::selectColor ( std::string &  col,
std::vector< QReport *> &  reports 
)
private

◆ selectImage() [1/2]

void SiPixelInformationExtractor::selectImage ( std::string &  name,
int  status 
)
private

◆ selectImage() [2/2]

void SiPixelInformationExtractor::selectImage ( std::string &  name,
std::vector< QReport *> &  reports 
)
private

Member Data Documentation

◆ actionExecutor_

SiPixelActionExecutor* SiPixelInformationExtractor::actionExecutor_
private

Definition at line 81 of file SiPixelInformationExtractor.h.

◆ alarmCounter_

int SiPixelInformationExtractor::alarmCounter_
private

Definition at line 77 of file SiPixelInformationExtractor.h.

◆ BarrelNdigisFREQProjection

MonitorElement* SiPixelInformationExtractor::BarrelNdigisFREQProjection
private

Definition at line 107 of file SiPixelInformationExtractor.h.

◆ configParser_

SiPixelConfigParser* SiPixelInformationExtractor::configParser_
private

Definition at line 79 of file SiPixelInformationExtractor.h.

◆ configWriter_

SiPixelConfigWriter* SiPixelInformationExtractor::configWriter_
private

Definition at line 80 of file SiPixelInformationExtractor.h.

◆ count

int SiPixelInformationExtractor::count
private

◆ EndcapNdigisFREQProjection

MonitorElement* SiPixelInformationExtractor::EndcapNdigisFREQProjection
private

Definition at line 106 of file SiPixelInformationExtractor.h.

◆ endOfModules_

bool SiPixelInformationExtractor::endOfModules_
private

Definition at line 101 of file SiPixelInformationExtractor.h.

Referenced by findNoisyPixels().

◆ errcount

int SiPixelInformationExtractor::errcount
private

Definition at line 95 of file SiPixelInformationExtractor.h.

◆ EventRateBarrelPixels

MonitorElement* SiPixelInformationExtractor::EventRateBarrelPixels
private

Definition at line 103 of file SiPixelInformationExtractor.h.

Referenced by bookNoisyPixels(), and findNoisyPixels().

◆ EventRateEndcapPixels

MonitorElement* SiPixelInformationExtractor::EventRateEndcapPixels
private

Definition at line 104 of file SiPixelInformationExtractor.h.

Referenced by bookNoisyPixels(), and findNoisyPixels().

◆ flagHotModule_

bool SiPixelInformationExtractor::flagHotModule_
private

Definition at line 91 of file SiPixelInformationExtractor.h.

◆ gotDigis

bool SiPixelInformationExtractor::gotDigis
private

Definition at line 96 of file SiPixelInformationExtractor.h.

◆ layoutMap

std::map<std::string, std::vector<std::string> > SiPixelInformationExtractor::layoutMap
private

Definition at line 84 of file SiPixelInformationExtractor.h.

◆ layoutParser_

SiPixelLayoutParser* SiPixelInformationExtractor::layoutParser_
private

Definition at line 82 of file SiPixelInformationExtractor.h.

◆ meQTestsMap

std::map<std::string, std::vector<std::string> > SiPixelInformationExtractor::meQTestsMap
private

Definition at line 86 of file SiPixelInformationExtractor.h.

◆ myfile_

std::ofstream SiPixelInformationExtractor::myfile_
private

Definition at line 98 of file SiPixelInformationExtractor.h.

Referenced by findNoisyPixels().

◆ nevents_

int SiPixelInformationExtractor::nevents_
private

Definition at line 99 of file SiPixelInformationExtractor.h.

Referenced by findNoisyPixels().

◆ noisyDetIds_

std::map<uint32_t, std::vector<std::pair<std::pair<int, int>, float> > > SiPixelInformationExtractor::noisyDetIds_
private

Definition at line 100 of file SiPixelInformationExtractor.h.

Referenced by findNoisyPixels().

◆ offlineXMLfile_

bool SiPixelInformationExtractor::offlineXMLfile_
private

Definition at line 92 of file SiPixelInformationExtractor.h.

◆ qtestsMap

std::map<std::string, std::map<std::string, std::string> > SiPixelInformationExtractor::qtestsMap
private

Definition at line 85 of file SiPixelInformationExtractor.h.

◆ readMeMap_

bool SiPixelInformationExtractor::readMeMap_
private

Definition at line 90 of file SiPixelInformationExtractor.h.

◆ readQTestMap_

bool SiPixelInformationExtractor::readQTestMap_
private

Definition at line 89 of file SiPixelInformationExtractor.h.

◆ readReference_

bool SiPixelInformationExtractor::readReference_
private

Definition at line 88 of file SiPixelInformationExtractor.h.

Referenced by SiPixelInformationExtractor().