CMS 3D CMS Logo

RPCOccupancyTest.cc
Go to the documentation of this file.
1 /* \author Anna Cimmino*/
5 
6 // Framework
8 //Geometry
10 
12  edm::LogVerbatim("rpceventsummary") << "[RPCOccupancyTest]: Constructor";
13 
14  prescaleFactor_ = ps.getUntrackedParameter<int>("DiagnosticPrescale", 1);
15  numberOfDisks_ = ps.getUntrackedParameter<int>("NumberOfEndcapDisks", 4);
16  numberOfRings_ = ps.getUntrackedParameter<int>("NumberOfEndcapRings", 2);
17  useNormalization_ = ps.getUntrackedParameter<bool>("testMode", true);
18  useRollInfo_ = ps.getUntrackedParameter<bool>("useRollInfo_", false);
19 
20  std::string subsystemFolder = ps.getUntrackedParameter<std::string>("RPCFolder", "RPC");
21  std::string recHitTypeFolder = ps.getUntrackedParameter<std::string>("RecHitTypeFolder", "AllHits");
22 
23  prefixDir_ = subsystemFolder + "/" + recHitTypeFolder;
24 }
25 
27  edm::LogVerbatim("rpceventsummary") << "[RPCOccupancyTest]: Begin job ";
28  globalFolder_ = workingFolder;
29 
30  totalStrips_ = 0.;
31  totalActive_ = 0.;
32 
33  Active_Dead = nullptr;
34  Active_Fraction = nullptr;
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 
74  histoName.str("");
75  histoName << "RPC_Active_Channel_Fractions";
76  Active_Fraction = ibooker.book1D(histoName.str().c_str(), histoName.str().c_str(), 1, 0.5, 1.5);
77  Active_Fraction->setBinLabel(1, "Active Fraction", 1);
78 
79  histoName.str("");
80  histoName << "RPC_Active_Inactive_Strips";
81  Active_Dead = ibooker.book1D(histoName.str().c_str(), histoName.str().c_str(), 2, 0.5, 2.5);
82  Active_Dead->setBinLabel(1, "Active Strips", 1);
83  Active_Dead->setBinLabel(2, "Inactive Strips", 1);
84 
85  for (int w = -2; w <= 2; w++) { //loop on wheels
86 
87  histoName.str("");
88  histoName << "AsymmetryLeftRight_Roll_vs_Sector_Wheel" << w;
89 
90  auto me = RPCRollMapHisto::bookBarrel(ibooker, w, histoName.str(), histoName.str(), useRollInfo_);
91  AsyMeWheel[w + 2] = dynamic_cast<MonitorElement*>(me);
92  } //end Barrel
93 
94  for (int d = -numberOfDisks_; d <= numberOfDisks_; d++) {
95  if (d == 0)
96  continue;
97 
98  int offset = numberOfDisks_;
99  if (d > 0)
100  offset--; //used to skip case equale to zero
101 
102  histoName.str("");
103  histoName << "AsymmetryLeftRight_Ring_vs_Segment_Disk" << d;
104  auto me = RPCRollMapHisto::bookEndcap(ibooker, d, histoName.str(), histoName.str(), useRollInfo_);
105  AsyMeDisk[d + offset] = dynamic_cast<MonitorElement*>(me);
106  } //End loop on Endcap
107 }
108 
110  if (!myMe)
111  return;
112 
113  MonitorElement* AsyMe = nullptr; //Left Right Asymetry
114 
115  if (detId.region() == 0) {
116  AsyMe = AsyMeWheel[detId.ring() + 2];
117 
118  } else {
119  if (-detId.station() + numberOfDisks_ >= 0) {
120  if (detId.region() < 0) {
121  AsyMe = AsyMeDisk[-detId.station() + numberOfDisks_];
122  } else {
123  AsyMe = AsyMeDisk[detId.station() + numberOfDisks_ - 1];
124  }
125  }
126  }
127 
128  int xBin, yBin;
129  if (detId.region() == 0) { //Barrel
130  xBin = detId.sector();
131  rpcdqm::utils rollNumber;
132  yBin = rollNumber.detId2RollNr(detId);
133  } else { //Endcap
134  //get segment number
135  RPCGeomServ RPCServ(detId);
136  xBin = RPCServ.segment();
137  (numberOfRings_ == 3 ? yBin = detId.ring() * 3 - detId.roll() + 1
138  : yBin = (detId.ring() - 1) * 3 - detId.roll() + 1);
139  }
140 
141  int stripInRoll = myMe->getNbinsX();
142  totalStrips_ += (float)stripInRoll;
143  float FOccupancy = 0;
144  float BOccupancy = 0;
145 
146  float totEnt = myMe->getEntries();
147  for (int strip = 1; strip <= stripInRoll; strip++) {
148  float stripEntries = myMe->getBinContent(strip);
149  if (stripEntries > 0) {
150  totalActive_++;
151  }
152  if (strip <= stripInRoll / 2) {
153  FOccupancy += myMe->getBinContent(strip);
154  } else {
155  BOccupancy += myMe->getBinContent(strip);
156  }
157  }
158 
159  float asym = 0;
160  if (totEnt != 0)
161  asym = fabs((FOccupancy - BOccupancy) / totEnt);
162 
163  if (AsyMe)
164  AsyMe->setBinContent(xBin, yBin, asym);
165 }
int sector() const
Sector id: the group of chambers at same phi (and increasing r)
Definition: RPCDetId.h:81
Log< level::Info, true > LogVerbatim
void clientOperation() override
MonitorElement * AsyMeWheel[5]
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
T w() const
int ring() const
Definition: RPCDetId.h:59
MonitorElement * Active_Fraction
std::vector< RPCDetId > myDetIds_
T getUntrackedParameter(std::string const &, T const &) const
MonitorElement * AsyMeDisk[10]
virtual double getEntries() const
get # of entries
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)
int roll() const
Definition: RPCDetId.h:92
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
static MonitorElement * bookBarrel(IBooker &booker, const int wheel, const std::string &prefix, const std::string &title, const bool useRollInfo)
int station() const
Definition: RPCDetId.h:78
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:53
std::string prefixDir_
RPCOccupancyTest(const edm::ParameterSet &ps)
void beginJob(std::string &) override
virtual int getNbinsX() const
get # of bins in X-axis
std::vector< MonitorElement * > myOccupancyMe_
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
static MonitorElement * bookEndcap(IBooker &booker, const int disk, const std::string &prefix, const std::string &title, const bool useRollInfo)
void getMonitorElements(std::vector< MonitorElement *> &, std::vector< RPCDetId > &, std::string &) override
virtual double getBinContent(int binx) const
get content of bin (1-D)