CMS 3D CMS Logo

L1TMuonGlobalParamsOnlineProd.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <fstream>
3 
12 #include "OnlineDBqueryHelper.h"
13 
14 class L1TMuonGlobalParamsOnlineProd : public L1ConfigOnlineProdBaseExt<L1TMuonGlobalParamsO2ORcd, L1TMuonGlobalParams> {
15 private:
16  const bool transactionSafe;
18 
19 public:
20  std::unique_ptr<const L1TMuonGlobalParams> newObject(const std::string &objectKey,
21  const L1TMuonGlobalParamsO2ORcd &record) override;
22 
25 };
26 
29  transactionSafe(iConfig.getParameter<bool>("transactionSafe")),
30  baseSettings_token(wrappedSetWhatProduced(iConfig).consumes()) {}
31 
32 std::unique_ptr<const L1TMuonGlobalParams> L1TMuonGlobalParamsOnlineProd::newObject(
33  const std::string &objectKey, const L1TMuonGlobalParamsO2ORcd &record) {
34  const L1TMuonGlobalParamsRcd &baseRcd = record.template getRecord<L1TMuonGlobalParamsRcd>();
35  auto const &baseSettings = baseRcd.get(baseSettings_token);
36 
37  if (objectKey.empty()) {
38  edm::LogError("L1-O2O: L1TMuonGlobalParamsOnlineProd") << "Key is empty";
39  if (transactionSafe)
40  throw std::runtime_error("SummaryForFunctionManager: uGMT | Faulty | Empty objectKey");
41  else {
42  edm::LogError("L1-O2O: L1TMuonGlobalParams") << "returning unmodified prototype of L1TMuonGlobalParams";
43  return std::make_unique<const L1TMuonGlobalParams>(baseSettings);
44  }
45  }
46 
47  std::string tscKey = objectKey.substr(0, objectKey.find(':'));
48  std::string rsKey = objectKey.substr(objectKey.find(':') + 1, std::string::npos);
49 
50  edm::LogInfo("L1-O2O: L1TMuonGlobalParamsOnlineProd")
51  << "Producing L1TMuonGlobalParams with TSC key =" << tscKey << " and RS key = " << rsKey;
52 
53  std::string algo_key, hw_key;
54  std::string hw_payload;
55  std::map<std::string, std::string> rs_payloads, algo_payloads;
56  try {
57  std::map<std::string, std::string> keys =
58  l1t::OnlineDBqueryHelper::fetch({"ALGO", "HW"}, "UGMT_KEYS", tscKey, m_omdsReader);
59  algo_key = keys["ALGO"];
60  hw_key = keys["HW"];
61 
62  hw_payload = l1t::OnlineDBqueryHelper::fetch({"CONF"}, "UGMT_CLOBS", hw_key, m_omdsReader)["CONF"];
63 
64  std::map<std::string, std::string> rsKeys =
65  l1t::OnlineDBqueryHelper::fetch({"MP7", "MP7_MONI", "AMC13_MONI"}, "UGMT_RS_KEYS", rsKey, m_omdsReader);
66 
67  std::map<std::string, std::string> algoKeys =
68  l1t::OnlineDBqueryHelper::fetch({"MP7", "LUTS"}, "UGMT_ALGO_KEYS", algo_key, m_omdsReader);
69 
70  for (auto &key : rsKeys)
71  rs_payloads[key.second] =
72  l1t::OnlineDBqueryHelper::fetch({"CONF"}, "UGMT_CLOBS", key.second, m_omdsReader)["CONF"];
73 
74  for (auto &key : algoKeys)
75  algo_payloads[key.second] =
76  l1t::OnlineDBqueryHelper::fetch({"CONF"}, "UGMT_CLOBS", key.second, m_omdsReader)["CONF"];
77  } catch (std::runtime_error &e) {
78  edm::LogError("L1-O2O: L1TMuonGlobalParamsOnlineProd") << e.what();
79  if (transactionSafe)
80  throw std::runtime_error("SummaryForFunctionManager: uGMT | Faulty | Broken key");
81  else {
82  edm::LogError("L1-O2O: L1TMuonGlobalParamsOnlineProd") << "returning unmodified prototype of L1TMuonGlobalParams";
83  return std::make_unique<const L1TMuonGlobalParams>(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  for (auto &conf : rs_payloads) {
94  std::ofstream output(std::string("/tmp/").append(conf.first.substr(0, conf.first.find("/"))).append(".xml"));
95  output << conf.second;
96  output.close();
97  }
98  for (auto &conf : algo_payloads) {
99  std::ofstream output(std::string("/tmp/").append(conf.first.substr(0, conf.first.find("/"))).append(".xml"));
100  output << conf.second;
101  output.close();
102  }
103 
104  // finally, push all payloads to the XML parser and construct the TrigSystem objects with each of those
105  l1t::XmlConfigParser xmlRdr;
106  l1t::TriggerSystem trgSys;
107 
108  try {
109  // HW settings should always go first
110  xmlRdr.readDOMFromString(hw_payload);
111  xmlRdr.readRootElement(trgSys);
112 
113  // now let's parse ALGO and then RS settings
114  for (auto &conf : algo_payloads) {
115  xmlRdr.readDOMFromString(conf.second);
116  xmlRdr.readRootElement(trgSys);
117  }
118  for (auto &conf : rs_payloads) {
119  xmlRdr.readDOMFromString(conf.second);
120  xmlRdr.readRootElement(trgSys);
121  }
122  trgSys.setConfigured();
123  } catch (std::runtime_error &e) {
124  edm::LogError("L1-O2O: L1TMuonGlobalParamsOnlineProd") << e.what();
125  if (transactionSafe)
126  throw std::runtime_error("SummaryForFunctionManager: uGMT | Faulty | Cannot parse XMLs");
127  else {
128  edm::LogError("L1-O2O: L1TMuonGlobalParamsOnlineProd") << "returning unmodified prototype of L1TMuonGlobalParams";
129  return std::make_unique<const L1TMuonGlobalParams>(baseSettings);
130  }
131  }
132 
133  L1TMuonGlobalParamsHelper m_params_helper(baseSettings);
134  try {
135  m_params_helper.loadFromOnline(trgSys);
136  } catch (std::runtime_error &e) {
137  edm::LogError("L1-O2O: L1TMuonGlobalParamsOnlineProd") << e.what();
138  if (transactionSafe)
139  throw std::runtime_error("SummaryForFunctionManager: uGMT | Faulty | Cannot run helper");
140  else {
141  edm::LogError("L1-O2O: L1TMuonGlobalParamsOnlineProd") << "returning unmodified prototype of L1TMuonGlobalParams";
142  return std::make_unique<const L1TMuonGlobalParams>(baseSettings);
143  }
144  }
145 
146  auto retval = std::make_unique<const L1TMuonGlobalParams>(cast_to_L1TMuonGlobalParams(m_params_helper));
147 
148  edm::LogInfo("L1-O2O: L1TMuonGlobalParamsOnlineProd")
149  << "SummaryForFunctionManager: uGMT | OK | All looks good";
150  return retval;
151 }
152 
153 //define this as a plug-in
const L1TMuonGlobalParams & cast_to_L1TMuonGlobalParams(const L1TMuonGlobalParams_PUBLIC &x)
void setConfigured(bool state=true) noexcept
Definition: TriggerSystem.h:74
std::unique_ptr< const L1TMuonGlobalParams > newObject(const std::string &objectKey, const L1TMuonGlobalParamsO2ORcd &record) override
const edm::ESGetToken< L1TMuonGlobalParams, L1TMuonGlobalParamsRcd > baseSettings_token
Log< level::Error, false > LogError
PRODUCT const & get(ESGetToken< PRODUCT, T > const &iToken) const
void readDOMFromString(const std::string &str, xercesc::DOMDocument *&doc)
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)
void loadFromOnline(l1t::TriggerSystem &trgSys, const std::string &processorId="")
key
prepare the HTCondor submission files and eventually submit them
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:61
Log< level::Info, false > LogInfo
void readRootElement(TriggerSystem &aTriggerSystem, const std::string &sysId="")
L1TMuonGlobalParamsOnlineProd(const edm::ParameterSet &)
Definition: output.py:1