17 #include "xercesc/util/PlatformUtils.hpp" 27 std::map<std::string, l1t::Parameter>& conf,
28 std::map<std::string, l1t::Mask>&);
30 std::map<std::string, l1t::Parameter>& conf,
31 std::map<std::string, l1t::Mask>&);
34 std::unique_ptr<const l1t::CaloParams> newObject(
const std::string& objectKey,
42 std::map<std::string, l1t::Parameter>& conf,
43 std::map<std::string, l1t::Mask>&) {
44 const char* expectedParams[] = {
45 "layer1ECalScaleFactors",
46 "layer1HCalScaleFactors",
47 "layer1HFScaleFactors",
48 "layer1ECalScaleETBins",
49 "layer1HCalScaleETBins",
57 for (
const auto param : expectedParams) {
58 if (conf.find(param) == conf.end()) {
60 <<
"Unable to locate expected CaloLayer1 parameter: " << param <<
" in L1 settings payload!";
72 if (conf.find(
"layer1ECalScalePhiBins") != conf.end())
74 conf[
"layer1ECalScalePhiBins"].getVector<
unsigned int>());
75 if (conf.find(
"layer1HCalScalePhiBins") != conf.end())
77 if (conf.find(
"layer1HFScalePhiBins") != conf.end())
79 if (conf.find(
"layer1SecondStageLUT") != conf.end())
86 std::map<std::string, l1t::Parameter>& conf,
87 std::map<std::string, l1t::Mask>&) {
88 const char* expectedParams[] = {
89 "leptonSeedThreshold",
90 "leptonTowerThreshold",
91 "pileUpTowerThreshold",
92 "egammaRelaxationThreshold",
97 "egammaBypassExtendedHOverE",
98 "egammaHOverECut_iEtaLT15",
99 "egammaHOverECut_iEtaGTEq15",
100 "egammaEnergyCalibLUT",
111 "jetBypassPileUpSub",
114 "towerCountThreshold",
117 "ecalET_towerThresholdLUT",
118 "ET_towerThresholdLUT",
119 "MET_towerThresholdLUT",
120 "ET_centralityLowerThresholds",
121 "ET_centralityUpperThresholds",
123 "ecalET_energyCalibLUT",
124 "MET_energyCalibLUT",
125 "METHF_energyCalibLUT",
130 for (
const auto param : expectedParams) {
131 if (conf.find(param) == conf.end()) {
133 <<
"Unable to locate expected CaloLayer2 parameter: " << param <<
" in L1 settings payload!";
144 paramsHelper.
setEgMaxPtHOverE((conf[
"egammaRelaxationThreshold"].getValue<int>()) / 2.);
145 paramsHelper.
setEgEtaCut((conf[
"egammaMaxEta"].getValue<int>()));
162 paramsHelper.
setJetBypassPUS(conf[
"jetBypassPileUpSub"].getValue<bool>());
167 std::vector<int> etSumEtThresh;
169 etSumEtaMax.push_back(conf[
"ETMET_maxTowerEta"].getValue<int>());
170 etSumEtaMax.push_back(conf[
"HTMHT_maxJetEta"].getValue<int>());
171 etSumEtaMax.push_back(conf[
"ETMET_maxTowerEta"].getValue<int>());
172 etSumEtaMax.push_back(conf[
"HTMHT_maxJetEta"].getValue<int>());
173 etSumEtaMax.push_back(conf[
"towerCountMaxEta"].getValue<int>());
175 etSumEtThresh.push_back(0);
176 etSumEtThresh.push_back(conf[
"HT_jetThreshold"].getValue<int>() / 2);
177 etSumEtThresh.push_back(0);
178 etSumEtThresh.push_back(conf[
"MHT_jetThreshold"].getValue<int>() / 2);
179 etSumEtThresh.push_back(conf[
"towerCountThreshold"].getValue<int>() / 2);
190 std::vector<double> etSumCentLowerValues;
191 std::vector<double> etSumCentUpperValues;
193 etSumCentLowerValues = conf[
"ET_centralityLowerThresholds"].getVector<
double>();
194 etSumCentUpperValues = conf[
"ET_centralityUpperThresholds"].getVector<
double>();
214 baseSettings_token(wrappedSetWhatProduced(iConfig).consumes()),
223 if (objectKey.empty()) {
224 edm::LogError(
"L1-O2O: L1TCaloParamsOnlineProd") <<
"Key is empty";
226 throw std::runtime_error(
"SummaryForFunctionManager: Calo | Faulty | Empty objectKey");
228 edm::LogError(
"L1-O2O: L1TCaloParamsOnlineProd") <<
"returning unmodified prototype of l1t::CaloParams";
229 return std::make_unique<const l1t::CaloParams>(baseSettings);
233 std::string tscKey = objectKey.substr(0, objectKey.find(
':'));
234 std::string rsKey = objectKey.substr(objectKey.find(
':') + 1, std::string::npos);
237 <<
"Producing L1TCaloParamsOnlineProd with TSC key = " << tscKey <<
" and RS key = " << rsKey;
241 std::string calol2_top_key, calol2_algo_key, calol2_hw_key;
243 std::map<std::string, std::string> calol2_algo_payloads;
245 std::map<std::string, std::string> topKeys =
249 calol1_top_key = topKeys[
"CALOL1_KEY"];
253 calol1_algo_payload =
258 calol2_top_key = topKeys[
"CALOL2_KEY"];
260 std::map<std::string, std::string> calol2_keys =
263 calol2_hw_key = calol2_keys[
"HW"];
267 calol2_algo_key = calol2_keys[
"ALGO"];
269 std::map<std::string, std::string> calol2_algo_keys =
275 for (
auto&
key : calol2_algo_keys)
276 calol2_algo_payloads[
key.second] =
280 }
catch (std::runtime_error&
e) {
283 throw std::runtime_error(
std::string(
"SummaryForFunctionManager: Calo | Faulty | ") +
e.what());
285 edm::LogError(
"L1-O2O: L1TCaloParamsOnlineProd") <<
"returning unmodified prototype of l1t::CaloParams";
286 return std::make_unique<const l1t::CaloParams>(baseSettings);
292 for (
auto& conf : calol2_algo_payloads) {
297 std::ofstream
output(
std::string(
"/tmp/").
append(calol2_hw_key.substr(0, calol2_hw_key.find(
'/'))).append(
".xml"));
298 output << calol2_hw_payload;
303 std::string(
"/tmp/").
append(calol1_algo_key.substr(0, calol1_algo_key.find(
'/'))).append(
".xml"));
304 output << calol1_algo_payload;
316 calol1.
addProcessor(
"processors",
"processors",
"-1",
"-1");
320 std::map<std::string, l1t::Parameter> calol1_conf = calol1.
getParameters(
"processors");
321 std::map<std::string, l1t::Mask> calol1_rs;
324 throw std::runtime_error(
"Parsing error for CaloLayer1");
326 }
catch (std::runtime_error&
e) {
329 throw std::runtime_error(
std::string(
"SummaryForFunctionManager: Calo | Faulty | ") +
e.what());
331 edm::LogError(
"L1-O2O: L1TCaloParamsOnlineProd") <<
"returning unmodified prototype of l1t::CaloParams";
332 return std::make_unique<const l1t::CaloParams>(baseSettings);
344 for (
auto& conf : calol2_algo_payloads) {
352 std::map<std::string, l1t::Parameter> calol2_conf = calol2.
getParameters(
"MP1");
353 std::map<std::string, l1t::Parameter> calol2_conf_demux = calol2.
getParameters(
"DEMUX");
354 calol2_conf.insert(calol2_conf_demux.begin(), calol2_conf_demux.end());
355 std::map<std::string, l1t::Mask> calol2_rs;
358 throw std::runtime_error(
"Parsing error for CaloLayer2");
360 }
catch (std::runtime_error&
e) {
363 throw std::runtime_error(
std::string(
"SummaryForFunctionManager: Calo | Faulty | ") +
e.what());
365 edm::LogError(
"L1-O2O: L1TCaloParamsOnlineProd") <<
"returning unmodified prototype of l1t::CaloParams";
366 return std::make_unique<const l1t::CaloParams>(baseSettings);
371 auto retval = std::make_unique<const l1t::CaloParams>(m_params_helper);
373 edm::LogInfo(
"L1-O2O: L1TCaloParamsOnlineProd") <<
"SummaryForFunctionManager: Calo | OK | All looks good";
void setConfigured(bool state=true) noexcept
void setTauIsolationLUT(const l1t::LUT &lut)
void setLayer1HFScalePhiBins(const std::vector< unsigned > params)
void setEgCalibrationLUT(const l1t::LUT &lut)
void setEtSumEttCalibrationLUT(const l1t::LUT &lut)
~L1TCaloParamsOnlineProd(void) override
void setJetCalibrationLUT(const l1t::LUT &lut)
void setEgNeighbourThreshold(double thresh)
void setLayer1HCalScaleFactors(const std::vector< double > params)
void setLayer1ECalScaleFactors(const std::vector< double > params)
void setLayer1SecondStageLUT(const std::vector< unsigned > &lut)
void setEtSumEcalSumCalibrationLUT(const l1t::LUT &lut)
Log< level::Error, false > LogError
const edm::ESGetToken< l1t::CaloParams, L1TCaloParamsRcd > baseSettings_token
L1TCaloParamsOnlineProd(const edm::ParameterSet &)
void setEtSumEttPUSLUT(const l1t::LUT &lut)
void setTauCalibrationLUT(const l1t::LUT &lut)
l1t::OMDSReader m_omdsReader
void setLayer1HCalScalePhiBins(const std::vector< unsigned > params)
void setJetSeedThreshold(double thresh)
void setLayer1HCalScaleETBins(const std::vector< int > params)
void setEtSumCentLower(unsigned centClass, double loBound)
void setEtSumEtaMax(unsigned isum, int eta)
PRODUCT const & get(ESGetToken< PRODUCT, T > const &iToken) const
void readDOMFromString(const std::string &str, xercesc::DOMDocument *&doc)
void setEgIsolationLUT(const l1t::LUT &lut)
void setLayer1HFScaleETBins(const std::vector< int > params)
const std::map< std::string, Parameter > & getParameters(const char *processor) const
void setTauSeedThreshold(double thresh)
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 setTauNeighbourThreshold(double thresh)
void setLayer1ECalScaleETBins(const std::vector< int > params)
bool readCaloLayer2OnlineSettings(l1t::CaloParamsHelperO2O ¶msHelper, std::map< std::string, l1t::Parameter > &conf, std::map< std::string, l1t::Mask > &)
void setPileUpTowerThreshold(int thresh)
void setMetHFPhiCalibrationLUT(const l1t::LUT &lut)
void setEgIsolationLUT2(const l1t::LUT &lut)
l1t::LUT convertToLUT(const std::vector< uint64_t > &v, int padding=-1) noexcept
void setLayer1ECalScalePhiBins(const std::vector< unsigned > params)
void setTauTrimmingShapeVetoLUT(const l1t::LUT &lut)
void setMetHFCalibrationLUT(const l1t::LUT &lut)
void setMetPhiCalibrationLUT(const l1t::LUT &lut)
Log< level::Info, false > LogInfo
void setEgHOverEcutEndcap(int cut)
std::unique_ptr< const l1t::CaloParams > newObject(const std::string &objectKey, const L1TCaloParamsO2ORcd &record) override
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
void setEgEtaCut(int mask)
void setIsoTauEtaMax(int value)
void setEgBypassEGVetos(unsigned flag)
void setEtSumEcalSumPUSLUT(const l1t::LUT &lut)
void setEgBypassShape(unsigned flag)
void setEtSumCentUpper(unsigned centClass, double upBound)
void setEgSeedThreshold(double thresh)
void setEtSumEtThreshold(unsigned isum, double thresh)
void readRootElement(TriggerSystem &aTriggerSystem, const std::string &sysId="")
bool readCaloLayer1OnlineSettings(l1t::CaloParamsHelperO2O ¶msHelper, std::map< std::string, l1t::Parameter > &conf, std::map< std::string, l1t::Mask > &)
void setEgBypassExtHOverE(unsigned flag)
void setEgHOverEcutBarrel(int cut)
void addProcessor(const char *processor, const char *role, const char *crate, const char *slot)
void setJetPUSUsePhiRing(unsigned flag)
void setEgMaxPtHOverE(double thresh)
void setEtSumMetPUSLUT(const l1t::LUT &lut)
void setJetBypassPUS(unsigned flag)
const unsigned int exclusiveLayer
void setLayer1HFScaleFactors(const std::vector< double > params)
const bool transactionSafe
void setEgBypassECALFG(unsigned flag)
void setMetCalibrationLUT(const l1t::LUT &lut)