/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/TrackerNumberingBuilder/plugins/DDDCmsTrackerContruction.h
28 строк
880 B
Gabrielle Hugo
Off-topic: rename printAllTrackerGeometricDets function, now placed after DetId building.
10 фев 2021, 13:15
10 фев 2021, 13:15
75d9d52
Код
Авторство
О чём код?
#ifndef Geometry_TrackerNumberingBuilder_DDDCmsTrackerContruction_H #define Geometry_TrackerNumberingBuilder_DDDCmsTrackerContruction_H #include "Geometry/TrackerNumberingBuilder/interface/CmsTrackerStringToEnum.h" #include "FWCore/ParameterSet/interface/types.h" #include <string> #include <vector> #include <memory> class GeometricDet; class DDCompactView; namespace cms { class DDCompactView; } /** * High level class to build a tracker. It will only build subdets, * then call subdet builders */ namespace DDDCmsTrackerContruction { std::unique_ptr<GeometricDet> construct(DDCompactView const& cpv, std::vector<int> const& detidShifts); std::unique_ptr<GeometricDet> construct(cms::DDCompactView const& cpv, std::vector<int> const& detidShifts); void printAllTrackerGeometricDets(const GeometricDet* tracker); }; // namespace DDDCmsTrackerContruction #endif