/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/MTDGeometryBuilder/src/MTDGeomDetUnit.cc
21 строка
855 B
Cms Build
Clang-Format
29 май 2019, 08:29
29 май 2019, 08:29
12cb1bf
Код
Авторство
О чём код?
#include "Geometry/MTDGeometryBuilder/interface/MTDGeomDetUnit.h" #include "Geometry/MTDGeometryBuilder/interface/MTDGeomDetType.h" #include "Geometry/CommonTopologies/interface/SurfaceDeformation.h" MTDGeomDetUnit::MTDGeomDetUnit(BoundPlane* sp, MTDGeomDetType const* type, DetId id) : MTDGeomDet(sp), theTopology(new ProxyMTDTopology(type, sp)) { setDetId(id); } const GeomDetType& MTDGeomDetUnit::type() const { return theTopology->type(); } const MTDGeomDetType& MTDGeomDetUnit::specificType() const { return theTopology->specificType(); } const Topology& MTDGeomDetUnit::topology() const { return *theTopology; } const PixelTopology& MTDGeomDetUnit::specificTopology() const { return *theTopology; } void MTDGeomDetUnit::setSurfaceDeformation(const SurfaceDeformation* deformation) { theTopology->setSurfaceDeformation(deformation); }