CMS 3D CMS Logo

RPCDeadChannelTest.cc
Go to the documentation of this file.
1 /* * \author Anna Cimmino*/
4 // Framework
6 // Geometry
10 
11 #include <sstream>
12 
14  edm::LogVerbatim("rpcdeadchanneltest") << "[RPCDeadChannelTest]: Constructor";
15 
16  useRollInfo_ = ps.getUntrackedParameter<bool>("UseRollInfo", false);
17 
18  prescaleFactor_ = ps.getUntrackedParameter<int>("DiagnosticPrescale", 1);
19  numberOfDisks_ = ps.getUntrackedParameter<int>("NumberOfEndcapDisks", 4);
20  numberOfRings_ = ps.getUntrackedParameter<int>("NumberOfEndcapRings", 2);
21 }
22 
24 
26  edm::LogVerbatim("rpcdeadchanneltest") << "[RPCDeadChannelTest]: Begin Job";
27  globalFolder_ = workingFolder;
28 }
29 
30 void RPCDeadChannelTest::getMonitorElements(std::vector<MonitorElement*>& meVector,
31  std::vector<RPCDetId>& detIdVector,
32  std::string& clientHistoName) {
33  for (unsigned int i = 0; i < meVector.size(); i++) {
34  std::string meName = meVector[i]->getName();
35 
36  if (meName.find(clientHistoName) != std::string::npos) {
37  myOccupancyMe_.push_back(meVector[i]);
38  myDetIds_.push_back(detIdVector[i]);
39  }
40  }
41 }
42 
44  edm::LogVerbatim("rpcdeadchanneltest") << "[RPCDeadChannelTest]:Client Operation";
45 
46  MonitorElement* DEAD = nullptr;
47 
48  //Loop on chambers
49  for (unsigned int i = 0; i < myOccupancyMe_.size(); i++) {
50  RPCDetId& detId = myDetIds_[i];
52 
53  if (!myMe)
54  continue;
55 
56  const QReport* theOccupancyQReport = myMe->getQReport("DeadChannel_0");
57 
58  float deadFraction = 0.0;
59 
60  if (theOccupancyQReport) {
61  float qtresult = theOccupancyQReport->getQTresult();
62  // std::vector<dqm::me_util::Channel> badChannels = theOccupancyQReport->getBadChannels();
63  deadFraction = 1.0 - qtresult;
64 
65  } else {
66  int xBins = myMe->getNbinsX();
67  float emptyBins = 0.0;
68  for (int x = 1; x <= xBins; x++) {
69  if (myMe->getBinContent(x) == 0) {
70  emptyBins++;
71  }
72  }
73  if (xBins != 0) {
74  deadFraction = emptyBins / xBins;
75  }
76  }
77 
78  if (detId.region() == 0)
79  DEAD = DEADWheel[detId.ring() + 2];
80  else {
81  if (-detId.station() + numberOfDisks_ >= 0) {
82  if (detId.region() < 0) {
83  DEAD = DEADDisk[-detId.station() + numberOfDisks_];
84  } else {
85  DEAD = DEADDisk[detId.station() + numberOfDisks_ - 1];
86  }
87  }
88  }
89 
90  if (DEAD) {
91  int xBin, yBin;
92  if (detId.region() == 0) { //Barrel
93  xBin = detId.sector();
94  rpcdqm::utils rollNumber;
95  yBin = rollNumber.detId2RollNr(detId);
96  } else { //Endcap
97  //get segment number
98  RPCGeomServ RPCServ(detId);
99  xBin = RPCServ.segment();
100  (numberOfRings_ == 3 ? yBin = detId.ring() * 3 - detId.roll() + 1
101  : yBin = (detId.ring() - 1) * 3 - detId.roll() + 1);
102  }
103  DEAD->setBinContent(xBin, yBin, deadFraction);
104  }
105 
106  } //End loop on rolls in given chambers
107 }
108 
111 
112  std::stringstream histoName;
113 
114  rpcdqm::utils rpcUtils;
115 
116  int limit = numberOfDisks_;
117  if (numberOfDisks_ < 2)
118  limit = 2;
119 
120  for (int i = -1 * limit; i <= limit; i++) { //loop on wheels and disks
121  if (i > -3 && i < 3) { //wheels
122  histoName.str("");
123  histoName << "DeadChannelFraction_Roll_vs_Sector_Wheel" << i;
124  DEADWheel[i + 2] = ibooker.book2D(histoName.str().c_str(), histoName.str().c_str(), 12, 0.5, 12.5, 21, 0.5, 21.5);
125 
126  for (int x = 1; x <= 12; x++) {
127  for (int y = 1; y <= 21; y++) {
128  DEADWheel[i + 2]->setBinContent(x, y, -1);
129  }
130  }
131 
132  rpcUtils.labelXAxisSector(DEADWheel[i + 2]);
133  rpcUtils.labelYAxisRoll(DEADWheel[i + 2], 0, i, useRollInfo_);
134  } //end wheels
135 
136  if (i == 0 || i > numberOfDisks_ || i < (-1 * numberOfDisks_)) {
137  continue;
138  }
139 
140  int offset = numberOfDisks_;
141  if (i > 0) {
142  offset--;
143  } //used to skip case equale to zero
144 
145  histoName.str("");
146  histoName << "DeadChannelFraction_Ring_vs_Segment_Disk" << i;
147  DEADDisk[i + offset] = ibooker.book2D(histoName.str().c_str(),
148  histoName.str().c_str(),
149  36,
150  0.5,
151  36.5,
152  3 * numberOfRings_,
153  0.5,
154  3 * numberOfRings_ + 0.5);
155 
156  rpcUtils.labelXAxisSegment(DEADDisk[i + offset]);
157  rpcUtils.labelYAxisRing(DEADDisk[i + offset], numberOfRings_, useRollInfo_);
158 
159  } //end loop on wheels and disks
160 }
void clientOperation() override
T getUntrackedParameter(std::string const &, T const &) const
~RPCDeadChannelTest() override
Destructor.
void getMonitorElements(std::vector< MonitorElement * > &, std::vector< RPCDetId > &, std::string &) override
MonitorElement * DEADWheel[5]
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:418
void beginJob(std::string &) override
void labelXAxisSegment(MonitorElement *myMe)
Definition: utils.h:247
void labelYAxisRoll(MonitorElement *myMe, int region, int ring, bool useRollInfo)
Definition: utils.h:265
const QReport * getQReport(const std::string &qtname) const
get QReport corresponding to <qtname> (null pointer if QReport does not exist)
void labelYAxisRing(MonitorElement *myMe, int numberOfRings, bool useRollInfo)
Definition: utils.h:291
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)
void labelXAxisSector(MonitorElement *myMe)
Definition: utils.h:231
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_
int sector() const
Sector id: the group of chambers at same phi (and increasing r)
Definition: RPCDetId.h:81
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Definition: DQMStore.cc:266
float getQTresult() const
get test result i.e. prob value
Definition: QReport.h:27
RPCDeadChannelTest(const edm::ParameterSet &ps)
Constructor.
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