File indexing completed on 2024-04-06 12:03:12
0001 #ifndef CondTools_L1Trigger_L1TriggerKeyListDummyProd_h
0002 #define CondTools_L1Trigger_L1TriggerKeyListDummyProd_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023 #include <memory>
0024
0025
0026 #include "FWCore/Framework/interface/ModuleFactory.h"
0027 #include "FWCore/Framework/interface/ESProducer.h"
0028
0029 #include "FWCore/Framework/interface/ESHandle.h"
0030
0031
0032 #include "CondFormats/L1TObjects/interface/L1TriggerKeyList.h"
0033 #include "CondFormats/DataRecord/interface/L1TriggerKeyListRcd.h"
0034
0035 class L1TriggerKeyListDummyProd : public edm::ESProducer {
0036 public:
0037 L1TriggerKeyListDummyProd(const edm::ParameterSet&);
0038 ~L1TriggerKeyListDummyProd() override;
0039
0040 typedef std::unique_ptr<L1TriggerKeyList> ReturnType;
0041
0042 ReturnType produce(const L1TriggerKeyListRcd&);
0043
0044 private:
0045
0046 };
0047
0048 #endif