File indexing completed on 2024-04-06 12:22:16
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #include "CondTools/L1Trigger/interface/L1ObjectKeysOnlineProdBase.h"
0023
0024 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0025
0026
0027
0028
0029
0030 class DTTFRSKeysOnlineProd : public L1ObjectKeysOnlineProdBase {
0031 public:
0032 DTTFRSKeysOnlineProd(const edm::ParameterSet&);
0033 ~DTTFRSKeysOnlineProd() override;
0034
0035 void fillObjectKeys(FillType) override;
0036
0037 private:
0038
0039 };
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050
0051
0052 DTTFRSKeysOnlineProd::DTTFRSKeysOnlineProd(const edm::ParameterSet& iConfig) : L1ObjectKeysOnlineProdBase(iConfig) {}
0053
0054 DTTFRSKeysOnlineProd::~DTTFRSKeysOnlineProd() {
0055
0056
0057 }
0058
0059
0060
0061
0062
0063
0064 void DTTFRSKeysOnlineProd::fillObjectKeys(FillType pL1TriggerKey) {
0065
0066 l1t::OMDSReader::QueryResults rsKeyResults =
0067 m_omdsReader.basicQuery("HW_SETTINGS", "CMS_DT_TF", "DTTF_SETTINGS_KEY_CURRENT");
0068
0069 if (rsKeyResults.queryFailed() || rsKeyResults.numberRows() != 1)
0070 {
0071 edm::LogError("L1-O2O") << "Problem with DTTF RS key.";
0072 return;
0073 }
0074
0075 std::string rsKey;
0076 rsKeyResults.fillVariable(rsKey);
0077
0078 pL1TriggerKey->add("L1MuDTTFMasksRcd", "L1MuDTTFMasks", rsKey);
0079 }
0080
0081
0082 DEFINE_FWK_EVENTSETUP_MODULE(DTTFRSKeysOnlineProd);