Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:50

0001 #ifndef ECAL_PEDESTALS_HANDLER_H
0002 #define ECAL_PEDESTALS_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/EcalPedestals.h"
0026 #include "CondFormats/DataRecord/interface/EcalPedestalsRcd.h"
0027 #include "CondFormats/EcalObjects/interface/EcalLaserAPDPNRatios.h"
0028 #include "CondFormats/DataRecord/interface/EcalLaserAPDPNRatiosRcd.h"
0029 #include "CondFormats/EcalObjects/interface/EcalLaserAPDPNRatiosRef.h"
0030 #include "CondFormats/DataRecord/interface/EcalLaserAPDPNRatiosRefRcd.h"
0031 #include "CondFormats/EcalObjects/interface/EcalLaserAlphas.h"
0032 #include "CondFormats/DataRecord/interface/EcalLaserAlphasRcd.h"
0033 
0034 #include "OnlineDB/EcalCondDB/interface/all_monitoring_types.h"
0035 #include "OnlineDB/Oracle/interface/Oracle.h"
0036 #include "OnlineDB/EcalCondDB/interface/EcalCondDBInterface.h"
0037 
0038 #include "DataFormats/EcalDetId/interface/EEDetId.h"
0039 #include "DataFormats/EcalDetId/interface/EBDetId.h"
0040 #include "DataFormats/Provenance/interface/Timestamp.h"
0041 
0042 namespace edm {
0043   class ParameterSet;
0044   class Event;
0045   class EventSetup;
0046 }  // namespace edm
0047 
0048 namespace popcon {
0049 
0050   class EcalPedestalsHandler : public popcon::PopConSourceHandler<EcalPedestals> {
0051   public:
0052     EcalPedestalsHandler(edm::ParameterSet const&);
0053     ~EcalPedestalsHandler() override;
0054     bool checkPedestal(EcalPedestals::Item* item);
0055     void getNewObjects() override;
0056     void getNewObjectsP5();
0057     void getNewObjectsH2();
0058     void readPedestalFile();
0059     void readPedestalMC();
0060     void readPedestalTree();
0061     void readPedestalTimestamp();
0062     void readPedestal2017();
0063     std::string id() const override { return m_name; }
0064     EcalCondDBInterface* econn;
0065 
0066   private:
0067     const EcalPedestals* mypedestals;
0068 
0069     unsigned int m_firstRun;
0070     unsigned int m_lastRun;
0071 
0072     std::string m_location;
0073     std::string m_gentag;
0074     std::string m_runtag;
0075     std::string m_sid;
0076     std::string m_user;
0077     std::string m_pass;
0078     std::string m_locationsource;
0079     std::string m_name;
0080     std::string m_filename;
0081     int m_runtype;
0082     bool m_corrected;
0083   };
0084 }  // namespace popcon
0085 #endif