CMS 3D CMS Logo

MTDRingForwardDoubleLayer.h
Go to the documentation of this file.
1 #ifndef RecoMTD_DetLayers_MTDRingForwardDoubleLayer_H
2 #define RecoMTD_DetLayers_MTDRingForwardDoubleLayer_H
3 
14 
15 class ForwardDetRing;
16 class ForwardDetRingBuilder;
17 class GeomDet;
18 
20 public:
22  MTDRingForwardDoubleLayer(const std::vector<const ForwardDetRing*>& frontRings,
23  const std::vector<const ForwardDetRing*>& backRings);
24 
26 
27  // GeometricSearchDet interface
28 
29  const std::vector<const GeomDet*>& basicComponents() const override { return theBasicComponents; }
30 
31  const std::vector<const GeometricSearchDet*>& components() const override { return theComponents; }
32 
33  bool isInsideOut(const TrajectoryStateOnSurface& tsos) const;
34 
35  // tries closest layer first
36  std::pair<bool, TrajectoryStateOnSurface> compatible(const TrajectoryStateOnSurface&,
37  const Propagator&,
38  const MeasurementEstimator&) const override;
39 
40  std::vector<DetWithState> compatibleDets(const TrajectoryStateOnSurface& startingState,
41  const Propagator& prop,
42  const MeasurementEstimator& est) const override;
43 
44  std::vector<DetGroup> groupedCompatibleDets(const TrajectoryStateOnSurface& startingState,
45  const Propagator& prop,
46  const MeasurementEstimator& est) const override;
47 
48  // DetLayer interface
49  SubDetector subDetector() const override { return theBackLayer.subDetector(); }
50 
51  // Extension of the interface
52 
54  virtual const std::vector<const ForwardDetRing*>& rings() const { return theRings; }
55 
56  bool isCrack(const GlobalPoint& gp) const;
57 
58  const MTDRingForwardLayer* frontLayer() const { return &theFrontLayer; }
59  const MTDRingForwardLayer* backLayer() const { return &theBackLayer; }
60 
61  void selfTest() const;
62 
63 protected:
64  BoundDisk* computeSurface() override;
65 
66 private:
69  std::vector<const ForwardDetRing*> theRings;
70  std::vector<const GeometricSearchDet*> theComponents; // duplication of the above
71  std::vector<const GeomDet*> theBasicComponents; // All chambers
72 };
73 #endif
SubDetector subDetector() const override
const std::vector< const GeomDet * > & basicComponents() const override
std::pair< bool, TrajectoryStateOnSurface > compatible(const TrajectoryStateOnSurface &, const Propagator &, const MeasurementEstimator &) const override
MTDRingForwardDoubleLayer(const std::vector< const ForwardDetRing *> &frontRings, const std::vector< const ForwardDetRing *> &backRings)
Constructor, takes ownership of pointers.
BoundDisk * computeSurface() override
std::vector< const ForwardDetRing * > theRings
bool isCrack(const GlobalPoint &gp) const
std::vector< DetGroup > groupedCompatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
bool isInsideOut(const TrajectoryStateOnSurface &tsos) const
std::vector< const GeomDet * > theBasicComponents
const std::vector< const GeometricSearchDet * > & components() const override
std::vector< const GeometricSearchDet * > theComponents
virtual const std::vector< const ForwardDetRing * > & rings() const
Return the vector of rings.
std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
SubDetector subDetector() const override
const MTDRingForwardLayer * backLayer() const
const MTDRingForwardLayer * frontLayer() const