File indexing completed on 2024-04-06 12:14:23
0001 #include "Geometry/CommonTopologies/interface/GluedGeomDet.h"
0002
0003 GluedGeomDet::GluedGeomDet(BoundPlane* sp,
0004 const GeomDetUnit* monoDet,
0005 const GeomDetUnit* stereoDet,
0006 const DetId gluedDetId)
0007 : TrackerGeomDet(sp), theMonoDet(monoDet), theStereoDet(stereoDet) {
0008 setDetId(gluedDetId);
0009 }
0010
0011 GluedGeomDet::~GluedGeomDet() {}
0012
0013 std::vector<const GeomDet*> GluedGeomDet::components() const {
0014 return std::vector<const GeomDet*>{theMonoDet, theStereoDet};
0015 }