test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PerpendicularBoundPlaneBuilder.cc
Go to the documentation of this file.
1 //#include "Utilities/Configuration/interface/Architecture.h"
2 
4 
7  const Surface::GlobalVector& perp) const
8 {
9  // z axis coincides with perp
10  GlobalVector zAxis = perp.unit();
11 
12  // x axis has no global Z component
13  GlobalVector xAxis;
14  if ( zAxis.x() != 0 || zAxis.y() != 0) {
15  // precision is not an issue here, just protect against divizion by zero
16  xAxis = GlobalVector( -zAxis.y(), zAxis.x(), 0).unit();
17  }
18  else { // perp coincides with global Z
19  xAxis = GlobalVector( 1, 0, 0);
20  }
21 
22  // y axis obtained by cross product
23  GlobalVector yAxis( zAxis.cross( xAxis));
24 
25  Surface::RotationType rot( xAxis.x(), xAxis.y(), xAxis.z(),
26  yAxis.x(), yAxis.y(), yAxis.z(),
27  zAxis.x(), zAxis.y(), zAxis.z());
28 
29  return new BoundPlane( origin, rot);
30 }
Plane BoundPlane
Definition: Plane.h:95
T y() const
Definition: PV3DBase.h:63
BoundPlane * operator()(const Surface::GlobalPoint &origin, const Surface::GlobalVector &perp) const
string unit
Definition: csvLumiCalc.py:46
Vector3DBase< typename PreciseFloatType< T, U >::Type, FrameTag > cross(const Vector3DBase< U, FrameTag > &v) const
Definition: Vector3DBase.h:119
T z() const
Definition: PV3DBase.h:64
Vector3DBase unit() const
Definition: Vector3DBase.h:57
T perp() const
Magnitude of transverse component.
tuple zAxis
Definition: MetAnalyzer.py:56
T x() const
Definition: PV3DBase.h:62
Global3DVector GlobalVector
Definition: GlobalVector.h:10