CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RPCDeadChannelTest.cc
Go to the documentation of this file.
1 /* * \author Anna Cimmino*/
5 // Framework
7 // Geometry
11 
13  edm::LogVerbatim("rpcdeadchanneltest") << "[RPCDeadChannelTest]: Constructor";
14 
15  useRollInfo_ = ps.getUntrackedParameter<bool>("UseRollInfo", false);
16 
17  prescaleFactor_ = ps.getUntrackedParameter<int>("DiagnosticPrescale", 1);
18  numberOfDisks_ = ps.getUntrackedParameter<int>("NumberOfEndcapDisks", 4);
19  numberOfRings_ = ps.getUntrackedParameter<int>("NumberOfEndcapRings", 2);
20 }
21 
23  edm::LogVerbatim("rpcdeadchanneltest") << "[RPCDeadChannelTest]: Begin Job";
24  globalFolder_ = workingFolder;
25 }
26 
27 void RPCDeadChannelTest::getMonitorElements(std::vector<MonitorElement*>& meVector,
28  std::vector<RPCDetId>& detIdVector,
29  std::string& clientHistoName) {
30  for (unsigned int i = 0; i < meVector.size(); i++) {
31  std::string meName = meVector[i]->getName();
32 
33  if (meName.find(clientHistoName) != std::string::npos) {
34  myOccupancyMe_.push_back(meVector[i]);
35  myDetIds_.push_back(detIdVector[i]);
36  }
37  }
38 }
39 
41  edm::LogVerbatim("rpcdeadchanneltest") << "[RPCDeadChannelTest]:Client Operation";
42 
43  MonitorElement* DEAD = nullptr;
44 
45  //Loop on chambers
46  for (unsigned int i = 0; i < myOccupancyMe_.size(); i++) {
47  RPCDetId& detId = myDetIds_[i];
49 
50  if (!myMe)
51  continue;
52 
53  const QReport* theOccupancyQReport = myMe->getQReport("DeadChannel_0");
54 
55  float deadFraction = 0.0;
56 
57  if (theOccupancyQReport) {
58  float qtresult = theOccupancyQReport->getQTresult();
59  // std::vector<dqm::me_util::Channel> badChannels = theOccupancyQReport->getBadChannels();
60  deadFraction = 1.0 - qtresult;
61 
62  } else {
63  int xBins = myMe->getNbinsX();
64  float emptyBins = 0.0;
65  for (int x = 1; x <= xBins; x++) {
66  if (myMe->getBinContent(x) == 0) {
67  emptyBins++;
68  }
69  }
70  if (xBins != 0) {
71  deadFraction = emptyBins / xBins;
72  }
73  }
74 
75  if (detId.region() == 0)
76  DEAD = DEADWheel[detId.ring() + 2];
77  else {
78  if (-detId.station() + numberOfDisks_ >= 0) {
79  if (detId.region() < 0) {
80  DEAD = DEADDisk[-detId.station() + numberOfDisks_];
81  } else {
82  DEAD = DEADDisk[detId.station() + numberOfDisks_ - 1];
83  }
84  }
85  }
86 
87  if (DEAD) {
88  int xBin, yBin;
89  if (detId.region() == 0) { //Barrel
90  xBin = detId.sector();
91  rpcdqm::utils rollNumber;
92  yBin = rollNumber.detId2RollNr(detId);
93  } else { //Endcap
94  //get segment number
95  RPCGeomServ RPCServ(detId);
96  xBin = RPCServ.segment();
97  (numberOfRings_ == 3 ? yBin = detId.ring() * 3 - detId.roll() + 1
98  : yBin = (detId.ring() - 1) * 3 - detId.roll() + 1);
99  }
100  DEAD->setBinContent(xBin, yBin, deadFraction);
101  }
102 
103  } //End loop on rolls in given chambers
104 }
105 
108 
109  std::stringstream histoName;
110 
111  int limit = numberOfDisks_;
112  if (numberOfDisks_ < 2)
113  limit = 2;
114 
115  for (int i = -1 * limit; i <= limit; i++) { //loop on wheels and disks
116  if (i > -3 && i < 3) { //wheels
117  histoName.str("");
118  histoName << "DeadChannelFraction_Roll_vs_Sector_Wheel" << i;
119  auto me = RPCRollMapHisto::bookBarrel(ibooker, i, histoName.str(), histoName.str(), useRollInfo_);
120  DEADWheel[i + 2] = dynamic_cast<MonitorElement*>(me);
121 
122  for (int x = 1; x <= 12; x++) {
123  for (int y = 1; y <= 21; y++) {
124  DEADWheel[i + 2]->setBinContent(x, y, -1);
125  }
126  }
127 
128  } //end wheels
129 
130  if (i == 0 || i > numberOfDisks_ || i < (-1 * numberOfDisks_)) {
131  continue;
132  }
133 
134  int offset = numberOfDisks_;
135  if (i > 0) {
136  offset--;
137  } //used to skip case equale to zero
138 
139  histoName.str("");
140  histoName << "DeadChannelFraction_Ring_vs_Segment_Disk" << i;
141  auto me = RPCRollMapHisto::bookBarrel(ibooker, i, histoName.str(), histoName.str(), useRollInfo_);
142  DEADDisk[i + offset] = dynamic_cast<MonitorElement*>(me);
143  } //end loop on wheels and disks
144 }
void clientOperation() override
Log< level::Info, true > LogVerbatim
T getUntrackedParameter(std::string const &, T const &) const
void getMonitorElements(std::vector< MonitorElement * > &, std::vector< RPCDetId > &, std::string &) override
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
MonitorElement * DEADWheel[5]
tuple yBin
Definition: cuy.py:892
void beginJob(std::string &) override
const MonitorElementData::QReport * getQReport(const std::string &qtname) const
get QReport corresponding to &lt;qtname&gt; (null pointer if QReport does not exist)
int roll() const
Definition: RPCDetId.h:92
virtual int getNbinsX() const
get # of bins in X-axis
int ring() const
Definition: RPCDetId.h:59
void myBooker(DQMStore::IBooker &) override
virtual double getBinContent(int binx) const
get content of bin (1-D)
std::vector< MonitorElement * > myOccupancyMe_
virtual int segment()
Definition: RPCGeomServ.cc:361
int detId2RollNr(const RPCDetId &_id)
Definition: utils.h:31
virtual void setBinContent(int binx, double content)
set content of bin (1-D)
std::vector< RPCDetId > myDetIds_
static MonitorElement * bookBarrel(IBooker &booker, const int wheel, const std::string &prefix, const std::string &title, const bool useRollInfo)
int sector() const
Sector id: the group of chambers at same phi (and increasing r)
Definition: RPCDetId.h:81
float getQTresult() const
get test result i.e. prob value
RPCDeadChannelTest(const edm::ParameterSet &ps)
MonitorElement * DEADDisk[10]
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:53
int station() const
Definition: RPCDetId.h:78