/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1TriggerConfig/L1TConfigProducers/src/OnlineDBqueryHelper.h
25 строк
888 B
Cms Build
Clang-Format
16 май 2019, 10:51
16 май 2019, 10:51
bf1a5e0
Код
Авторство
О чём код?
#ifndef L1TriggerConfig_L1TConfigProducers_QueryHelper_h #define L1TriggerConfig_L1TConfigProducers_QueryHelper_h #include <map> #include <vector> #include <string> #include <numeric> #include <algorithm> #include "CondTools/L1Trigger/interface/OMDSReader.h" namespace l1t { // The following class encloses some of the conventions for the online DB model: // https://indico.cern.ch/event/591003/contributions/2384788/attachments/1378957/2095301/L1TriggerDatabase_v2.pdf class OnlineDBqueryHelper { public: 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); }; } // namespace l1t #endif