Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef GMTConfigProducers_L1MuGMTParametersOnlineProducer_h
00016 #define GMTConfigProducers_L1MuGMTParametersOnlineProducer_h
00017
00018
00019 #include <memory>
00020 #include <boost/shared_ptr.hpp>
00021
00022
00023
00024 #include "CondFormats/L1TObjects/interface/L1MuGMTParameters.h"
00025 #include "CondFormats/DataRecord/interface/L1MuGMTParametersRcd.h"
00026 #include "CondTools/L1Trigger/interface/L1ConfigOnlineProdBase.h"
00027
00028
00029
00030
00031
00032
00033 class L1MuGMTParametersOnlineProducer : public L1ConfigOnlineProdBase<L1MuGMTParametersRcd, L1MuGMTParameters> {
00034 public:
00035 L1MuGMTParametersOnlineProducer(const edm::ParameterSet&);
00036 ~L1MuGMTParametersOnlineProducer();
00037
00039 virtual boost::shared_ptr<L1MuGMTParameters> newObject( const std::string& objectKey );
00040 protected:
00041
00042 void checkCMSSWVersion(const coral::AttributeList& configRecord);
00043 private:
00044 std::string lookupSoftwareConfigKey(const std::string& globalKey);
00045 bool ignoreVersionMismatch_;
00046 };
00047
00048 #endif
00049