/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/CondDB/src/Serialization.cc
17 строк
673 B
Cms Build
Clang-Format
29 май 2019, 08:23
29 май 2019, 08:23
087900c
Код
Авторство
О чём код?
#include "CondCore/CondDB/interface/Serialization.h" // #include <sstream> #include "boost/version.hpp" std::string cond::StreamerInfo::techVersion() { return BOOST_LIB_VERSION; } std::string cond::StreamerInfo::jsonString() { std::stringstream ss; ss << " {" << std::endl; ss << "\"" << CMSSW_VERSION_LABEL << "\": \"" << currentCMSSWVersion() << "\"," << std::endl; ss << "\"" << ARCH_LABEL << "\": \"" << currentArchitecture() << "\"," << std::endl; ss << "\"" << TECH_LABEL << "\": \"" << TECHNOLOGY << "\"," << std::endl; ss << "\"" << TECH_VERSION_LABEL << "\": \"" << techVersion() << "\"" << std::endl; ss << " }" << std::endl; return ss.str(); }