CMS 3D CMS Logo

RPCMultiplicityTest.cc
Go to the documentation of this file.
1 /*
2  * \author Anna Cimmino
3  */
6 
7 // Framework
9 //DQMServices
11 // Geometry
13 
14 #include <sstream>
15 
17  edm::LogVerbatim("multiplicity") << "[RPCMultiplicityTest]: Constructor";
18  useRollInfo_ = ps.getUntrackedParameter<bool>("UseRollInfo", false);
19  prescaleFactor_ = ps.getUntrackedParameter<int>("DiagnosticPrescale", 1);
20  numberOfDisks_ = ps.getUntrackedParameter<int>("NumberOfEndcapDisks", 4);
21  numberOfRings_ = ps.getUntrackedParameter<int>("NumberOfEndcapRings", 2);
22  testMode_ = ps.getUntrackedParameter<bool>("testMode", false);
23 }
24 
26 
28  edm::LogVerbatim("multiplicity") << "[RPCMultiplicityTest]: Begin job";
29  globalFolder_ = workingFolder;
30 }
31 
34 
35  std::stringstream histoName;
36  rpcdqm::utils rpcUtils;
37 
38  for (int i = -2; i <= 2; i++) { //loop on wheels and disks
39 
40  histoName.str("");
41  histoName << "NumberOfDigi_Mean_Roll_vs_Sector_Wheel" << i;
42 
43  MULTWheel[i + 2] = ibooker.book2D(histoName.str().c_str(), histoName.str().c_str(), 12, 0.5, 12.5, 21, 0.5, 21.5);
44 
45  rpcUtils.labelXAxisSector(MULTWheel[i + 2]);
46  rpcUtils.labelYAxisRoll(MULTWheel[i + 2], 0, i, useRollInfo_);
47 
48  if (testMode_) {
49  histoName.str("");
50  histoName << "NumberOfDigi_Mean_Distribution_Wheel" << i;
51  MULTDWheel[i + 2] = ibooker.book1D(histoName.str().c_str(), histoName.str().c_str(), 100, 0.5, 50.5);
52  }
53 
54  } //end wheels
55 
56  for (int d = -numberOfDisks_; d <= numberOfDisks_; d++) {
57  if (d == 0)
58  continue;
59 
60  int offset = numberOfDisks_;
61  if (d > 0)
62  offset--; //used to skip case equale to zero
63 
64  histoName.str("");
65  histoName << "NumberOfDigi_Mean_Ring_vs_Segment_Disk" << d;
66  MULTDisk[d + offset] = ibooker.book2D(histoName.str().c_str(),
67  histoName.str().c_str(),
68  36,
69  0.5,
70  36.5,
71  3 * numberOfRings_,
72  0.5,
73  3 * numberOfRings_ + 0.5);
74  rpcUtils.labelXAxisSegment(MULTDisk[d + offset]);
76 
77  if (testMode_) {
78  histoName.str("");
79  histoName << "NumberOfDigi_Mean_Distribution_Disk" << d;
80  MULTDDisk[d + offset] = ibooker.book1D(histoName.str().c_str(), histoName.str().c_str(), 100, 0.5, 50.5);
81  }
82  } //end loop on wheels and disks
83 }
84 
85 void RPCMultiplicityTest::getMonitorElements(std::vector<MonitorElement*>& meVector,
86  std::vector<RPCDetId>& detIdVector,
87  std::string& clientHistoName) {
88  //Get NumberOfDigi ME for each roll
89  for (unsigned int i = 0; i < meVector.size(); i++) {
90  std::string meName = meVector[i]->getName();
91 
92  if (meName.find(clientHistoName) != std::string::npos) {
93  myNumDigiMe_.push_back(meVector[i]);
94  myDetIds_.push_back(detIdVector[i]);
95  }
96  }
97 }
98 
100  edm::LogVerbatim("multiplicity") << "[RPCMultiplicityTest]: Client Operation";
101 
102  //Loop on MEs
103  for (unsigned int i = 0; i < myNumDigiMe_.size(); i++) {
104  this->fillGlobalME(myDetIds_[i], myNumDigiMe_[i]);
105  } //End loop on MEs
106 }
107 
109  MonitorElement* MULT = nullptr;
110  MonitorElement* MULTD = nullptr;
111 
112  if (detId.region() == 0) {
113  MULT = MULTWheel[detId.ring() + 2];
114  if (testMode_) {
115  MULTD = MULTDWheel[detId.ring() + 2];
116  }
117  } else {
118  if (-detId.station() + numberOfDisks_ >= 0) {
119  if (detId.region() < 0) {
120  MULT = MULTDisk[-detId.station() + numberOfDisks_];
121  if (testMode_) {
122  MULTD = MULTDDisk[-detId.station() + numberOfDisks_];
123  }
124  } else {
125  MULT = MULTDisk[detId.station() + numberOfDisks_ - 1];
126  if (testMode_) {
127  MULTD = MULTDDisk[detId.station() + numberOfDisks_ - 1];
128  }
129  }
130  }
131  }
132 
133  int xBin, yBin;
134  if (detId.region() == 0) { //Barrel
135  xBin = detId.sector();
136  rpcdqm::utils rollNumber;
137  yBin = rollNumber.detId2RollNr(detId);
138  } else { //Endcap
139  //get segment number
140  RPCGeomServ RPCServ(detId);
141  xBin = RPCServ.segment();
142  (numberOfRings_ == 3 ? yBin = detId.ring() * 3 - detId.roll() + 1
143  : yBin = (detId.ring() - 1) * 3 - detId.roll() + 1);
144  }
145 
146  float mean = myMe->getMean();
147 
148  if (MULT) {
149  MULT->setBinContent(xBin, yBin, mean);
150  }
151  if (testMode_ && MULTD) {
152  MULTD->Fill(mean);
153  }
154 }
rpcdqm::utils::labelXAxisSegment
void labelXAxisSegment(MonitorElement *myMe)
Definition: utils.h:247
RPCMultiplicityTest::testMode_
bool testMode_
Definition: RPCMultiplicityTest.h:31
RPCMultiplicityTest::myDetIds_
std::vector< RPCDetId > myDetIds_
Definition: RPCMultiplicityTest.h:30
mps_fire.i
i
Definition: mps_fire.py:428
RPCGeomServ
Definition: RPCGeomServ.h:8
RPCMultiplicityTest::getMonitorElements
void getMonitorElements(std::vector< MonitorElement * > &, std::vector< RPCDetId > &, std::string &) override
Definition: RPCMultiplicityTest.cc:85
MessageLogger.h
SiStripPI::mean
Definition: SiStripPayloadInspectorHelper.h:169
RPCDetId::station
int station() const
Definition: RPCDetId.h:78
RPCDetId::region
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:53
photonAnalyzer_cfi.xBin
xBin
Definition: photonAnalyzer_cfi.py:81
RPCMultiplicityTest::beginJob
void beginJob(std::string &) override
Definition: RPCMultiplicityTest.cc:27
RPCDetId
Definition: RPCDetId.h:16
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
dqm::legacy::MonitorElement
Definition: MonitorElement.h:461
rpcdqm::utils::labelYAxisRoll
void labelYAxisRoll(MonitorElement *myMe, int region, int ring, bool useRollInfo)
Definition: utils.h:265
photonAnalyzer_cfi.yBin
yBin
Definition: photonAnalyzer_cfi.py:85
edm::ParameterSet::getUntrackedParameter
T getUntrackedParameter(std::string const &, T const &) const
RPCGeomServ.h
rpcdqm::utils
Definition: utils.h:29
RPCMultiplicityTest::MULTWheel
MonitorElement * MULTWheel[5]
Definition: RPCMultiplicityTest.h:32
dqm::impl::MonitorElement::Fill
void Fill(long long x)
Definition: MonitorElement.h:290
RPCMultiplicityTest::MULTDisk
MonitorElement * MULTDisk[10]
Definition: RPCMultiplicityTest.h:34
RPCMultiplicityTest::~RPCMultiplicityTest
~RPCMultiplicityTest() override
Destructor.
Definition: RPCMultiplicityTest.cc:25
RPCMultiplicityTest::useRollInfo_
bool useRollInfo_
Definition: RPCMultiplicityTest.h:28
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
RPCDetId::roll
int roll() const
Definition: RPCDetId.h:92
edm::ParameterSet
Definition: ParameterSet.h:47
RPCMultiplicityTest::clientOperation
void clientOperation() override
Definition: RPCMultiplicityTest.cc:99
RPCMultiplicityTest.h
rpcdqm::utils::labelYAxisRing
void labelYAxisRing(MonitorElement *myMe, int numberOfRings, bool useRollInfo)
Definition: utils.h:291
RPCMultiplicityTest::numberOfRings_
int numberOfRings_
Definition: RPCMultiplicityTest.h:27
rpcdqm::utils::detId2RollNr
int detId2RollNr(const RPCDetId &_id)
Definition: utils.h:31
utils.h
RPCDetId::ring
int ring() const
Definition: RPCDetId.h:59
RPCGeomServ::segment
virtual int segment()
Definition: RPCGeomServ.cc:361
dqm::impl::MonitorElement::setBinContent
virtual void setBinContent(int binx, double content)
set content of bin (1-D)
Definition: MonitorElement.cc:691
DQMNet.h
RPCMultiplicityTest::RPCMultiplicityTest
RPCMultiplicityTest(const edm::ParameterSet &ps)
Constructor.
Definition: RPCMultiplicityTest.cc:16
RPCMultiplicityTest::myBooker
void myBooker(DQMStore::IBooker &) override
Definition: RPCMultiplicityTest.cc:32
RPCMultiplicityTest::numberOfDisks_
int numberOfDisks_
Definition: RPCMultiplicityTest.h:26
RPCMultiplicityTest::globalFolder_
std::string globalFolder_
Definition: RPCMultiplicityTest.h:25
edm::LogVerbatim
Log< level::Info, true > LogVerbatim
Definition: MessageLogger.h:128
dqm::implementation::IBooker::book2D
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:177
RPCDetId::sector
int sector() const
Sector id: the group of chambers at same phi (and increasing r)
Definition: RPCDetId.h:81
rpcdqm::utils::labelXAxisSector
void labelXAxisSector(MonitorElement *myMe)
Definition: utils.h:231
HltBtagPostValidation_cff.histoName
histoName
Definition: HltBtagPostValidation_cff.py:17
RPCMultiplicityTest::fillGlobalME
void fillGlobalME(RPCDetId &detId, MonitorElement *myMe)
Definition: RPCMultiplicityTest.cc:108
dqm::impl::MonitorElement::getMean
virtual double getMean(int axis=1) const
get mean value of histogram along x, y or z axis (axis=1, 2, 3 respectively)
Definition: MonitorElement.cc:549
dqm::implementation::IBooker
Definition: DQMStore.h:43
RPCMultiplicityTest::MULTDWheel
MonitorElement * MULTDWheel[5]
Definition: RPCMultiplicityTest.h:33
ztail.d
d
Definition: ztail.py:151
RPCMultiplicityTest::myNumDigiMe_
std::vector< MonitorElement * > myNumDigiMe_
Definition: RPCMultiplicityTest.h:29
hltrates_dqm_sourceclient-live_cfg.offset
offset
Definition: hltrates_dqm_sourceclient-live_cfg.py:82
RPCMultiplicityTest::MULTDDisk
MonitorElement * MULTDDisk[10]
Definition: RPCMultiplicityTest.h:35
RPCMultiplicityTest::prescaleFactor_
int prescaleFactor_
Definition: RPCMultiplicityTest.h:24
dqm::implementation::IBooker::book1D
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98