CMS 3D CMS Logo

MuRingForwardLayer.h
Go to the documentation of this file.
1 #ifndef DetLayers_MuRingForwardLayer_H
2 #define DetLayers_MuRingForwardLayer_H
3 
13 
14 class ForwardDetRing;
15 class ForwardDetRingBuilder;
16 class GeomDet;
17 
19 public:
21  MuRingForwardLayer(const std::vector<const ForwardDetRing*>& rings);
22 
23  ~MuRingForwardLayer() 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
MuRingForwardLayer::theBasicComps
std::vector< const GeomDet * > theBasicComps
Definition: MuRingForwardLayer.h:50
MuRingForwardLayer::MuRingForwardLayer
MuRingForwardLayer(const std::vector< const ForwardDetRing * > &rings)
Constructor, takes ownership of pointers.
Definition: MuRingForwardLayer.cc:23
MuRingForwardLayer::compatibleDets
std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
Definition: MuRingForwardLayer.cc:77
MuRingForwardLayer::theBinFinder
BaseBinFinder< double > * theBinFinder
Definition: MuRingForwardLayer.h:51
MuRingForwardLayer::~MuRingForwardLayer
~MuRingForwardLayer() override
Definition: MuRingForwardLayer.cc:70
MuRingForwardLayer::rings
virtual const std::vector< const ForwardDetRing * > & rings() const
Return the vector of rings.
Definition: MuRingForwardLayer.h:45
Propagator
Definition: Propagator.h:44
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
MuRingForwardLayer
Definition: MuRingForwardLayer.h:18
MuRingForwardLayer::subDetector
SubDetector subDetector() const override
Definition: MuRingForwardLayer.cc:184
MuRingForwardLayer::basicComponents
const std::vector< const GeomDet * > & basicComponents() const override
Definition: MuRingForwardLayer.h:27
RingedForwardLayer
BaseBinFinder.h
MuRingForwardLayer::theComponents
std::vector< const GeometricSearchDet * > theComponents
Definition: MuRingForwardLayer.h:49
MuRingForwardLayer::isOverlapping
bool isOverlapping
Definition: MuRingForwardLayer.h:52
RingedForwardLayer.h
BaseBinFinder< double >
MuRingForwardLayer::components
const std::vector< const GeometricSearchDet * > & components() const override
Definition: MuRingForwardLayer.cc:186
MuRingForwardLayer::theRings
std::vector< const ForwardDetRing * > theRings
Definition: MuRingForwardLayer.h:48
MuRingForwardLayer::groupedCompatibleDets
std::vector< DetGroup > groupedCompatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const override
Definition: MuRingForwardLayer.cc:176
ForwardDetRing
Definition: ForwardDetRing.h:11