/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/HLTObjects/interface/AlCaRecoTriggerBits.h
25 строк
753 B
Cms Build
Clang-Format
31 май 2019, 08:35
31 май 2019, 08:35
f47da60
Код
Авторство
О чём код?
#ifndef CONDFORMATS_HLTOBJECTS_ALCARECOTRIGGERBITS_H #define CONDFORMATS_HLTOBJECTS_ALCARECOTRIGGERBITS_H #include "CondFormats/Serialization/interface/Serializable.h" #include <string> #include <map> #include <vector> class AlCaRecoTriggerBits { public: AlCaRecoTriggerBits(); ~AlCaRecoTriggerBits(); /// Compose several paths into one string : std::string compose(const std::vector<std::string> &paths) const; /// Decompose one value of map from concatenated string std::vector<std::string> decompose(const std::string &concatPaths) const; /// Delimeter for composing paths to one string in DB: static const std::string::value_type delimeter_; std::map<std::string, std::string> m_alcarecoToTrig; COND_SERIALIZABLE; }; #endif