CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TangentPlane.h
Go to the documentation of this file.
1 #ifndef Geom_TangentPlane_H
2 #define Geom_TangentPlane_H
3 
5 
10 class TangentPlane : public Plane {
11 public:
13  const RotationType& rot,
14  const Surface* parent) :
15  Surface(pos,rot), Plane(pos,rot),
16  theParent(parent) {}
17 
19  const Surface& parentSurface() {return *theParent;}
20 
21 private:
23 
24 };
25 #endif
list parent
Definition: dbtoconf.py:74
Definition: Plane.h:17
ConstReferenceCountingPointer< Surface > theParent
Definition: TangentPlane.h:22
TangentPlane(const PositionType &pos, const RotationType &rot, const Surface *parent)
Definition: TangentPlane.h:12
const Surface & parentSurface()
access to original surface
Definition: TangentPlane.h:19