CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/DQMServices/Examples/interface/HarvestingDataCertification.h

Go to the documentation of this file.
00001 #ifndef HarvestingDataCertification_h
00002 #define HarvestingDataCertification_h
00003 
00013 // framework & common header files
00014 #include "FWCore/Framework/interface/EDAnalyzer.h"
00015 #include "FWCore/Framework/interface/Frameworkfwd.h"
00016 #include "FWCore/Framework/interface/Event.h"
00017 #include "FWCore/Framework/interface/EventSetup.h"
00018 #include "FWCore/Framework/interface/Run.h"
00019 #include "FWCore/Framework/interface/MakerMacros.h"
00020 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00021 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00022 
00023 //DQM services
00024 #include "DQMServices/Core/interface/DQMStore.h"
00025 #include "FWCore/ServiceRegistry/interface/Service.h"
00026 #include "DQMServices/Core/interface/MonitorElement.h"
00027 
00028 #include <iostream>
00029 #include <stdlib.h>
00030 #include <string>
00031 #include <memory>
00032 #include <vector>
00033 
00034 class HarvestingDataCertification : public edm::EDAnalyzer
00035 {
00036   
00037  public:
00038 
00039   explicit HarvestingDataCertification(const edm::ParameterSet&);
00040   virtual ~HarvestingDataCertification();
00041   virtual void beginJob();
00042   virtual void endJob();  
00043   virtual void analyze(const edm::Event&, const edm::EventSetup&);
00044   virtual void beginRun(const edm::Run&, const edm::EventSetup&);
00045   virtual void endRun(const edm::Run&, const edm::EventSetup&);
00046 
00047   
00048 private:
00049   std::string fName;
00050   int verbosity;
00051 };
00052 
00053 #endif