/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/DDCMS/interface/DDDetector.h
49 строк
1 KB
Kevin Pedro
access const TGeoManager
01 июн 2026, 19:20
01 июн 2026, 19:20
86cec3c
Код
Авторство
О чём код?
#ifndef DetectorDescription_DDCMS_DDDetector_h #define DetectorDescription_DDCMS_DDDetector_h #include "DetectorDescription/DDCMS/interface/DDVectorRegistry.h" #include <DD4hep/Detector.h> #include <DD4hep/SpecParRegistry.h> #include <string> class TGeoManager; namespace cms { class DDDetector { public: explicit DDDetector(const std::string&, const std::string&, bool bigXML = false); DDDetector() = delete; cms::DDVectorsMap const& vectors() const { return m_vectors; } dd4hep::PartSelectionMap const& partsels() const { return m_partsels; } dd4hep::SpecParRegistry const& specpars() const { return m_specpars; } //! Handle to the world volume containing everything dd4hep::Volume worldVolume() const; //! Reference to the top-most (world) detector element dd4hep::DetElement world() const; //! The geometry manager of this instance const TGeoManager& manager() const; //! Find DetElement as child of the top level volume by it's absolute path dd4hep::DetElement findElement(const std::string&) const; dd4hep::Detector const* description() const { return m_description; } private: void process(const std::string&); void processXML(const std::string&); dd4hep::Detector* m_description = nullptr; cms::DDVectorsMap m_vectors; dd4hep::PartSelectionMap m_partsels; dd4hep::SpecParRegistry m_specpars; const std::string m_tag; }; } // namespace cms #endif