CMS 3D CMS Logo

RPCOccupancyTest.cc
Go to the documentation of this file.
1 /* \author Anna Cimmino*/
2 //#include <cmath>
3 #include <sstream>
6 
7 // Framework
9 //Geometry
11 
13  edm::LogVerbatim("rpceventsummary") << "[RPCOccupancyTest]: Constructor";
14 
15  prescaleFactor_ = ps.getUntrackedParameter<int>("DiagnosticPrescale", 1);
16  numberOfDisks_ = ps.getUntrackedParameter<int>("NumberOfEndcapDisks", 4);
17  numberOfRings_ = ps.getUntrackedParameter<int>("NumberOfEndcapRings", 2);
18  useNormalization_ = ps.getUntrackedParameter<bool>("testMode", true);
19  useRollInfo_ = ps.getUntrackedParameter<bool>("useRollInfo_", false);
20 
21  std::string subsystemFolder = ps.getUntrackedParameter<std::string>("RPCFolder", "RPC");
22  std::string recHitTypeFolder = ps.getUntrackedParameter<std::string>("RecHitTypeFolder", "AllHits");
23 
24  prefixDir_ = subsystemFolder + "/" + recHitTypeFolder;
25 }
26 
28 
30  edm::LogVerbatim("rpceventsummary") << "[RPCOccupancyTest]: Begin job ";
31  globalFolder_ = workingFolder;
32 
33  totalStrips_ = 0.;
34  totalActive_ = 0.;
35 }
36 
37 void RPCOccupancyTest::getMonitorElements(std::vector<MonitorElement*>& meVector,
38  std::vector<RPCDetId>& detIdVector,
39  std::string& clientHistoName) {
40  //Get NumberOfDigi ME for each roll
41  for (unsigned int i = 0; i < meVector.size(); i++) {
42  std::string meName = meVector[i]->getName();
43 
44  if (meName.find(clientHistoName) != std::string::npos) {
45  myOccupancyMe_.push_back(meVector[i]);
46  myDetIds_.push_back(detIdVector[i]);
47  }
48  }
49 }
50 
52  edm::LogVerbatim("rpceventsummary") << "[RPCOccupancyTest]: Client Operation";
53 
54  //Loop on MEs
55  for (unsigned int i = 0; i < myOccupancyMe_.size(); i++) {
57  } //End loop on MEs
58 
59  //Active Channels
60  if (Active_Fraction && totalStrips_ != 0.) {
62  }
63  if (Active_Dead) {
66  }
67 }
68 
71 
72  std::stringstream histoName;
73  rpcdqm::utils rpcUtils;
74 
75  histoName.str("");
76  histoName << "RPC_Active_Channel_Fractions";
77  Active_Fraction = ibooker.book1D(histoName.str().c_str(), histoName.str().c_str(), 1, 0.5, 1.5);
78  Active_Fraction->setBinLabel(1, "Active Fraction", 1);
79 
80  histoName.str("");
81  histoName << "RPC_Active_Inactive_Strips";
82  Active_Dead = ibooker.book1D(histoName.str().c_str(), histoName.str().c_str(), 2, 0.5, 2.5);
83  Active_Dead->setBinLabel(1, "Active Strips", 1);
84  Active_Dead->setBinLabel(2, "Inactive Strips", 1);
85 
86  for (int w = -2; w <= 2; w++) { //loop on wheels
87 
88  histoName.str("");
89  histoName << "AsymmetryLeftRight_Roll_vs_Sector_Wheel" << w;
90 
91  AsyMeWheel[w + 2] = ibooker.book2D(histoName.str().c_str(), histoName.str().c_str(), 12, 0.5, 12.5, 21, 0.5, 21.5);
92 
93  rpcUtils.labelXAxisSector(AsyMeWheel[w + 2]);
94  rpcUtils.labelYAxisRoll(AsyMeWheel[w + 2], 0, w, useRollInfo_);
95 
96  } //end Barrel
97 
98  for (int d = -numberOfDisks_; d <= numberOfDisks_; d++) {
99  if (d == 0)
100  continue;
101 
102  int offset = numberOfDisks_;
103  if (d > 0)
104  offset--; //used to skip case equale to zero
105 
106  histoName.str("");
107  histoName << "AsymmetryLeftRight_Ring_vs_Segment_Disk" << d;
108  AsyMeDisk[d + offset] = ibooker.book2D(histoName.str().c_str(),
109  histoName.str().c_str(),
110  36,
111  0.5,
112  36.5,
113  3 * numberOfRings_,
114  0.5,
115  3 * numberOfRings_ + 0.5);
116 
117  rpcUtils.labelXAxisSegment(AsyMeDisk[d + offset]);
118  rpcUtils.labelYAxisRing(AsyMeDisk[d + offset], numberOfRings_, useRollInfo_);
119 
120  } //End loop on Endcap
121 }
122 
124  if (!myMe)
125  return;
126 
127  MonitorElement* AsyMe = nullptr; //Left Right Asymetry
128 
129  if (detId.region() == 0) {
130  AsyMe = AsyMeWheel[detId.ring() + 2];
131 
132  } else {
133  if (-detId.station() + numberOfDisks_ >= 0) {
134  if (detId.region() < 0) {
135  AsyMe = AsyMeDisk[-detId.station() + numberOfDisks_];
136  } else {
137  AsyMe = AsyMeDisk[detId.station() + numberOfDisks_ - 1];
138  }
139  }
140  }
141 
142  int xBin, yBin;
143  if (detId.region() == 0) { //Barrel
144  xBin = detId.sector();
145  rpcdqm::utils rollNumber;
146  yBin = rollNumber.detId2RollNr(detId);
147  } else { //Endcap
148  //get segment number
149  RPCGeomServ RPCServ(detId);
150  xBin = RPCServ.segment();
151  (numberOfRings_ == 3 ? yBin = detId.ring() * 3 - detId.roll() + 1
152  : yBin = (detId.ring() - 1) * 3 - detId.roll() + 1);
153  }
154 
155  int stripInRoll = myMe->getNbinsX();
156  totalStrips_ += (float)stripInRoll;
157  float FOccupancy = 0;
158  float BOccupancy = 0;
159 
160  float totEnt = myMe->getEntries();
161  for (int strip = 1; strip <= stripInRoll; strip++) {
162  float stripEntries = myMe->getBinContent(strip);
163  if (stripEntries > 0) {
164  totalActive_++;
165  }
166  if (strip <= stripInRoll / 2) {
167  FOccupancy += myMe->getBinContent(strip);
168  } else {
169  BOccupancy += myMe->getBinContent(strip);
170  }
171  }
172 
173  float asym = 0;
174  if (totEnt != 0)
175  asym = fabs((FOccupancy - BOccupancy) / totEnt);
176 
177  if (AsyMe)
178  AsyMe->setBinContent(xBin, yBin, asym);
179 }
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX)
Definition: DQMStore.cc:239
T getUntrackedParameter(std::string const &, T const &) const
void clientOperation() override
MonitorElement * AsyMeWheel[5]
const double w
Definition: UKUtility.cc:23
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:418
void labelXAxisSegment(MonitorElement *myMe)
Definition: utils.h:247
void labelYAxisRoll(MonitorElement *myMe, int region, int ring, bool useRollInfo)
Definition: utils.h:265
MonitorElement * Active_Fraction
std::vector< RPCDetId > myDetIds_
void labelYAxisRing(MonitorElement *myMe, int numberOfRings, bool useRollInfo)
Definition: utils.h:291
int roll() const
Definition: RPCDetId.h:92
~RPCOccupancyTest() override
virtual int getNbinsX() const
get # of bins in X-axis
virtual double getEntries() const
get # of entries
int ring() const
Definition: RPCDetId.h:59
MonitorElement * AsyMeDisk[10]
std::string globalFolder_
virtual void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
virtual double getBinContent(int binx) const
get content of bin (1-D)
void labelXAxisSector(MonitorElement *myMe)
Definition: utils.h:231
d
Definition: ztail.py:151
void fillGlobalME(RPCDetId &, MonitorElement *)
void myBooker(DQMStore::IBooker &) override
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)
MonitorElement * Active_Dead
int sector() const
Sector id: the group of chambers at same phi (and increasing r)
Definition: RPCDetId.h:81
std::string prefixDir_
RPCOccupancyTest(const edm::ParameterSet &ps)
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Definition: DQMStore.cc:266
void getMonitorElements(std::vector< MonitorElement * > &, std::vector< RPCDetId > &, std::string &) override
void beginJob(std::string &) override
std::vector< MonitorElement * > myOccupancyMe_
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:53
int station() const
Definition: RPCDetId.h:78