CMS 3D CMS Logo

L1TMuonBarrelParamsOnlineProd.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <fstream>
3 
11 #include "OnlineDBqueryHelper.h"
12 
13 #include "xercesc/util/PlatformUtils.hpp"
14 using namespace XERCES_CPP_NAMESPACE;
15 
16 class L1TMuonBarrelParamsOnlineProd : public L1ConfigOnlineProdBaseExt<L1TMuonBarrelParamsO2ORcd, L1TMuonBarrelParams> {
17 private:
20 
21 public:
22  std::unique_ptr<const L1TMuonBarrelParams> newObject(const std::string& objectKey,
23  const L1TMuonBarrelParamsO2ORcd& record) override;
24 
27 };
28 
31  wrappedSetWhatProduced(iConfig).setConsumes(baseSettings_token);
32  transactionSafe = iConfig.getParameter<bool>("transactionSafe");
33 }
34 
35 std::unique_ptr<const L1TMuonBarrelParams> L1TMuonBarrelParamsOnlineProd::newObject(
36  const std::string& objectKey, const L1TMuonBarrelParamsO2ORcd& record) {
37  const L1TMuonBarrelParamsRcd& baseRcd = record.template getRecord<L1TMuonBarrelParamsRcd>();
38  auto const& baseSettings = baseRcd.get(baseSettings_token);
39 
40  if (objectKey.empty()) {
41  edm::LogError("L1-O2O: L1TMuonBarrelParamsOnlineProd") << "Key is empty, returning empty L1TMuonBarrelParams";
42  if (transactionSafe)
43  throw std::runtime_error("SummaryForFunctionManager: BMTF | Faulty | Empty objectKey");
44  else {
45  edm::LogError("L1-O2O: L1TMuonBarrelParamsOnlineProd") << "returning unmodified prototype of L1TMuonBarrelParams";
46  return std::make_unique<const L1TMuonBarrelParams>(baseSettings);
47  }
48  }
49 
50  std::string tscKey = objectKey.substr(0, objectKey.find(":"));
51  std::string rsKey = objectKey.substr(objectKey.find(":") + 1, std::string::npos);
52 
53  edm::LogInfo("L1-O2O: L1TMuonBarrelParamsOnlineProd")
54  << "Producing L1TMuonBarrelParams with TSC key = " << tscKey << " and RS key = " << rsKey;
55 
56  std::string algo_key, hw_key;
57  std::string mp7_key, amc13_key;
58  std::string hw_payload, algo_payload, mp7_payload, amc13_payload;
59  try {
60  std::map<std::string, std::string> keys =
61  l1t::OnlineDBqueryHelper::fetch({"ALGO", "HW"}, "BMTF_KEYS", tscKey, m_omdsReader);
62  algo_key = keys["ALGO"];
63  hw_key = keys["HW"];
64 
65  hw_payload = l1t::OnlineDBqueryHelper::fetch({"CONF"}, "BMTF_CLOBS", hw_key, m_omdsReader)["CONF"];
66 
67  algo_payload = l1t::OnlineDBqueryHelper::fetch({"CONF"}, "BMTF_CLOBS", algo_key, m_omdsReader)["CONF"];
68 
69  std::map<std::string, std::string> rsKeys =
70  l1t::OnlineDBqueryHelper::fetch({"MP7", "AMC13"}, "BMTF_RS_KEYS", rsKey, m_omdsReader);
71  mp7_key = rsKeys["MP7"];
72  amc13_key = rsKeys["AMC13"];
73 
74  mp7_payload = l1t::OnlineDBqueryHelper::fetch({"CONF"}, "BMTF_CLOBS", mp7_key, m_omdsReader)["CONF"];
75  amc13_payload = l1t::OnlineDBqueryHelper::fetch({"CONF"}, "BMTF_CLOBS", amc13_key, m_omdsReader)["CONF"];
76 
77  } catch (std::runtime_error& e) {
78  edm::LogError("L1-O2O: L1TMuonBarrelParamsOnlineProd") << e.what();
79  if (transactionSafe)
80  throw std::runtime_error(std::string("SummaryForFunctionManager: BMTF | Faulty | ") + e.what());
81  else {
82  edm::LogError("L1-O2O: L1TMuonBarrelParamsOnlineProd") << "returning unmodified prototype of L1TMuonBarrelParams";
83  return std::make_unique<const L1TMuonBarrelParams>(baseSettings);
84  }
85  }
86 
87  // for debugging dump the configs to local files
88  {
89  std::ofstream output(std::string("/tmp/").append(hw_key.substr(0, hw_key.find("/"))).append(".xml"));
90  output << hw_payload;
91  output.close();
92  }
93  {
94  std::ofstream output(std::string("/tmp/").append(algo_key.substr(0, algo_key.find("/"))).append(".xml"));
95  output << algo_payload;
96  output.close();
97  }
98  {
99  std::ofstream output(std::string("/tmp/").append(mp7_key.substr(0, mp7_key.find("/"))).append(".xml"));
100  output << mp7_payload;
101  output.close();
102  }
103  {
104  std::ofstream output(std::string("/tmp/").append(amc13_key.substr(0, amc13_key.find("/"))).append(".xml"));
105  output << amc13_payload;
106  output.close();
107  }
108 
109  // finally, push all payloads to the XML parser and construct the TrigSystem objects with each of those
110  l1t::XmlConfigParser xmlRdr;
111  l1t::TriggerSystem parsedXMLs;
112  try {
113  // HW settings should always go first
114  xmlRdr.readDOMFromString(hw_payload);
115  xmlRdr.readRootElement(parsedXMLs);
116 
117  // now let's parse ALGO settings
118  xmlRdr.readDOMFromString(algo_payload);
119  xmlRdr.readRootElement(parsedXMLs);
120 
121  // remaining RS settings
122  xmlRdr.readDOMFromString(mp7_payload);
123  xmlRdr.readRootElement(parsedXMLs);
124 
125  xmlRdr.readDOMFromString(amc13_payload);
126  xmlRdr.readRootElement(parsedXMLs);
127  parsedXMLs.setConfigured();
128 
129  } catch (std::runtime_error& e) {
130  edm::LogError("L1-O2O: L1TMuonBarrelParamsOnlineProd") << e.what();
131  if (transactionSafe)
132  throw std::runtime_error(std::string("SummaryForFunctionManager: BMTF | Faulty | ") + e.what());
133  else {
134  edm::LogError("L1-O2O: L1TMuonBarrelParamsOnlineProd") << "returning unmodified prototype of L1TMuonBarrelParams";
135  return std::make_unique<const L1TMuonBarrelParams>(baseSettings);
136  }
137  }
138 
139  L1TMuonBarrelParamsHelper m_params_helper(baseSettings);
140  try {
141  m_params_helper.configFromDB(parsedXMLs);
142  } catch (std::runtime_error& e) {
143  edm::LogError("L1-O2O: L1TMuonBarrelParamsOnlineProd") << e.what();
144  if (transactionSafe)
145  throw std::runtime_error(std::string("SummaryForFunctionManager: BMTF | Faulty | ") + e.what());
146  else {
147  edm::LogError("L1-O2O: L1TMuonBarrelParamsOnlineProd") << "returning unmodified prototype of L1TMuonBarrelParams";
148  return std::make_unique<const L1TMuonBarrelParams>(baseSettings);
149  }
150  }
151 
152  auto retval = std::make_unique<const L1TMuonBarrelParams>(m_params_helper);
153 
154  edm::LogInfo("L1-O2O: L1TCaloParamsOnlineProd") << "SummaryForFunctionManager: BMTF | OK | All looks good";
155  return retval;
156 }
157 
158 //define this as a plug-in
L1TMuonBarrelParamsHelper
Definition: L1TMuonBarrelParamsHelper.h:30
L1ConfigOnlineProdBaseExt< L1TMuonBarrelParamsO2ORcd, L1TMuonBarrelParams >::m_omdsReader
l1t::OMDSReader m_omdsReader
Definition: L1ConfigOnlineProdBaseExt.h:47
l1t::OnlineDBqueryHelper::fetch
static std::map< std::string, std::string > fetch(const std::vector< std::string > &queryColumns, const std::string &table, const std::string &key, l1t::OMDSReader &m_omdsReader)
Definition: OnlineDBqueryHelper.cc:3
convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:32
L1TMuonBarrelParamsO2ORcd.h
l1t::XmlConfigParser::readRootElement
void readRootElement(TriggerSystem &aTriggerSystem, const std::string &sysId="")
Definition: XmlConfigParser.cc:189
L1TMuonBarrelParams.h
edm::LogInfo
Definition: MessageLogger.h:254
GlobalPosition_Frontier_DevDB_cff.record
record
Definition: GlobalPosition_Frontier_DevDB_cff.py:10
L1ConfigOnlineProdBaseExt.h
L1TMuonBarrelParamsHelper.h
relativeConstraints.keys
keys
Definition: relativeConstraints.py:89
L1TMuonBarrelParamsOnline_cfi.L1TMuonBarrelParamsOnlineProd
L1TMuonBarrelParamsOnlineProd
Definition: L1TMuonBarrelParamsOnline_cfi.py:18
L1TMuonBarrelParamsOnlineProd::transactionSafe
bool transactionSafe
Definition: L1TMuonBarrelParamsOnlineProd.cc:18
L1TMuonBarrelParamsO2ORcd
Definition: L1TMuonBarrelParamsO2ORcd.h:15
XmlConfigParser.h
l1t::TriggerSystem
Definition: TriggerSystem.h:14
L1ConfigOnlineProdBaseExt
Definition: L1ConfigOnlineProdBaseExt.h:32
L1TMuonBarrelParamsOnlineProd::~L1TMuonBarrelParamsOnlineProd
~L1TMuonBarrelParamsOnlineProd(void) override
Definition: L1TMuonBarrelParamsOnlineProd.cc:26
XERCES_CPP_NAMESPACE
Definition: XmlConfigParser.h:12
L1TMuonBarrelParamsRcd.h
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
l1t::XmlConfigParser
Definition: XmlConfigParser.h:23
OnlineDBqueryHelper.h
edm::ParameterSet
Definition: ParameterSet.h:36
edm::LogError
Definition: MessageLogger.h:183
mps_setup.append
append
Definition: mps_setup.py:85
L1TMuonBarrelParamsHelper::configFromDB
void configFromDB(l1t::TriggerSystem &trgSys)
Definition: L1TMuonBarrelParamsHelper.cc:124
edm::ESGetToken< L1TMuonBarrelParams, L1TMuonBarrelParamsRcd >
L1TMuonBarrelParamsOnlineProd::baseSettings_token
edm::ESGetToken< L1TMuonBarrelParams, L1TMuonBarrelParamsRcd > baseSettings_token
Definition: L1TMuonBarrelParamsOnlineProd.cc:19
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
L1TMuonBarrelParamsOnlineProd::newObject
std::unique_ptr< const L1TMuonBarrelParams > newObject(const std::string &objectKey, const L1TMuonBarrelParamsO2ORcd &record) override
Definition: L1TMuonBarrelParamsOnlineProd.cc:35
DEFINE_FWK_EVENTSETUP_MODULE
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60
L1TMuonBarrelParamsOnlineProd::L1TMuonBarrelParamsOnlineProd
L1TMuonBarrelParamsOnlineProd(const edm::ParameterSet &)
Definition: L1TMuonBarrelParamsOnlineProd.cc:29
L1TMuonBarrelParamsOnlineProd
Definition: L1TMuonBarrelParamsOnlineProd.cc:16
TriggerSystem.h
edm::eventsetup::EventSetupRecordImplementation::get
PRODUCT const & get(ESGetToken< PRODUCT, T > const &iToken) const
Definition: EventSetupRecordImplementation.h:74
L1TMuonBarrelParams
Definition: L1TMuonBarrelParams.h:23
l1t::XmlConfigParser::readDOMFromString
void readDOMFromString(const std::string &str, xercesc::DOMDocument *&doc)
l1t::TriggerSystem::setConfigured
void setConfigured(bool state=true) noexcept
Definition: TriggerSystem.h:74
L1ConfigOnlineProdBaseExt< L1TMuonBarrelParamsO2ORcd, L1TMuonBarrelParams >::wrappedSetWhatProduced
edm::ESConsumesCollectorT< L1TMuonBarrelParamsO2ORcd > wrappedSetWhatProduced(const edm::ParameterSet &)
Definition: L1ConfigOnlineProdBaseExt.h:93
L1TMuonBarrelParamsRcd
Definition: L1TMuonBarrelParamsRcd.h:13
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37