/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/CommonTopologies/interface/TrackerGeomDet.h
22 строки
687 B
Shahzad Malik Muzaffar
updated to use Det files from new location
29 ноя 2019, 10:13
29 ноя 2019, 10:13
ab0d821
Код
Авторство
О чём код?
#ifndef CommonDet_TrackerGeomDet_H #define CommonDet_TrackerGeomDet_H #include "Geometry/CommonTopologies/interface/GeomDet.h" class TrackerGeomDet : public GeomDet { protected: explicit TrackerGeomDet(Plane* plane) : GeomDet(plane), theLocalAlignmentError(InvalidError()) {} explicit TrackerGeomDet(const ReferenceCountingPointer<Plane>& plane) : GeomDet(plane), theLocalAlignmentError(InvalidError()) {} public: /// Return local alligment error LocalError const& localAlignmentError() const { return theLocalAlignmentError; } private: LocalError theLocalAlignmentError; private: bool setAlignmentPositionError(const AlignmentPositionError& ape) final; }; #endif