CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTDataIntegrityTest.cc
Go to the documentation of this file.
1 /*
2  * \file DTDataIntegrityTest.cc
3  *
4  * \author S. Bolognesi - CERN
5  *
6  * threadsafe version (//-) oct/nov 2014 - WATWanAbdullah ncpp-um-my
7  *
8  *
9  */
10 
12 
13 //Framework
21 
22 #include <iostream>
23 #include <string>
24 
25 
26 using namespace std;
27 using namespace edm;
28 
29 
31 
32  LogTrace ("DTDQM|DTRawToDigi|DTMonitorClient|DTDataIntegrityTest") << "[DTDataIntegrityTest]: Constructor";
33 
34  // prescale on the # of LS to update the test
35  prescaleFactor = ps.getUntrackedParameter<int>("diagnosticPrescale", 1);
36 
37  bookingdone = 0;
38 
39 }
40 
41 
43 
44  LogTrace ("DTDQM|DTRawToDigi|DTMonitorClient|DTDataIntegrityTest") << "DataIntegrityTest: analyzed " << nupdates << " updates";
45 
46 }
47 
49  edm::LuminosityBlock const & lumiSeg, edm::EventSetup const & context) {
50 
51 
52  if (!bookingdone) {
53 
54  //nSTAEvents = 0;
55  nupdates = 0;
56  run=0;
57 
58  // book the summary histogram
59 
60  ibooker.setCurrentFolder("DT/00-DataIntegrity");
61 
62  summaryHisto = ibooker.book2D("DataIntegritySummary","Summary Data Integrity",12,1,13,5,-2,3);
63  summaryHisto->setAxisTitle("Sector",1);
64  summaryHisto->setAxisTitle("Wheel",2);
65 
66  ibooker.setCurrentFolder("DT/00-DataIntegrity");
67 
68  summaryTDCHisto = ibooker.book2D("DataIntegrityTDCSummary","TDC Summary Data Integrity",12,1,13,5,-2,3);
69  summaryTDCHisto->setAxisTitle("Sector",1);
70  summaryTDCHisto->setAxisTitle("Wheel",2);
71 
72  ibooker.setCurrentFolder("DT/00-DataIntegrity");
73 
74  glbSummaryHisto = ibooker.book2D("DataIntegrityGlbSummary","Summary Data Integrity",12,1,13,5,-2,3);
75  glbSummaryHisto->setAxisTitle("Sector",1);
76  glbSummaryHisto->setAxisTitle("Wheel",2);
77 
78  context.get<DTReadOutMappingRcd>().get(mapping);
79 
80  }
81  bookingdone = 1;
82 
83 
84  // counts number of lumiSegs
85  nLumiSegs = lumiSeg.id().luminosityBlock();
86  stringstream nLumiSegs_s; nLumiSegs_s << nLumiSegs;
87 
88  // prescale factor
89  if (nLumiSegs%prescaleFactor != 0) return;
90 
91  LogTrace ("DTDQM|DTRawToDigi|DTMonitorClient|DTDataIntegrityTest")
92  <<"[DTDataIntegrityTest]: End of LS " << nLumiSegs << ", performing client operations";
93 
94 
95  // counts number of updats
96  nupdates++;
97 
98 
99  //Counter for x bin in the timing histos
100  counter++;
101 
102  //Loop on FED id
103  for (int dduId=FEDNumbering::MINDTFEDID; dduId<=FEDNumbering::MAXDTFEDID; ++dduId){
104  LogTrace ("DTDQM|DTRawToDigi|DTMonitorClient|DTDataIntegrityTest")
105  <<"[DTDataIntegrityTest]:FED Id: "<<dduId;
106 
107  //Each nTimeBin onUpdate remove timing histos and book a new bunch of them
108  stringstream dduId_s; dduId_s << dduId;
109 
110  string histoType;
111 
112  //Check if the list of ROS is compatible with the channels enabled
113  string rosStatusName = "DT/00-DataIntegrity/FED" + dduId_s.str() + "/FED" + dduId_s.str() + "_ROSStatus";
114  MonitorElement * FED_ROSStatus = igetter.get(rosStatusName);
115 
116  // Get the error summary histo
117  string fedSummaryName = "DT/00-DataIntegrity/FED" + dduId_s.str() + "_ROSSummary";
118  MonitorElement * FED_ROSSummary = igetter.get(fedSummaryName);
119 
120  // Get the event lenght plot (used to counr # of processed evts)
121  string fedEvLenName = "DT/00-DataIntegrity/FED" + dduId_s.str() + "/FED" + dduId_s.str() + "_EventLenght";
122  MonitorElement * FED_EvLenght = igetter.get(fedEvLenName);
123 
124  // Get the histos for FED integrity
125  string fedIntegrityFolder = "DT/FEDIntegrity/";
126  MonitorElement * hFEDEntry = igetter.get(fedIntegrityFolder+"FEDEntries");
127  MonitorElement * hFEDFatal = igetter.get(fedIntegrityFolder+"FEDFatal");
128  MonitorElement * hFEDNonFatal = igetter.get(fedIntegrityFolder+"FEDNonFatal");
129 
130  if(hFEDEntry && hFEDFatal && hFEDNonFatal) {
131 
132  if(FED_ROSSummary && FED_ROSStatus && FED_EvLenght) {
133  TH2F * histoFEDSummary = FED_ROSSummary->getTH2F();
134  TH2F * histoROSStatus = FED_ROSStatus->getTH2F();
135  TH1F * histoEvLenght = FED_EvLenght->getTH1F();
136  // Check that the FED is in the ReadOut using the FEDIntegrity histos
137  bool fedNotReadout = (hFEDEntry->getBinContent(dduId-769) == 0 &&
138  hFEDFatal->getBinContent(dduId-769) == 0 &&
139  hFEDNonFatal->getBinContent(dduId-769) == 0);
140  int nFEDEvts = histoEvLenght->Integral();
141  for(int rosNumber = 1; rosNumber <= 12; ++rosNumber) { // loop on the ROS
142  int wheelNumber, sectorNumber;
143  if (!readOutToGeometry(dduId,rosNumber,wheelNumber,sectorNumber)) {
144  int result = -2;
145  float nErrors = histoFEDSummary->Integral(1,14,rosNumber,rosNumber);
146  nErrors += histoROSStatus->Integral(2,8,rosNumber,rosNumber);
147  if(nErrors == 0) { // no errors
148  result = 0;
149  } else { // there are errors
150  result = 2;
151  }
152  summaryHisto->setBinContent(sectorNumber,wheelNumber+3,result);
153  int tdcResult = -2;
154  float nTDCErrors = histoFEDSummary->Integral(15,15,rosNumber,rosNumber);
155  if(nTDCErrors == 0) { // no errors
156  tdcResult = 0;
157  } else { // there are errors
158  tdcResult = 2;
159  }
160  summaryTDCHisto->setBinContent(sectorNumber,wheelNumber+3,tdcResult);
161  // FIXME: different errors should have different weights
162  float sectPerc = max((float)0., ((float)nFEDEvts-nErrors)/(float)nFEDEvts);
163  glbSummaryHisto->setBinContent(sectorNumber,wheelNumber+3,sectPerc);
164 
165  if(fedNotReadout) {
166  // no data in this FED: it is off
167  summaryHisto->setBinContent(sectorNumber,wheelNumber+3,1);
168  summaryTDCHisto->setBinContent(sectorNumber,wheelNumber+3,1);
169  glbSummaryHisto->setBinContent(sectorNumber,wheelNumber+3,0);
170  }
171  }
172  }
173 
174  } else { // no data in this FED: it is off
175  for(int rosNumber = 1; rosNumber <= 12; ++rosNumber) {
176  int wheelNumber, sectorNumber;
177  if (!readOutToGeometry(dduId,rosNumber,wheelNumber,sectorNumber)) {
178  summaryHisto->setBinContent(sectorNumber,wheelNumber+3,1);
179  summaryTDCHisto->setBinContent(sectorNumber,wheelNumber+3,1);
180  glbSummaryHisto->setBinContent(sectorNumber,wheelNumber+3,0);
181  }
182  }
183  }
184 
185  }
186 
187  }
188 
189 }
190 
192 
193  LogTrace ("DTDQM|DTRawToDigi|DTMonitorClient|DTDataIntegrityTest") <<"[DTDataIntegrityTest] endjob called!";
194 }
195 
196 string DTDataIntegrityTest::getMEName(string histoType, int FEDId){
197  //Use the DDU name to find the ME
198  stringstream dduID_s; dduID_s << FEDId;
199 
200  string folderName = "DT/00-DataIntegrity/FED" + dduID_s.str();
201 
202  string histoName = folderName + "/FED" + dduID_s.str() + "_" + histoType;
203  return histoName;
204 }
205 
206 void DTDataIntegrityTest::bookHistos(DQMStore::IBooker & ibooker, string histoType, int dduId){
207  stringstream dduId_s; dduId_s << dduId;
208 
209  ibooker.setCurrentFolder("DT/00-DataIntegrity/FED" + dduId_s.str());
210  string histoName;
211 
212 }
213 
214 
215 int DTDataIntegrityTest::readOutToGeometry(int dduId, int ros, int& wheel, int& sector){
216 
217  int dummy;
218  return mapping->readOutToGeometry(dduId,ros,2,2,2,wheel,dummy,sector,dummy,dummy,dummy);
219 
220 }
221 
LuminosityBlockID id() const
T getUntrackedParameter(std::string const &, T const &) const
void setBinContent(int binx, double content)
set content of bin (1-D)
MonitorElement * get(const std::string &path)
Definition: DQMStore.cc:302
MonitorElement * summaryTDCHisto
DTDataIntegrityTest(const edm::ParameterSet &ps)
Constructor.
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &)
DQM Client Diagnostic.
~DTDataIntegrityTest()
Destructor.
MonitorElement * glbSummaryHisto
std::string getMEName(std::string histoType, int FEDId)
Get the ME name.
tuple result
Definition: query.py:137
MonitorElement * summaryHisto
#define LogTrace(id)
int readOutToGeometry(int dduId, int rosNumber, int &wheel, int &sector)
edm::ESHandle< DTReadOutMapping > mapping
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
const T & get() const
Definition: EventSetup.h:56
TH1F * getTH1F(void) const
LuminosityBlockNumber_t luminosityBlock() const
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
double getBinContent(int binx) const
get content of bin (1-D)
void bookHistos(DQMStore::IBooker &, std::string histoType, int dduId)
Book the MEs.
TH2F * getTH2F(void) const
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
def wheelNumber
Definition: plotscripts.py:45