File indexing completed on 2023-03-17 11:26:20
0001 #ifndef ForwardDetRing_H
0002 #define ForwardDetRing_H
0003
0004
0005
0006
0007
0008 #include "TrackingTools/DetLayers/interface/GeometricSearchDet.h"
0009 #include "DataFormats/GeometrySurface/interface/BoundDisk.h"
0010
0011 class ForwardDetRing : public GeometricSearchDet {
0012 public:
0013 using GeometricSearchDet::GeometricSearchDet;
0014
0015 ~ForwardDetRing() override;
0016
0017 void compatibleDetsV(const TrajectoryStateOnSurface& startingState,
0018 const Propagator& prop,
0019 const MeasurementEstimator& est,
0020 std::vector<DetWithState>& result) const override;
0021
0022 const BoundSurface& surface() const final { return *theDisk; }
0023
0024
0025
0026
0027 const BoundDisk& specificSurface() const { return *theDisk; }
0028
0029 protected:
0030
0031 void setDisk(BoundDisk* disk) { theDisk = disk; }
0032
0033 private:
0034 ReferenceCountingPointer<BoundDisk> theDisk;
0035 };
0036 #endif