File indexing completed on 2024-04-06 12:14:39
0001 #ifndef Geometry_GEMGeometry_GEMRing_h
0002 #define Geometry_GEMGeometry_GEMRing_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #include "Geometry/CommonDetUnit/interface/GeomDet.h"
0014 #include "DataFormats/MuonDetId/interface/GEMDetId.h"
0015
0016 class GEMSuperChamber;
0017
0018 class GEMRing {
0019 public:
0020
0021 GEMRing(int region, int station, int ring);
0022
0023
0024 ~GEMRing();
0025
0026
0027 std::vector<GEMDetId> ids() const;
0028
0029
0030 bool operator==(const GEMRing& sch) const;
0031
0032
0033 void add(GEMSuperChamber* ch);
0034
0035
0036 std::vector<const GeomDet*> components() const;
0037
0038
0039 const GeomDet* component(DetId id) const;
0040
0041
0042 const GEMSuperChamber* superChamber(GEMDetId id) const;
0043
0044
0045 const GEMSuperChamber* superChamber(int sch) const;
0046
0047
0048 const std::vector<const GEMSuperChamber*>& superChambers() const;
0049
0050
0051 int nSuperChambers() const;
0052
0053
0054 int region() const;
0055
0056
0057 int station() const;
0058
0059
0060 int ring() const;
0061
0062 private:
0063 int region_;
0064 int station_;
0065 int ring_;
0066
0067 std::vector<GEMDetId> detIds_;
0068
0069
0070 std::vector<const GEMSuperChamber*> superChambers_;
0071 };
0072 #endif