Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CondTools_L1Trigger_L1TriggerKeyListDummyProdExt_h
0002 #define CondTools_L1Trigger_L1TriggerKeyListDummyProdExt_h
0003 
0004 #include <memory>
0005 
0006 #include "FWCore/Framework/interface/ModuleFactory.h"
0007 #include "FWCore/Framework/interface/ESProducer.h"
0008 
0009 #include "FWCore/Framework/interface/ESHandle.h"
0010 
0011 #include "CondFormats/L1TObjects/interface/L1TriggerKeyListExt.h"
0012 #include "CondFormats/DataRecord/interface/L1TriggerKeyListExtRcd.h"
0013 
0014 class L1TriggerKeyListDummyProdExt : public edm::ESProducer {
0015 public:
0016   L1TriggerKeyListDummyProdExt(const edm::ParameterSet&);
0017   ~L1TriggerKeyListDummyProdExt() override;
0018 
0019   using ReturnType = std::unique_ptr<L1TriggerKeyListExt>;
0020 
0021   ReturnType produce(const L1TriggerKeyListExtRcd&);
0022 
0023 private:
0024   // ----------member data ---------------------------
0025 };
0026 
0027 #endif