File indexing completed on 2024-04-06 12:22:50
0001 #ifndef CSC_CHAMBERINDEX_SRC_IMPL_H
0002 #define CSC_CHAMBERINDEX_SRC_IMPL_H
0003
0004 #include <vector>
0005 #include <string>
0006 #include <iostream>
0007 #include <typeinfo>
0008
0009 #include "CondCore/PopCon/interface/PopConSourceHandler.h"
0010 #include "CondFormats/CSCObjects/interface/CSCobject.h"
0011 #include "CondFormats/DataRecord/interface/CSCChamberIndexRcd.h"
0012 #include "FWCore/Framework/interface/ESHandle.h"
0013 #include "FWCore/Framework/interface/Event.h"
0014 #include "DataFormats/Common/interface/Handle.h"
0015 #include "FWCore/Framework/interface/EventSetup.h"
0016 #include "OnlineDB/CSCCondDB/interface/CSCChamberIndexValues.h"
0017 #include "OnlineDB/CSCCondDB/interface/CSCMap1.h"
0018
0019 namespace popcon {
0020 class CSCChamberIndexImpl : public popcon::PopConSourceHandler<CSCChamberIndex> {
0021 public:
0022 void getNewObjects();
0023 std::string id() const { return m_name; }
0024 ~CSCChamberIndexImpl();
0025
0026 CSCChamberIndexImpl(const edm::ParameterSet& pset);
0027
0028 private:
0029 std::string m_name;
0030 };
0031 }
0032 #endif