/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondCore/Utilities/interface/CondDBImport.h
29 строк
1005 B
Cms Build
Clang-Format
22 май 2019, 05:03
22 май 2019, 05:03
63b6371
Код
Авторство
О чём код?
#ifndef Utilities_CondDBImport_h #define Utilities_CondDBImport_h #include "CondCore/CondDB/interface/Types.h" #include "CondCore/CondDB/interface/Session.h" #include <memory> // namespace cond { namespace persistency { cond::Hash import(Session& source, const cond::Hash& sourcePayloadId, const std::string& inputTypeName, const void* inputPtr, Session& destination); std::pair<std::string, std::shared_ptr<void> > fetch(const cond::Hash& payloadId, Session& session); std::pair<std::string, std::shared_ptr<void> > fetchOne(const std::string& payloadTypeName, const cond::Binary& data, const cond::Binary& streamerInfo, std::shared_ptr<void> payloadPtr); } // namespace persistency } // namespace cond #endif