/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/ForwardGeometry/interface/TotemT2Tile.h
27 строк
674 B
Laurent Forthomme
Geom: Dropping DD4hep dependency and using ROOT geometry definition
05 авг 2022, 00:27
05 авг 2022, 00:27
f982c7a
Код
Авторство
О чём код?
/**************************************************************************** * * This is a part of TOTEM offline software. * Author: * Laurent Forthomme * ****************************************************************************/ #ifndef Geometry_ForwardGeometry_TotemT2Tile_h #define Geometry_ForwardGeometry_TotemT2Tile_h #include "DataFormats/GeometryVector/interface/GlobalPoint.h" #include "Geometry/VeryForwardGeometryBuilder/interface/DetGeomDesc.h" class TotemT2Tile { public: TotemT2Tile(); explicit TotemT2Tile(const DetGeomDesc*); ~TotemT2Tile(); const GlobalPoint& centre() const { return centre_; } private: GlobalPoint centre_; }; #endif