/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/CommonTopologies/src/PixelGeomDetUnit.cc
21 строка
879 B
Shahzad Malik Muzaffar
updated to use Det files from new location
29 ноя 2019, 10:13
29 ноя 2019, 10:13
ab0d821
Код
Авторство
О чём код?
#include "Geometry/CommonTopologies/interface/PixelGeomDetUnit.h" #include "Geometry/CommonTopologies/interface/PixelGeomDetType.h" #include "Geometry/CommonTopologies/interface/SurfaceDeformation.h" PixelGeomDetUnit::PixelGeomDetUnit(BoundPlane* sp, PixelGeomDetType const* type, DetId id) : TrackerGeomDet(sp), theTopology(new ProxyPixelTopology(type, sp)) { setDetId(id); } const GeomDetType& PixelGeomDetUnit::type() const { return theTopology->type(); } const PixelGeomDetType& PixelGeomDetUnit::specificType() const { return theTopology->specificType(); } const Topology& PixelGeomDetUnit::topology() const { return *theTopology; } const PixelTopology& PixelGeomDetUnit::specificTopology() const { return *theTopology; } void PixelGeomDetUnit::setSurfaceDeformation(const SurfaceDeformation* deformation) { theTopology->setSurfaceDeformation(deformation); }