Go to the documentation of this file.00001 #ifndef DTKeyedConfigDBInit_H
00002 #define DTKeyedConfigDBInit_H
00003
00014
00015
00016
00017 #include "FWCore/Framework/interface/EDAnalyzer.h"
00018
00019
00020
00021
00022 #include "FWCore/Framework/interface/Event.h"
00023 #include "FWCore/Framework/interface/EventSetup.h"
00024 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00025
00026
00027
00028
00029 #include <string>
00030
00031
00032
00033
00034
00035 class DTKeyedConfigDBInit: public edm::EDAnalyzer {
00036
00037 public:
00038
00041 explicit DTKeyedConfigDBInit( const edm::ParameterSet& ps );
00042
00045 virtual ~DTKeyedConfigDBInit();
00046
00049
00050 virtual void beginJob();
00051 virtual void analyze( const edm::Event& e, const edm::EventSetup& c );
00052 virtual void endJob();
00053
00054 private:
00055
00056 std::string container;
00057 std::string iov;
00058
00059 };
00060
00061
00062 #endif // DTKeyedConfigDBInit_H
00063