/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/DTObjects/interface/DTReadOutMappingCache.h
26 строк
724 B
Cms Build
Clang-Format
29 май 2019, 08:24
29 май 2019, 08:24
5c96c3b
Код
Авторство
О чём код?
#ifndef CondFormats_DTObjects_DTReadOutMappingCache_h #define CondFormats_DTObjects_DTReadOutMappingCache_h #include "CondFormats/DTObjects/interface/DTBufferTree.h" #include <memory> #include <vector> template <class Key, class Content> class DTBufferTree; class DTBufferTreeUniquePtr; class DTReadOutMappingCache { public: DTBufferTree<int, int> mType; DTBufferTree<int, int> rgBuf; DTBufferTree<int, int> rgROB; DTBufferTree<int, int> rgROS; DTBufferTree<int, int> rgDDU; DTBufferTree<int, int> grBuf; DTBufferTree<int, std::unique_ptr<std::vector<int> > > grROB; DTBufferTree<int, std::unique_ptr<std::vector<int> > > grROS; DTBufferTree<int, std::unique_ptr<std::vector<int> > > grDDU; }; #endif