Go to the documentation of this file.00001 #ifndef ECAL_TPG_PEDESTALS_HANDLER_H
00002 #define ECAL_TPG_PEDESTALS_HANDLER_H
00003
00004 #include <vector>
00005 #include <typeinfo>
00006 #include <string>
00007 #include <map>
00008 #include <iostream>
00009 #include <time.h>
00010
00011 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
00012 #include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
00013
00014
00015 #include "FWCore/ServiceRegistry/interface/Service.h"
00016 #include "CondCore/DBOutputService/interface/PoolDBOutputService.h"
00017 #include "FWCore/Framework/interface/ESHandle.h"
00018 #include "FWCore/Framework/interface/Event.h"
00019 #include "FWCore/Framework/interface/MakerMacros.h"
00020 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00021 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00022 #include "DataFormats/Common/interface/Handle.h"
00023 #include "FWCore/Framework/interface/EventSetup.h"
00024 #include "FWCore/Framework/interface/EventSetupRecordKey.h"
00025
00026
00027 #include "CondFormats/EcalObjects/interface/EcalTPGPedestals.h"
00028 #include "CondFormats/DataRecord/interface/EcalTPGPedestalsRcd.h"
00029
00030 #include "OnlineDB/EcalCondDB/interface/all_monitoring_types.h"
00031 #include "OnlineDB/Oracle/interface/Oracle.h"
00032 #include "OnlineDB/EcalCondDB/interface/EcalCondDBInterface.h"
00033
00034 #include "DataFormats/EcalDetId/interface/EEDetId.h"
00035 #include "DataFormats/EcalDetId/interface/EBDetId.h"
00036 #include "DataFormats/Provenance/interface/Timestamp.h"
00037
00038 namespace edm {
00039 class ParameterSet;
00040 class Event;
00041 class EventSetup;
00042 }
00043
00044 namespace popcon
00045 {
00046
00047
00048 class EcalTPGPedestalsHandler : public popcon::PopConSourceHandler<EcalTPGPedestals>
00049 {
00050
00051 std::string to_string( char value[]) {
00052 std::ostringstream streamOut;
00053 streamOut << value;
00054 return streamOut.str();
00055 }
00056
00057 public:
00058
00059 EcalTPGPedestalsHandler(edm::ParameterSet const & );
00060 ~EcalTPGPedestalsHandler();
00061 void getNewObjects();
00062
00063 std::string id() const { return m_name;}
00064
00065 void readFromFile(const char* inputFile) ;
00066 void writeFile(const char* inputFile);
00067
00068
00069 EcalCondDBInterface* econn;
00070
00071 private:
00072 const EcalTPGPedestals * mypedestals;
00073
00074 unsigned int m_firstRun ;
00075 unsigned int m_lastRun ;
00076
00077 std::string m_location;
00078 std::string m_gentag;
00079 std::string m_sid;
00080 std::string m_user;
00081 std::string m_pass;
00082 std::string m_locationsource;
00083 std::string m_name;
00084 unsigned int m_runnr;
00085 std::string m_runtype;
00086 std::string m_i_tag;
00087 int m_i_version;
00088 unsigned int m_i_run_number;
00089 int m_i_ped;
00090
00091 };
00092 }
00093 #endif
00094