Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:49:55

0001 #ifndef PerpendicularBoundPlaneBuilder_H
0002 #define PerpendicularBoundPlaneBuilder_H
0003 
0004 #include "DataFormats/GeometrySurface/interface/BoundPlane.h"
0005 #include "DataFormats/GeometrySurface/interface/Surface.h"
0006 
0007 /** Constructs a plane perpendicular to an axis, and oriented in a special way.
0008  *  Must be updated for reference counting.
0009  */
0010 
0011 class PerpendicularBoundPlaneBuilder {
0012 public:
0013   BoundPlane* operator()(const Surface::GlobalPoint& origin, const Surface::GlobalVector& perp) const;
0014 };
0015 
0016 #endif