CMS 3D CMS Logo

L1TMuonEndCapParamsOnlineProd.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <fstream>
3 #include <ctime>
4 #include <string>
5 #include <map>
6 
13 #include "OnlineDBqueryHelper.h"
14 
15 class L1TMuonEndCapParamsOnlineProd : public L1ConfigOnlineProdBaseExt<L1TMuonEndCapParamsO2ORcd, L1TMuonEndCapParams> {
16 private:
17  const bool transactionSafe;
19 
20 public:
21  std::unique_ptr<const L1TMuonEndCapParams> newObject(const std::string& objectKey,
22  const L1TMuonEndCapParamsO2ORcd& record) override;
23 
26 };
27 
30  transactionSafe(iConfig.getParameter<bool>("transactionSafe")),
31  baseSettings_token(wrappedSetWhatProduced(iConfig).consumes()) {}
32 
33 std::unique_ptr<const L1TMuonEndCapParams> L1TMuonEndCapParamsOnlineProd::newObject(
34  const std::string& objectKey, const L1TMuonEndCapParamsO2ORcd& record) {
35  const L1TMuonEndCapParamsRcd& baseRcd = record.template getRecord<L1TMuonEndCapParamsRcd>();
36  auto const& baseSettings = baseRcd.get(baseSettings_token);
37 
38  if (objectKey.empty()) {
39  edm::LogError("L1-O2O: L1TMuonEndCapParamsOnlineProd") << "Key is empty";
40  if (transactionSafe)
41  throw std::runtime_error("SummaryForFunctionManager: EMTF | Faulty | Empty objectKey");
42  else {
43  edm::LogError("L1-O2O: L1TMuonEndCapParamsOnlineProd") << "returning unmodified prototype of L1TMuonEndCapParams";
44  return std::make_unique<const L1TMuonEndCapParams>(baseSettings);
45  }
46  }
47 
48  std::string tscKey = objectKey.substr(0, objectKey.find(':'));
49  std::string rsKey = objectKey.substr(objectKey.find(':') + 1, std::string::npos);
50 
51  edm::LogInfo("L1-O2O: L1TMuonEndCapParamsOnlineProd")
52  << "Producing L1TMuonEndCapParams with TSC key = " << tscKey << " and RS key = " << rsKey;
53 
54  std::string algo_key, hw_key;
55  std::string algo_payload, hw_payload;
56  try {
57  std::map<std::string, std::string> keys =
58  l1t::OnlineDBqueryHelper::fetch({"HW", "ALGO"}, "EMTF_KEYS", tscKey, m_omdsReader);
59 
60  hw_key = keys["HW"];
61  algo_key = keys["ALGO"];
62 
63  hw_payload = l1t::OnlineDBqueryHelper::fetch({"CONF"}, "EMTF_CLOBS", hw_key, m_omdsReader)["CONF"];
64 
65  algo_payload = l1t::OnlineDBqueryHelper::fetch({"CONF"}, "EMTF_CLOBS", algo_key, m_omdsReader)["CONF"];
66 
67  } catch (std::runtime_error& e) {
68  edm::LogError("L1-O2O: L1TMuonEndCapParamsOnlineProd") << e.what();
69  if (transactionSafe)
70  throw std::runtime_error("SummaryForFunctionManager: EMTF | Faulty | Broken key");
71  else {
72  edm::LogError("L1-O2O: L1TMuonEndCapParamsOnlineProd") << "returning unmodified prototype of L1TMuonEndCapParams";
73  return std::make_unique<const L1TMuonEndCapParams>(baseSettings);
74  }
75  }
76 
77  // for debugging purposes dump the configs to local files
78  {
79  std::ofstream output(std::string("/tmp/").append(hw_key.substr(0, hw_key.find('/'))).append(".xml"));
80  output << hw_payload;
81  output.close();
82  }
83  {
84  std::ofstream output(std::string("/tmp/").append(algo_key.substr(0, algo_key.find('/'))).append(".xml"));
85  output << algo_payload;
86  output.close();
87  }
88 
89  l1t::XmlConfigParser xmlRdr;
90  l1t::TriggerSystem trgSys;
91 
92  try {
93  xmlRdr.readDOMFromString(hw_payload);
94  xmlRdr.readRootElement(trgSys);
95 
96  xmlRdr.readDOMFromString(algo_payload);
97  xmlRdr.readRootElement(trgSys);
98 
99  trgSys.setConfigured();
100  } catch (std::runtime_error& e) {
101  edm::LogError("L1-O2O: L1TMuonEndCapParamsOnlineProd") << e.what();
102  if (transactionSafe)
103  throw std::runtime_error("SummaryForFunctionManager: EMTF | Faulty | Cannot parse XMLs");
104  else {
105  edm::LogError("L1-O2O: L1TMuonEndCapParamsOnlineProd") << "returning unmodified prototype of L1TMuonEndCapParams";
106  return std::make_unique<const L1TMuonEndCapParams>(baseSettings);
107  }
108  }
109 
110  // Changed from "EMTF-1" to "EMTFp1", but is this backwards compatible? Does it need to be? - AWB 10.04.2018
111  std::map<std::string, l1t::Parameter> conf = trgSys.getParameters("EMTFp1"); // any processor will do
112  // if (conf still empty) conf = trgSys.getParameters("EMTF+1"); // Should add some conditional for backwards-compatibility
113 
114  std::string core_fwv = conf["core_firmware_version"].getValueAsStr();
115  tm brokenTime;
116  strptime(core_fwv.c_str(), "%Y-%m-%d %T", &brokenTime);
117  time_t fw_sinceEpoch = timegm(&brokenTime);
118 
119  // std::string pclut_v = conf["pc_lut_version"].getValueAsStr();
120  // strptime(pclut_v.c_str(), "%Y-%m-%d", &brokenTime);
121  // time_t pclut_sinceEpoch = timegm(&brokenTime);
122 
123  auto retval = std::make_unique<L1TMuonEndCapParams>();
124 
125  retval->firmwareVersion_ = fw_sinceEpoch;
126  retval->PtAssignVersion_ = conf["pt_lut_version"].getValue<unsigned int>();
127  retval->PhiMatchWindowSt1_ = 1; //pclut_sinceEpoch;
128 
129  edm::LogInfo("L1-O2O: L1TMuonEndCapParamsOnlineProd")
130  << "SummaryForFunctionManager: EMTF | OK | All looks good";
131  return retval;
132 }
133 
134 //define this as a plug-in
void setConfigured(bool state=true) noexcept
Definition: TriggerSystem.h:74
Log< level::Error, false > LogError
L1TMuonEndCapParamsOnlineProd(const edm::ParameterSet &)
PRODUCT const & get(ESGetToken< PRODUCT, T > const &iToken) const
void readDOMFromString(const std::string &str, xercesc::DOMDocument *&doc)
const std::map< std::string, Parameter > & getParameters(const char *processor) const
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)
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:61
Log< level::Info, false > LogInfo
void readRootElement(TriggerSystem &aTriggerSystem, const std::string &sysId="")
Definition: output.py:1
std::unique_ptr< const L1TMuonEndCapParams > newObject(const std::string &objectKey, const L1TMuonEndCapParamsO2ORcd &record) override
const edm::ESGetToken< L1TMuonEndCapParams, L1TMuonEndCapParamsRcd > baseSettings_token