File indexing completed on 2024-04-06 12:31:26
0001 #ifndef DetLayers_DetRod_H
0002 #define DetLayers_DetRod_H
0003
0004
0005
0006
0007
0008 #include "TrackingTools/DetLayers/interface/GeometricSearchDet.h"
0009 #include "DataFormats/GeometrySurface/interface/Plane.h"
0010
0011 class MeasurementEstimator;
0012
0013 class DetRod : public GeometricSearchDet {
0014 public:
0015 using GeometricSearchDet::GeometricSearchDet;
0016
0017 ~DetRod() override;
0018
0019 const BoundSurface& surface() const final { return *thePlane; }
0020
0021
0022
0023
0024 virtual const Plane& specificSurface() const final { return *thePlane; }
0025
0026 protected:
0027
0028 void setPlane(Plane* plane) { thePlane = plane; }
0029
0030
0031
0032
0033
0034
0035 private:
0036 ReferenceCountingPointer<Plane> thePlane;
0037 };
0038
0039 #endif