Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:17

0001 #ifndef FILLINFOPOPCONSOURCEHANDLER_H
0002 #define FILLINFOPOPCONSOURCEHANDLER_H
0003 
0004 #include <string>
0005 
0006 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
0007 #include "CondFormats/RunInfo/interface/FillInfo.h"
0008 #include "FWCore/ParameterSet/interface/ParameterSetfwd.h"
0009 
0010 class FillInfoPopConSourceHandler : public popcon::PopConSourceHandler<FillInfo> {
0011 public:
0012   FillInfoPopConSourceHandler(const edm::ParameterSet& pset);
0013   ~FillInfoPopConSourceHandler() override;
0014   void getNewObjects() override;
0015   std::string id() const override;
0016 
0017 private:
0018   bool m_debug;
0019   unsigned short m_firstFill, m_lastFill;
0020   std::string m_name;
0021   //for reading from relational database source
0022   std::string m_connectionString, m_dipSchema, m_authpath;
0023 };
0024 
0025 #endif