Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:37:43

0001 #ifndef ECAL_TPG_SLIDINGWINDOW_HANDLER_H
0002 #define ECAL_TPG_SLIDINGWINDOW_HANDLER_H
0003 
0004 #include <vector>
0005 #include <typeinfo>
0006 #include <string>
0007 #include <map>
0008 #include <iostream>
0009 #include <ctime>
0010 
0011 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
0012 #include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
0013 
0014 #include "FWCore/ServiceRegistry/interface/Service.h"
0015 #include "CondCore/DBOutputService/interface/PoolDBOutputService.h"
0016 #include "FWCore/Framework/interface/ESHandle.h"
0017 #include "FWCore/Framework/interface/Event.h"
0018 #include "FWCore/Framework/interface/MakerMacros.h"
0019 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0020 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0021 #include "DataFormats/Common/interface/Handle.h"
0022 #include "FWCore/Framework/interface/EventSetup.h"
0023 #include "FWCore/Framework/interface/EventSetupRecordKey.h"
0024 
0025 #include "CondFormats/EcalObjects/interface/EcalTPGSlidingWindow.h"
0026 #include "CondFormats/DataRecord/interface/EcalTPGSlidingWindowRcd.h"
0027 
0028 #include "OnlineDB/EcalCondDB/interface/all_monitoring_types.h"
0029 #include "OnlineDB/Oracle/interface/Oracle.h"
0030 #include "OnlineDB/EcalCondDB/interface/EcalCondDBInterface.h"
0031 
0032 #include "DataFormats/EcalDetId/interface/EEDetId.h"
0033 #include "DataFormats/EcalDetId/interface/EBDetId.h"
0034 #include "DataFormats/Provenance/interface/Timestamp.h"
0035 
0036 //class EcalElectronicsMapping;
0037 
0038 namespace edm {
0039   class ParameterSet;
0040   class Event;
0041   class EventSetup;
0042 }  // namespace edm
0043 
0044 namespace popcon {
0045 
0046   class EcalTPGSlidingWindowHandler : public popcon::PopConSourceHandler<EcalTPGSlidingWindow> {
0047   public:
0048     EcalTPGSlidingWindowHandler(edm::ParameterSet const&);
0049     ~EcalTPGSlidingWindowHandler() override;
0050 
0051     std::map<std::string, int> makeStripIdEB();
0052     std::map<std::string, int> makeStripIdEE();
0053     void getNewObjects() override;
0054 
0055     std::string id() const override { return m_name; }
0056 
0057     void readFromFile(const char* inputFile);
0058     void writeFile(const char* inputFile);
0059 
0060     EcalCondDBInterface* econn;
0061 
0062   private:
0063     std::string to_string(char value[]) {
0064       std::ostringstream streamOut;
0065       streamOut << value;
0066       return streamOut.str();
0067     }
0068 
0069     unsigned int m_firstRun;
0070     unsigned int m_lastRun;
0071     std::map<std::string, int> correspEBId;
0072     std::map<std::string, int> correspEEId;
0073 
0074     std::string m_location;
0075     std::string m_gentag;
0076     std::string m_sid;
0077     std::string m_user;
0078     std::string m_pass;
0079     std::string m_locationsource;
0080     std::string m_name;
0081     unsigned int m_runnr;
0082     std::string m_runtype;
0083     std::string m_i_tag;
0084     int m_i_version;
0085     unsigned int m_i_run_number;
0086     int m_i_sliding;
0087   };
0088 }  // namespace popcon
0089 #endif