CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DetRod.h
Go to the documentation of this file.
1 #ifndef DetLayers_DetRod_H
2 #define DetLayers_DetRod_H
3 
10 
12 
13 class DetRod : public GeometricSearchDet {
14  public:
15 
17 
18  virtual ~DetRod();
19 
20 
21  virtual const BoundSurface& surface() const GCC11_FINAL {return *thePlane;}
22 
23 
24  //--- Extension of the interface
25 
27  virtual const Plane& specificSurface() const GCC11_FINAL {return *thePlane;}
28 
29 
30 protected:
32  void setPlane( Plane* plane) { thePlane = plane;}
33 
34  //obsolete?
35  // Return the range in Z to be checked for compatibility
36  //float zError( const TrajectoryStateOnSurface& tsos,
37  // const MeasurementEstimator& est) const;
38 
39  private:
41 
42 };
43 
44 #endif
#define GCC11_FINAL
virtual ~DetRod()
Definition: DetRod.cc:5
GeometricSearchDet(bool doHaveGroups)
virtual const Plane & specificSurface() const
Return the rod surface as a Plane.
Definition: DetRod.h:27
Definition: Plane.h:17
ReferenceCountingPointer< Plane > thePlane
Definition: DetRod.h:40
Definition: DetRod.h:13
virtual const BoundSurface & surface() const
The surface of the GeometricSearchDet.
Definition: DetRod.h:21
string const
Definition: compareJSON.py:14
void setPlane(Plane *plane)
Set the rod&#39;s plane.
Definition: DetRod.h:32