CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/DQM/EcalEndcapMonitorDbModule/interface/EcalEndcapMonitorDbModule.h

Go to the documentation of this file.
00001 #ifndef EcalEndcapMonitorDbModule_H
00002 #define EcalEndcapMonitorDbModule_H
00003 
00004 /*
00005  * \file EcalEndcapMonitorDbModule.h
00006  *
00007  * $Date: 2010/08/08 09:00:46 $
00008  * $Revision: 1.12 $
00009  * \author G. Della Ricca
00010  *
00011 */
00012 
00013 #include <string>
00014 
00015 #include "FWCore/Framework/interface/EDAnalyzer.h"
00016 #include "FWCore/Framework/interface/Event.h"
00017 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00018 
00019 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00020 
00021 class DQMStore;
00022 
00023 class MonitorElementsDb;
00024 
00025 class EcalEndcapMonitorDbModule: public edm::EDAnalyzer{
00026 
00027  public:
00028 
00030   EcalEndcapMonitorDbModule( const edm::ParameterSet& ps );
00031 
00033   virtual ~EcalEndcapMonitorDbModule();
00034 
00035  protected:
00036 
00038   void analyze( const edm::Event& e, const edm::EventSetup& c );
00039 
00040   // BeginJob
00041   void beginJob( void );
00042 
00043   // EndJob
00044   void endJob( void );
00045 
00046  private:
00047   
00048   int icycle_;
00049  
00050   DQMStore* dqmStore_;
00051 
00052   std::string prefixME_;
00053 
00054   std::string htmlDir_;
00055 
00056   std::string xmlFile_;
00057 
00058   MonitorElementsDb* ME_Db_;
00059 
00060   unsigned int sleepTime_;
00061 
00062   coral::ISessionProxy* session_;
00063 
00064 };
00065 
00066 #endif