00001 #ifndef CSCIndexerESProducer_H 00002 #define CSCIndexerESProducer_H 00003 00004 #include <memory> 00005 #include "boost/shared_ptr.hpp" 00006 00007 #include "FWCore/Framework/interface/ESProducer.h" 00008 00009 #include "CalibMuon/CSCCalibration/interface/CSCIndexerBase.h" 00010 #include "CalibMuon/CSCCalibration/interface/CSCIndexerRecord.h" 00011 00012 class CSCIndexerESProducer : public edm::ESProducer { 00013 00014 public: 00015 typedef boost::shared_ptr<CSCIndexerBase> BSP_TYPE; 00016 00017 CSCIndexerESProducer(const edm::ParameterSet&); 00018 ~CSCIndexerESProducer(); 00019 00020 BSP_TYPE produce(const CSCIndexerRecord&); 00021 00022 private: 00023 std::string algoName; 00024 }; 00025 00026 #endif