CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/CondTools/L1Trigger/plugins/L1SubsystemKeysOnlineProd.h

Go to the documentation of this file.
00001 #ifndef CondTools_L1Trigger_L1SubsystemKeysOnlineProd_h
00002 #define CondTools_L1Trigger_L1SubsystemKeysOnlineProd_h
00003 // -*- C++ -*-
00004 //
00005 // Package:     L1Trigger
00006 // Class  :     L1SubsystemKeysOnlineProd
00007 // 
00016 //
00017 // Original Author:  Werner Sun
00018 //         Created:  Thu Aug 21 19:30:30 CEST 2008
00019 // $Id: L1SubsystemKeysOnlineProd.h,v 1.2 2008/10/13 01:46:36 wsun Exp $
00020 //
00021 
00022 // system include files
00023 #include <memory>
00024 #include "boost/shared_ptr.hpp"
00025 
00026 // user include files
00027 #include "FWCore/Framework/interface/ModuleFactory.h"
00028 #include "FWCore/Framework/interface/ESProducer.h"
00029 #include "FWCore/Framework/interface/ESHandle.h"
00030 
00031 #include "CondFormats/L1TObjects/interface/L1TriggerKey.h"
00032 #include "CondFormats/DataRecord/interface/L1TriggerKeyRcd.h"
00033 
00034 #include "CondTools/L1Trigger/interface/OMDSReader.h"
00035 
00036 // forward declarations
00037 
00038 class L1SubsystemKeysOnlineProd : public edm::ESProducer {
00039    public:
00040       L1SubsystemKeysOnlineProd(const edm::ParameterSet&);
00041       ~L1SubsystemKeysOnlineProd();
00042 
00043       typedef boost::shared_ptr<L1TriggerKey> ReturnType;
00044 
00045       ReturnType produce(const L1TriggerKeyRcd&);
00046    private:
00047       // ----------member data ---------------------------
00048       std::string m_tscKey ;
00049       l1t::OMDSReader m_omdsReader ;
00050       bool m_forceGeneration ;
00051 };
00052 
00053 #endif