Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CondTools_L1Trigger_L1TriggerKeyListDummyProd_h
0002 #define CondTools_L1Trigger_L1TriggerKeyListDummyProd_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     L1Trigger
0006 // Class  :     L1TriggerKeyListDummyProd
0007 //
0008 /**\class L1TriggerKeyListDummyProd L1TriggerKeyListDummyProd.h CondTools/L1Trigger/interface/L1TriggerKeyListDummyProd.h
0009 
0010  Description: <one line class summary>
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:
0018 //         Created:  Sat Mar  1 05:06:43 CET 2008
0019 // $Id$
0020 //
0021 
0022 // system include files
0023 #include <memory>
0024 
0025 // user include files
0026 #include "FWCore/Framework/interface/ModuleFactory.h"
0027 #include "FWCore/Framework/interface/ESProducer.h"
0028 
0029 #include "FWCore/Framework/interface/ESHandle.h"
0030 
0031 // forward declarations
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   // ----------member data ---------------------------
0046 };
0047 
0048 #endif