/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/TrackerAlignment/interface/TrackerAlignableId.h
33 строки
994 B
Christopher Jones
Replace forward references with includes of Fwd.h files
18 фев 2026, 17:29
18 фев 2026, 17:29
bb39da7
Код
Авторство
О чём код?
#ifndef Alignment_CommonAlignment_TrackerAlignableId_H #define Alignment_CommonAlignment_TrackerAlignableId_H /// \class TrackerAlignableId /// /// Helper class to provide unique numerical ID's for Alignables. /// The unique ID is formed from: /// - the AlignableObjectId (DetUnit, Det, Rod, Layer, etc.) /// - the geographical ID of the first GeomDet in the composite. /// A mapping between the AlignableObjectId and the string name /// is also provided. /// /// $Revision: 1.11 $ /// $Date: 2007/10/08 13:49:05 $ /// (last update by $Author: cklae $) #include <utility> #include "DataFormats/DetId/interface/DetIdFwd.h" class TrackerTopology; class TrackerAlignableId { public: TrackerAlignableId() {} /// Return type and layer of DetId /// Keep this for now. /// Concept of a "layer" in Alignment is obsolete. /// Will be replaced by a more generic function. std::pair<int, int> typeAndLayerFromDetId(const DetId& detId, const TrackerTopology* tTopo) const; }; #endif