/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/TrackerGeometryBuilder/src/StripGeomDetUnit.cc
21 строка
891 B
Cms Build
Clang-Format
11 июн 2019, 11:27
11 июн 2019, 11:27
e3280da
Код
Авторство
О чём код?
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetUnit.h" #include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetType.h" #include "Geometry/CommonTopologies/interface/SurfaceDeformation.h" StripGeomDetUnit::StripGeomDetUnit(BoundPlane* sp, StripGeomDetType const* type, DetId id) : TrackerGeomDet(sp), theTopology(new ProxyStripTopology(type, sp)) { setDetId(id); } const GeomDetType& StripGeomDetUnit::type() const { return theTopology->type(); } const StripGeomDetType& StripGeomDetUnit::specificType() const { return theTopology->specificType(); } const Topology& StripGeomDetUnit::topology() const { return *theTopology; } const StripTopology& StripGeomDetUnit::specificTopology() const { return *theTopology; } void StripGeomDetUnit::setSurfaceDeformation(const SurfaceDeformation* deformation) { theTopology->setSurfaceDeformation(deformation); }