CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuRingForwardDoubleLayer.h
Go to the documentation of this file.
1 #ifndef DetLayers_MuRingForwardDoubleLayer_H
2 #define DetLayers_MuRingForwardDoubleLayer_H
3 
14 
15 class ForwardDetRing;
16 class ForwardDetRingBuilder;
17 class GeomDet;
18 
20 
21  public:
22 
24  MuRingForwardDoubleLayer(const std::vector<const ForwardDetRing*>& frontRings,
25  const std::vector<const ForwardDetRing*>& backRings);
26 
28 
29 
30  // GeometricSearchDet interface
31 
32  virtual const std::vector<const GeomDet*>& basicComponents() const {return theBasicComponents;}
33 
34  virtual const std::vector<const GeometricSearchDet*>& components() const {return theComponents;}
35 
36  bool isInsideOut(const TrajectoryStateOnSurface&tsos) const;
37 
38  // tries closest layer first
39  virtual std::pair<bool, TrajectoryStateOnSurface>
41  const MeasurementEstimator&) const;
42 
43  virtual std::vector<DetWithState>
44  compatibleDets( const TrajectoryStateOnSurface& startingState,
45  const Propagator& prop,
46  const MeasurementEstimator& est) const;
47 
48  virtual std::vector<DetGroup>
49  groupedCompatibleDets( const TrajectoryStateOnSurface& startingState,
50  const Propagator& prop,
51  const MeasurementEstimator& est) const;
52 
53 
54  // DetLayer interface
55  virtual SubDetector subDetector() const {return theBackLayer.subDetector();}
56 
57 
58  // Extension of the interface
59 
61  virtual const std::vector<const ForwardDetRing*>& rings() const {return theRings;}
62 
63  bool isCrack(const GlobalPoint & gp) const;
64 
65  const MuRingForwardLayer * frontLayer() const {return &theFrontLayer;}
66  const MuRingForwardLayer * backLayer() const {return &theBackLayer;}
67 
68  void selfTest() const;
69  protected:
70  virtual BoundDisk * computeSurface();
71  private:
74  std::vector<const ForwardDetRing*> theRings;
75  std::vector <const GeometricSearchDet*> theComponents; // duplication of the above
76  std::vector<const GeomDet*> theBasicComponents; // All chambers
77 
78 };
79 #endif
80 
virtual std::pair< bool, TrajectoryStateOnSurface > compatible(const TrajectoryStateOnSurface &, const Propagator &, const MeasurementEstimator &) const
virtual const std::vector< const GeometricSearchDet * > & components() const
virtual const std::vector< const GeomDet * > & basicComponents() const
std::vector< const GeomDet * > theBasicComponents
std::vector< const ForwardDetRing * > theRings
const MuRingForwardLayer * backLayer() const
virtual std::vector< DetGroup > groupedCompatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
bool isCrack(const GlobalPoint &gp) const
virtual std::vector< DetWithState > compatibleDets(const TrajectoryStateOnSurface &startingState, const Propagator &prop, const MeasurementEstimator &est) const
virtual const std::vector< const ForwardDetRing * > & rings() const
Return the vector of rings.
virtual SubDetector subDetector() const
virtual SubDetector subDetector() const
const MuRingForwardLayer * frontLayer() const
virtual BoundDisk * computeSurface()
std::vector< const GeometricSearchDet * > theComponents
bool isInsideOut(const TrajectoryStateOnSurface &tsos) const
MuRingForwardDoubleLayer(const std::vector< const ForwardDetRing * > &frontRings, const std::vector< const ForwardDetRing * > &backRings)
Constructor, takes ownership of pointers.