CMS 3D CMS Logo

DQMMessageLogger.cc
Go to the documentation of this file.
1 
2 
3 #include "DQMMessageLogger.h"
26 #include "TPad.h"
27 #include <cmath>
28 
29 using namespace std;
30 using namespace edm;
31 
32 
33 
35 
36  categories_errors = nullptr;
37  categories_warnings = nullptr;
38  modules_errors = nullptr;
39  modules_warnings = nullptr;
40  total_errors = nullptr;
41  total_warnings = nullptr;
42 
43  //Get from cfg file
44  categories_vector = parameters.getParameter< vector<string> >("Categories");
45  directoryName = parameters.getParameter<string>("Directory");
46  errorSummary_ = consumes<std::vector<edm::ErrorSummaryEntry> >(parameters.getUntrackedParameter<std::string>("errorSummary","logErrorHarvester"));
47 
48 
49 }
50 
52  // Should the pointers be deleted?
53 }
54 
55 
56 void DQMMessageLogger::bookHistograms(DQMStore::IBooker & ibooker, edm::Run const & iRun, edm::EventSetup const & iSetup) {
57 
58  metname = "errorAnalyzer";
59 
60 
61 
62  // MAKE CATEGORYMAP USING INPUT FROM CFG FILE
63  for(unsigned int i=0; i<categories_vector.size(); i++){
64  categoryMap.insert(pair<string,int>(categories_vector[i],i+1));
65  }
66 
67 
68  // MAKE MODULEMAP
70  using stringvec = vector<std::string>;
71  TNS tns;
72  stringvec const& trigpaths = tns->getTrigPaths();
73 
74 
75  for (auto const & trigpath : trigpaths){
76  stringvec strings = tns->getTrigPathModules(trigpath);
77 
78  for(auto & k : strings){
79  moduleMap.insert(pair<string,int>(k,moduleMap.size()+1));
80  }
81  }
82 
83  // BOOK THE HISTOGRAMS
84  LogTrace(metname)<<"[DQMMessageLogger] Parameters initialization";
85 
86  if(!moduleMap.empty()){
87  ibooker.setCurrentFolder(directoryName + "/Errors");
88  modules_errors = ibooker.book1D("modules_errors", "Errors per module", moduleMap.size(), 0, moduleMap.size());
89  ibooker.setCurrentFolder(directoryName + "/Warnings");
90 
91  modules_warnings = ibooker.book1D("modules_warnings","Warnings per module",moduleMap.size(),0,moduleMap.size());
92 
93  for(auto it = moduleMap.begin(); it!=moduleMap.end();++it){
94  modules_errors->setBinLabel((*it).second,(*it).first);
95  modules_warnings->setBinLabel((*it).second,(*it).first);
96  }
97  modules_errors->getTH1()->GetXaxis()->LabelsOption("v");
98  modules_warnings->getTH1()->GetXaxis()->LabelsOption("v");
99 
100  }
101 
102  if(!categoryMap.empty()){
103  ibooker.setCurrentFolder(directoryName + "/Errors");
104  categories_errors = ibooker.book1D("categories_errors", "Errors per category", categoryMap.size(), 0, categoryMap.size());
105  ibooker.setCurrentFolder(directoryName +"/Warnings");
106  categories_warnings = ibooker.book1D("categories_warnings", "Warnings per category", categoryMap.size(), 0, categoryMap.size());
107 
108  for(auto it = categoryMap.begin(); it!=categoryMap.end();++it){
109  categories_errors->setBinLabel((*it).second,(*it).first);
110  categories_warnings->setBinLabel((*it).second,(*it).first);
111  }
112  categories_warnings->getTH1()->GetXaxis()->LabelsOption("v");
113  categories_errors->getTH1()->GetXaxis()->LabelsOption("v");
114  }
115 
116  // HOW MANY BINS SHOULD THE ERROR HIST HAVE?
117  int nbins = 11;
118  total_warnings = ibooker.book1D("total_warnings","Total warnings per event",nbins,-0.5,nbins+0.5);
119  ibooker.setCurrentFolder(directoryName + "/Errors");
120  total_errors = ibooker.book1D("total_errors", "Total errors per event", nbins, -0.5, nbins+0.5);
121 
122  for(int i=0; i<nbins; ++i){
123  stringstream out;
124  out<< i;
125  string s = out.str();
126  total_errors->setBinLabel(i+1,s);
127  total_warnings->setBinLabel(i+1,s);
128  }
129 }
130 
131 
132 void DQMMessageLogger::analyze(const Event& iEvent, const EventSetup& iSetup) {
133 
134  LogTrace(metname)<<"[DQMMessageLogger] Analysis of event # ";
135 
136 
137  // Take the ErrorSummaryEntry container
139  iEvent.getByToken(errorSummary_,errors);
140  // Check that errors is valid
141  if(!errors.isValid()){ return; }
142  // Compare severity level of error with ELseveritylevel instance el : "-e" should be the lowest error
143  ELseverityLevel el("-e");
144 
145 
146 
147  // Find the total number of errors in iEvent
148  if(errors->empty()){
149  if(total_errors!=nullptr){
150  total_errors->Fill(0);
151  }
152  if(total_warnings!=nullptr){
153  total_warnings->Fill(0);
154  }
155  }else{
156 
157  int e = 0;
158  int w = 0;
159  for (int i=0, n=errors->size(); i<n; i++){
160  if((*errors)[i].severity.getLevel() < el.getLevel()){
161  w+= (*errors)[i].count;
162  }else{
163  e+= (*errors)[i].count;
164  }
165  }
166  if(total_errors!=nullptr){
167  total_errors->Fill(e);
168  }
169  if(total_warnings!=nullptr){
170  total_warnings->Fill(w);
171  }
172  }
173 
174 
175 
176 
177  for(int i=0, n=errors->size(); i< n ; i++){
178 
179  //cout << "Severity for error/warning: " << (*errors)[i].severity << " " <<(*errors)[i].module << endl;
180 
181  if(!errors->empty()){
182  // IF THIS IS AN ERROR on the ELseverityLevel SCALE, FILL ERROR HISTS
183  if((*errors)[i].severity.getLevel() >= el.getLevel()){
184  if(categories_errors!=nullptr){
185  auto it = categoryMap.find((*errors)[i].category);
186  if (it!=categoryMap.end()){
187  // FILL THE RIGHT BIN
188  categories_errors->Fill((*it).second - 1, (*errors)[i].count);
189  }
190  }
191  // if (categoryECount.size()<=40)
192  // categoryECount[(*errors)[i].category]+=(*errors)[i].count;
193 
194  if(modules_errors!=nullptr){
195  // remove the first part of the module string, what is before ":"
196  string s = (*errors)[i].module;
197  size_t pos = s.find(':');
198  string s_temp = s.substr(pos+1,s.size());
199  auto it = moduleMap.find(s_temp);
200  if(it!=moduleMap.end()){
201  // FILL THE RIGHT BIN
202  modules_errors->Fill((*it).second - 1, (*errors)[i].count);
203  }
204  }
205  // IF ONLY WARNING, FILL WARNING HISTS
206  }else{
207  if(categories_warnings!=nullptr){
208  auto it = categoryMap.find((*errors)[i].category);
209  if (it!=categoryMap.end()){
210  // FILL THE RIGHT BIN
211  categories_warnings->Fill((*it).second - 1, (*errors)[i].count);
212  }
213  }
214 
215  // if (categoryWCount.size()<=40)
216  // categoryWCount[(*errors)[i].category]+=(*errors)[i].count;
217 
218  if(modules_warnings!=nullptr){
219  // remove the first part of the module string, what is before ":"
220  string s = (*errors)[i].module;
221  size_t pos = s.find(':');
222  string s_temp = s.substr(pos+1,s.size());
223  auto it = moduleMap.find(s_temp);
224  if(it!=moduleMap.end()){
225  // FILL THE RIGHT BIN
226  modules_warnings->Fill((*it).second - 1, (*errors)[i].count);
227  }
228  }
229  }
230  }
231  }
232 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
const double w
Definition: UKUtility.cc:23
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
const std::string metname
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)
void analyze(const edm::Event &, const edm::EventSetup &) override
Get the analysis.
int iEvent
Definition: GenABIO.cc:224
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
bool isValid() const
Definition: HandleBase.h:74
#define LogTrace(id)
int k[5][pyjets_maxn]
HLT enums.
DQMMessageLogger(const edm::ParameterSet &)
Constructor.
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Definition: Run.h:45
~DQMMessageLogger() override
Destructor.