CMS 3D CMS Logo

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  float nErrors = histoFEDSummary->Integral(1,14,rosNumber,rosNumber);
145  float nROBErrors = histoROSStatus->Integral(2,8,rosNumber,rosNumber);
146  nErrors += nROBErrors;
147  float result =0.;
148  if(nFEDEvts!=0)
149  result = max((float)0., ((float)nFEDEvts-nROBErrors)/(float)nFEDEvts);
150  summaryHisto->setBinContent(sectorNumber,wheelNumber+3,result);
151  int tdcResult = -2;
152  float nTDCErrors = histoFEDSummary->Integral(15,15,rosNumber,rosNumber);
153  if(nTDCErrors == 0) { // no errors
154  tdcResult = 0;
155  } else { // there are errors
156  tdcResult = 2;
157  }
158  summaryTDCHisto->setBinContent(sectorNumber,wheelNumber+3,tdcResult);
159  // FIXME: different errors should have different weights
160  float sectPerc = max((float)0., ((float)nFEDEvts-nErrors)/(float)nFEDEvts);
161  glbSummaryHisto->setBinContent(sectorNumber,wheelNumber+3,sectPerc);
162 
163  if(fedNotReadout) {
164  // no data in this FED: it is off
165  summaryHisto->setBinContent(sectorNumber,wheelNumber+3,0);
166  summaryTDCHisto->setBinContent(sectorNumber,wheelNumber+3,1);
167  glbSummaryHisto->setBinContent(sectorNumber,wheelNumber+3,0);
168  }
169  }
170  }
171 
172  } else { // no data in this FED: it is off
173  for(int rosNumber = 1; rosNumber <= 12; ++rosNumber) {
174  int wheelNumber, sectorNumber;
175  if (!readOutToGeometry(dduId,rosNumber,wheelNumber,sectorNumber)) {
176  summaryHisto->setBinContent(sectorNumber,wheelNumber+3,0);
177  summaryTDCHisto->setBinContent(sectorNumber,wheelNumber+3,1);
178  glbSummaryHisto->setBinContent(sectorNumber,wheelNumber+3,0);
179  }
180  }
181  }
182 
183  }
184 
185  }
186 
187 }
188 
190 
191  LogTrace ("DTDQM|DTRawToDigi|DTMonitorClient|DTDataIntegrityTest") <<"[DTDataIntegrityTest] endjob called!";
192 }
193 
194 string DTDataIntegrityTest::getMEName(string histoType, int FEDId){
195  //Use the DDU name to find the ME
196  stringstream dduID_s; dduID_s << FEDId;
197 
198  string folderName = "DT/00-DataIntegrity/FED" + dduID_s.str();
199 
200  string histoName = folderName + "/FED" + dduID_s.str() + "_" + histoType;
201  return histoName;
202 }
203 
204 void DTDataIntegrityTest::bookHistos(DQMStore::IBooker & ibooker, string histoType, int dduId){
205  stringstream dduId_s; dduId_s << dduId;
206 
207  ibooker.setCurrentFolder("DT/00-DataIntegrity/FED" + dduId_s.str());
208  string histoName;
209 
210 }
211 
212 
213 int DTDataIntegrityTest::readOutToGeometry(int dduId, int ros, int& wheel, int& sector){
214 
215  int dummy;
216  return mapping->readOutToGeometry(dduId,ros,2,2,2,wheel,dummy,sector,dummy,dummy,dummy);
217 
218 }
219 
LuminosityBlockID id() const
T getUntrackedParameter(std::string const &, T const &) const
void setBinContent(int binx, double content)
set content of bin (1-D)
int readOutToGeometry(int dduId, int rosId, int robId, int tdcId, int channelId, DTWireId &wireId) const
transform identifiers
MonitorElement * get(const std::string &path)
Definition: DQMStore.cc:305
MonitorElement * summaryTDCHisto
DTDataIntegrityTest(const edm::ParameterSet &ps)
Constructor.
~DTDataIntegrityTest()
Destructor.
MonitorElement * glbSummaryHisto
std::string getMEName(std::string histoType, int FEDId)
Get the ME name.
void dqmEndLuminosityBlock(DQMStore::IBooker &, DQMStore::IGetter &, edm::LuminosityBlock const &, edm::EventSetup const &) override
DQM Client Diagnostic.
def wheelNumber(wheell)
Definition: plotscripts.py:45
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:277
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)
HLT enums.
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)