/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/DTGeometry/interface/DTSuperLayer.h
73 строки
2 KB
Shahzad Malik Muzaffar
[GEOMETRY] Drop Geometry/CommonDetUnit package
28 май 2026, 13:09
28 май 2026, 13:09
bcab810
Код
Авторство
О чём код?
#ifndef DTSUPERLAYER_H #define DTSUPERLAYER_H /** \class DTSuperLayer * * Model of a superlayer in Muon Drift Tube chambers. * * A superlayer is composed by 4 staggered DTLayer s. * * \author Stefano Lacaprara - INFN Padova <stefano.lacaprara@pd.infn.it> * */ /* Base Class Headers */ #include "Geometry/CommonTopologies/interface/GeomDet.h" /* Collaborating Class Declarations */ #include "DataFormats/MuonDetId/interface/DTSuperLayerId.h" #include "DataFormats/MuonDetId/interface/DTLayerId.h" class DTLayer; class DTChamber; class DTSuperLayer : public GeomDet { public: /* Constructor */ DTSuperLayer(const DTSuperLayerId& id, ReferenceCountingPointer<BoundPlane>& plane, const DTChamber* ch = nullptr); /* Destructor */ ~DTSuperLayer() override; /* Operations */ /// Return the DetId of this SL DTSuperLayerId id() const; // Which subdetector SubDetector subDetector() const override { return GeomDetEnumerators::DT; } /// True if id are the same bool operator==(const DTSuperLayer& sl) const; /// Return the layers in the SL std::vector<const GeomDet*> components() const override; /// Return the layer with a given id in this SL const GeomDet* component(DetId id) const override; /// Return the layers in the SL const std::vector<const DTLayer*>& layers() const; /// Add layer to the SL which owns it void add(DTLayer* l); /// Return the chamber this SL belongs to (0 if any, eg if a SL is /// built on his own) const DTChamber* chamber() const; /// Return the layer corresponding to the given id const DTLayer* layer(const DTLayerId& id) const; /// Return the given layer. /// Layers are numbered 1-4. const DTLayer* layer(int ilay) const; private: DTSuperLayerId theId; // The SL owns its Layer std::vector<const DTLayer*> theLayers; const DTChamber* theCh; protected: }; #endif // DTSUPERLAYER_H