CMS 3D CMS Logo

MTDRingForwardLayer.h
Go to the documentation of this file.
1 #ifndef RecoMTD_DetLayers_MTDRingForwardLayer_H
2 #define RecoMTD_DetLayers_MTDRingForwardLayer_H
3 
13 
14 class ForwardDetRing;
15 class ForwardDetRingBuilder;
16 class GeomDet;
17 
19 public:
21  MTDRingForwardLayer(const std::vector<const ForwardDetRing*>& rings);
22 
23  ~MTDRingForwardLayer() override;
24 
25  // GeometricSearchDet interface
26 
27  const std::vector<const GeomDet*>& basicComponents() const override { return theBasicComps; }
28 
29  const std::vector<const GeometricSearchDet*>& components() const override;
30 
31  std::vector<DetWithState> compatibleDets(const TrajectoryStateOnSurface& startingState,
32  const Propagator& prop,
33  const MeasurementEstimator& est) const override;
34 
35  std::vector<DetGroup> groupedCompatibleDets(const TrajectoryStateOnSurface& startingState,
36  const Propagator& prop,
37  const MeasurementEstimator& est) const override;
38 
39  // DetLayer interface
40  SubDetector subDetector() const override;
41 
42  // Extension of the interface
43 
45  virtual const std::vector<const ForwardDetRing*>& rings() const { return theRings; }
46 
47 private:
48  std::vector<const ForwardDetRing*> theRings;
49  std::vector<const GeometricSearchDet*> theComponents; // duplication of the above
50  std::vector<const GeomDet*> theBasicComps; // All chambers
53 };
54 #endif
GeomDetEnumerators::SubDetector
SubDetector
Definition: GeomDetEnumerators.h:10
MeasurementEstimator
Definition: MeasurementEstimator.h:19
GeomDet
Definition: GeomDet.h:27
MTDRingForwardLayer::~MTDRingForwardLayer
~MTDRingForwardLayer() override
Definition: MTDRingForwardLayer.cc:70
MTDRingForwardLayer
Definition: MTDRingForwardLayer.h:18
MTDRingForwardLayer::components
const std::vector< const GeometricSearchDet * > & components() const override
Definition: MTDRingForwardLayer.cc:196
MTDRingForwardLayer::subDetector
SubDetector subDetector() const override
Definition: MTDRingForwardLayer.cc:192
Propagator
Definition: Propagator.h:44
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
MTDRingForwardLayer::isOverlapping
bool isOverlapping
Definition: MTDRingForwardLayer.h:52
MTDRingForwardLayer::theComponents
std::vector< const GeometricSearchDet * > theComponents
Definition: MTDRingForwardLayer.h:49
MTDRingForwardLayer::theRings
std::vector< const ForwardDetRing * > theRings
Definition: MTDRingForwardLayer.h:48
RingedForwardLayer
BaseBinFinder.h
RingedForwardLayer.h
MTDRingForwardLayer::MTDRingForwardLayer
MTDRingForwardLayer(const std::vector< const ForwardDetRing * > &rings)
Constructor, takes ownership of pointers.
Definition: MTDRingForwardLayer.cc:25
MTDRingForwardLayer::compatibleDets
std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
Definition: MTDRingForwardLayer.cc:77
MTDRingForwardLayer::groupedCompatibleDets
std::vector< DetGroup > groupedCompatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
Definition: MTDRingForwardLayer.cc:184
MTDRingForwardLayer::basicComponents
const std::vector< const GeomDet * > & basicComponents() const override
Definition: MTDRingForwardLayer.h:27
BaseBinFinder< double >
MTDRingForwardLayer::rings
virtual const std::vector< const ForwardDetRing * > & rings() const
Return the vector of rings.
Definition: MTDRingForwardLayer.h:45
MTDRingForwardLayer::theBasicComps
std::vector< const GeomDet * > theBasicComps
Definition: MTDRingForwardLayer.h:50
MTDRingForwardLayer::theBinFinder
BaseBinFinder< double > * theBinFinder
Definition: MTDRingForwardLayer.h:51
ForwardDetRing
Definition: ForwardDetRing.h:11