/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/CaloEventSetup/interface/CaloGeometryDBReader.h
26 строк
874 B
Cms Build
Clang-Format
17 май 2019, 09:15
17 май 2019, 09:15
a08fde0
Код
Авторство
О чём код?
#ifndef GEOMETRY_CALOEVENTSETUP_CALOGEOMETRYDBREADER_H #define GEOMETRY_CALOEVENTSETUP_CALOGEOMETRYDBREADER_H 1 #include "Geometry/CaloGeometry/interface/CaloSubdetectorGeometry.h" class CaloGeometryDBReader { public: typedef CaloSubdetectorGeometry::TrVec TrVec; typedef CaloSubdetectorGeometry::DimVec DimVec; typedef CaloSubdetectorGeometry::IVec IVec; static void write(TrVec& /*tvec*/, DimVec& /*dvec*/, IVec& /*ivec*/, const std::string& /*str*/) {} static void writeIndexed(const TrVec& /*tvec*/, const DimVec& /*dvec*/, const IVec& /*ivec*/, const std::vector<uint32_t>& /*dins*/, const std::string& /*tag*/) {} static constexpr bool writeFlag() { return false; } CaloGeometryDBReader() {} virtual ~CaloGeometryDBReader() {} }; #endif