CMS 3D CMS Logo

QualityTester.cc
Go to the documentation of this file.
1 /*
2  * \file QualityTester.cc
3  *
4  * \author M. Zanetti - CERN PH
5  *
6  */
7 
15 
16 #include <memory>
17 #include <cstdio>
18 #include <sstream>
19 #include <cmath>
20 
21 using namespace edm;
22 using namespace std;
23 
25 {
26  prescaleFactor = ps.getUntrackedParameter<int>("prescaleFactor", 1);
27  getQualityTestsFromFile = ps.getUntrackedParameter<bool>("getQualityTestsFromFile", true);
28  Label = ps.getUntrackedParameter<string>("label","");
29  reportThreshold = ps.getUntrackedParameter<string>("reportThreshold", "");
30  testInEventloop = ps.getUntrackedParameter<bool>("testInEventloop",false);
31  qtestOnEndRun = ps.getUntrackedParameter<bool>("qtestOnEndRun",true);
32  qtestOnEndJob = ps.getUntrackedParameter<bool>("qtestOnEndJob",false);
33  qtestOnEndLumi = ps.getUntrackedParameter<bool>("qtestOnEndLumi",false);
34  verboseQT = ps.getUntrackedParameter<bool>("verboseQT", true);
35 
36  bei = &*edm::Service<DQMStore>();
37 
38  qtHandler=new QTestHandle;
39 
40  // if you use this module, it's non-sense not to provide the QualityTests.xml
41  if (getQualityTestsFromFile) {
43  qtHandler->configureTests(FileInPath(qtlist).fullPath(), bei);
44  }
45 
46 
47  nEvents = 0;
48 
49 }
50 
51 void QualityTester::beginRun(const edm::Run& run , const edm::EventSetup& iSetup){
52 
53  // if getQualityTestsFromFile is False, it means that the end-user wants them from the Database
54  if (!getQualityTestsFromFile) {
57  throw cms::Exception ("Record not found") << "Record \"DQMXMLFileRcd"
58  << "\" does not exist!" << std::endl;
59  }
60 // std::cout << "Reading XML from Database" << std::endl ;
62  iSetup.get<DQMXMLFileRcd>().get(Label,xmlfile);
63  std::unique_ptr<std::vector<unsigned char> > vc( (*xmlfile).getUncompressedBlob() );
64  std::string xmlstr="";
65  for(unsigned char & it : *vc){
66  xmlstr += it;
67  }
68 
69  qtHandler->configureTests(xmlstr,bei,true);
70 
71  }
72 }
73 
75 {
76  delete qtHandler;
77 }
78 
80 {
81  if (testInEventloop) {
82  nEvents++;
83  if (getQualityTestsFromFile
84  && prescaleFactor > 0
85  && nEvents % prescaleFactor == 0) {
86  performTests();
87  }
88  }
89 }
90 
91 void QualityTester::endLuminosityBlock(LuminosityBlock const& lumiSeg, EventSetup const& context)
92 {
94  if (getQualityTestsFromFile
95  && prescaleFactor > 0
96  && lumiSeg.id().luminosityBlock() % prescaleFactor == 0) {
97  performTests();
98  }
99  }
100 }
101 
102 void QualityTester::endRun(const Run& r, const EventSetup& context){
103  if (qtestOnEndRun) performTests();
104 }
105 
107  if (qtestOnEndJob) performTests();
108 }
109 
111 {
112  // done here because new ME can appear while processing data
113  qtHandler->attachTests(bei,verboseQT);
114 
115  edm::LogVerbatim ("QualityTester") << "Running the Quality Test";
116 
117  bei->runQTests();
118 
119  if (!reportThreshold.empty())
120  {
121  std::map< std::string, std::vector<std::string> > theAlarms
122  = qtHandler->checkDetailedQTStatus(bei);
123 
124  for (auto & theAlarm : theAlarms)
125  {
126  const std::string &alarmType = theAlarm.first;
127  const std::vector<std::string> &msgs = theAlarm.second;
128  if ((reportThreshold == "black")
129  || (reportThreshold == "orange" && (alarmType == "orange" || alarmType == "red"))
130  || (reportThreshold == "red" && alarmType == "red"))
131  {
132  std::cout << std::endl;
133  std::cout << "Error Type: " << alarmType << std::endl;
134  for (auto const & msg : msgs)
135  std::cout << msg << std::endl;
136  }
137  }
138  std::cout << std::endl;
139  }
140 }
LuminosityBlockID id() const
T getUntrackedParameter(std::string const &, T const &) const
void endLuminosityBlock(edm::LuminosityBlock const &lumiSeg, edm::EventSetup const &c) override
perform the actual quality tests
void analyze(const edm::Event &e, const edm::EventSetup &c) override
Analyze.
~QualityTester() override
Destructor.
void endJob() override
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
xmlfile
Make an XML representation of the misalignment.
void endRun(const edm::Run &r, const edm::EventSetup &c) override
LuminosityBlockNumber_t luminosityBlock() const
tuple msg
Definition: mps_check.py:277
heterocontainer::HCTypeTag TypeTag
HLT enums.
QualityTester(const edm::ParameterSet &ps)
Constructor.
T get() const
Definition: EventSetup.h:63
UInt_t nEvents
Definition: hcalCalib.cc:42
void beginRun(const edm::Run &, const edm::EventSetup &) override
Definition: Run.h:44