CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCMonitorModule.h
Go to the documentation of this file.
1 /*
2  * =====================================================================================
3  *
4  * Filename: CSCMonitorModule.h
5  *
6  * Description: Updated CSC Monitor module
7  *
8  * Version: 1.0
9  * Created: 11/13/2008 01:36:45 PM
10  * Revision: none
11  * Compiler: gcc
12  *
13  * Author: Valdas Rapsevicius (VR), valdas.rapsevicius@cern.ch
14  * Company: CERN, CH
15  *
16  * =====================================================================================
17  */
18 
19 
20 #ifndef CSCMonitorModule_H
21 #define CSCMonitorModule_H
22 
24 #include <iostream>
25 #include <cstring>
26 #include <vector>
27 #include <map>
28 #include <set>
29 
38 
39 #ifdef DQMGLOBAL
42 #endif
43 
49 
51 #include "CSCDQM_Logger.h"
52 #include "CSCDQM_Configuration.h"
53 #include "CSCDQM_Dispatcher.h"
54 
56 #include "CSCMonitorObject.h"
57 
59 static const char INPUT_TAG_LABEL[] = "source";
60 static const char DIR_EVENTINFO[] = "CSC/EventInfo/";
61 static const char DIR_DCSINFO[] = "CSC/EventInfo/DCSContents/";
62 static const char DIR_DAQINFO[] = "CSC/EventInfo/DAQContents/";
63 static const char DIR_CRTINFO[] = "CSC/EventInfo/CertificationContents/";
64 
65 static const unsigned int MIN_CRATE_ID = 1;
66 static const unsigned int MAX_CRATE_ID = 60;
67 static const unsigned int MIN_DMB_SLOT = 1;
68 static const unsigned int MAX_DMB_SLOT = 10;
69 
75 
80  public:
81 
83  virtual ~CSCMonitorModule();
84 
85  private:
86 
93 
96 
97 #ifdef DQMGLOBAL
99 #endif
100 
105  public:
106 
107  bool getCSCDetId(const unsigned int crateId, const unsigned int dmbId, CSCDetId& detId) const {
108  // Check parameter values
109  if (crateId < MIN_CRATE_ID || crateId > MAX_CRATE_ID || dmbId < MIN_DMB_SLOT || dmbId > MAX_DMB_SLOT) {
110  return false;
111  }
112  detId = pcrate->detId(crateId, dmbId, 0, 0);
113  return (detId.rawId() != 0);
114  }
115 
117 
122  protected:
123 
124  void beginJob() { }
125  void beginRun(const edm::Run& r, const edm::EventSetup& c);
126  void setup() { }
127  void analyze(const edm::Event& e, const edm::EventSetup& c);
128  void beginLuminosityBlock(const edm::LuminosityBlock& lumiSeg, const edm::EventSetup& context) { }
129  void endRun(const edm::Run& r, const edm::EventSetup& c) { }
130  void endJob() { }
131 
132 };
133 
134 #endif
cscdqm::Configuration config
static const unsigned int MAX_CRATE_ID
static const char DIR_DAQINFO[]
CSCMonitorModule(const edm::ParameterSet &ps)
Constructor.
Monitoring Object interface used to cover Root object and provide common interface to EventProcessor ...
CSCDetId detId(int vme, int dmb, int cfeb, int layer=0) const
Definition: CSCCrateMap.cc:11
virtual ~CSCMonitorModule()
Destructor.
cscdqm::Dispatcher * dispatcher
CSCDQM Framework frontend and Histogram Cache controller.
Common CSC DQM Module that uses CSCDQM Framework.
void beginRun(const edm::Run &r, const edm::EventSetup &c)
Begin the run.
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
CSCDQM Framework Global Configuration.
void analyze(const edm::Event &e, const edm::EventSetup &c)
Analyze Event.
cscdqm::MonitorObject * bookMonitorObject(const cscdqm::HistoBookRequest &p_req)
Book Monitor Object on Request.
static const unsigned int MIN_CRATE_ID
static const char DIR_DCSINFO[]
const CSCCrateMap * pcrate
static const char INPUT_TAG_LABEL[]
Global stuff.
static const char DIR_EVENTINFO[]
edm::InputTag inputTag
static const unsigned int MIN_DMB_SLOT
bool getCSCDetId(const unsigned int crateId, const unsigned int dmbId, CSCDetId &detId) const
static const char DIR_CRTINFO[]
void beginLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &context)
Interface for Histogram providing objects. Used by Event Processor to retrieve MonitorObject &#39;s and b...
static const unsigned int MAX_DMB_SLOT
void endRun(const edm::Run &r, const edm::EventSetup &c)
Definition: Run.h:41