/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/TrackerNumberingBuilder/interface/utils.h
28 строк
955 B
mmusich
introduce TrackerGeometryUtils::getOuterTrackerDetIds and use it
07 авг 2020, 12:47
07 авг 2020, 12:47
7712f4b
Код
Авторство
О чём код?
#ifndef GEOMETRY_TRACKERNUMBERINGBUILDER_UTILS_H #define GEOMETRY_TRACKERNUMBERINGBUILDER_UTILS_H #include "Geometry/TrackerNumberingBuilder/interface/GeometricDet.h" namespace TrackerGeometryUtils { /** * A helper method to get the full list of SiStrip DetIds from the GeometricDet * * The DetIds are sorted by subdetector, but otherwise keep the ordering from * GeometricDet::deepComponents (for compatibility with SiStripDetInfoFileReader) */ std::vector<uint32_t> getSiStripDetIds(const GeometricDet& geomDet); /** * A helper method to get the full list of OuterTracker DetIds from the GeometricDet * * The DetIds are sorted by subdetector, but otherwise keep the ordering from * GeometricDet::deepComponents (for compatibility with SiStripDetInfoFileReader) */ std::vector<uint32_t> getOuterTrackerDetIds(const GeometricDet& geomDet); } // namespace TrackerGeometryUtils #endif // GEOMETRY_TRACKERNUMBERINGBUILDER_UTILS_H