Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:23

0001 #ifndef CSC_DBGAINS_SRC_IMPL_H
0002 #define CSC_DBGAINS_SRC_IMPL_H
0003 
0004 #include <iostream>
0005 #include <string>
0006 #include <typeinfo>
0007 #include <vector>
0008 
0009 #include "CalibMuon/CSCCalibration/interface/CSCGainsDBConditions.h"
0010 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
0011 #include "CondFormats/CSCObjects/interface/CSCobject.h"
0012 #include "CondFormats/DataRecord/interface/CSCDBGainsRcd.h"
0013 #include "DataFormats/Common/interface/Handle.h"
0014 #include "FWCore/Framework/interface/ESHandle.h"
0015 #include "FWCore/Framework/interface/Event.h"
0016 #include "FWCore/Framework/interface/EventSetup.h"
0017 
0018 namespace popcon {
0019   class CSCDBGainsImpl : public popcon::PopConSourceHandler<CSCDBGains> {
0020   public:
0021     void getNewObjects();
0022     std::string id() const { return m_name; }
0023     ~CSCDBGainsImpl();
0024 
0025     CSCDBGainsImpl(const edm::ParameterSet &pset);
0026 
0027   private:
0028     std::string m_name;
0029   };
0030 }  // namespace popcon
0031 #endif