CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DTDCSSummary.h
Go to the documentation of this file.
1 #ifndef DTMonitorClient_DTDCSSummary_H
2 #define DTMonitorClient_DTDCSSummary_H
3 
12 
13 #include <map>
14 
15 class DQMStore;
16 class MonitorElement;
17 
18 class DTDCSSummary : public edm::EDAnalyzer {
19 public:
21  DTDCSSummary(const edm::ParameterSet& pset);
22 
24  virtual ~DTDCSSummary();
25 
26  // Operations
27 
28 protected:
29 
30 private:
31  virtual void beginJob();
33  virtual void analyze(const edm::Event& event, const edm::EventSetup& setup);
34  virtual void endLuminosityBlock(const edm::LuminosityBlock& lumi, const edm::EventSetup& setup);
35  virtual void endJob() ;
36 
38 
40  std::map<int, MonitorElement*> dcsFractions;
41 
42 };
43 
44 
45 #endif
46 
MonitorElement * totalDCSFraction
Definition: DTDCSSummary.h:39
virtual void beginJob()
Definition: DTDCSSummary.cc:34
std::map< int, MonitorElement * > dcsFractions
Definition: DTDCSSummary.h:40
virtual void beginLuminosityBlock(const edm::LuminosityBlock &lumi, const edm::EventSetup &setup)
Definition: DTDCSSummary.cc:55
tuple lumi
Definition: fjr2json.py:35
DQMStore * theDbe
Definition: DTDCSSummary.h:37
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
virtual void endLuminosityBlock(const edm::LuminosityBlock &lumi, const edm::EventSetup &setup)
Definition: DTDCSSummary.cc:61
virtual void analyze(const edm::Event &event, const edm::EventSetup &setup)
Definition: DTDCSSummary.cc:69
virtual void endJob()
Definition: DTDCSSummary.cc:65
virtual ~DTDCSSummary()
Destructor.
Definition: DTDCSSummary.cc:30
void setup(std::vector< TH2F > &depth, std::string name, std::string units="")
DTDCSSummary(const edm::ParameterSet &pset)
Constructor.
Definition: DTDCSSummary.cc:25