CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Attributes
TkRotation2D< T > Class Template Reference

#include <newTkRotation.h>

Public Types

typedef Basic2DVector< TBasicVector
 

Public Member Functions

BasicVector rotate (const BasicVector &v) const
 
BasicVector rotateBack (const BasicVector &v) const
 
 TkRotation2D ()
 
 TkRotation2D (mathSSE::Rot2< T > const &irot)
 
 TkRotation2D (T xx, T xy, T yx, T yy)
 
 TkRotation2D (const T *p)
 
 TkRotation2D (const BasicVector &aX)
 
 TkRotation2D (const BasicVector &uX, const BasicVector &uY)
 
TkRotation2D transposed () const
 
BasicVector x () const
 
BasicVector y () const
 

Private Attributes

mathSSE::Rot2< Trot
 

Detailed Description

template<class T>
class TkRotation2D< T >

Definition at line 14 of file newTkRotation.h.

Member Typedef Documentation

template<class T>
typedef Basic2DVector<T> TkRotation2D< T >::BasicVector

Definition at line 302 of file newTkRotation.h.

Constructor & Destructor Documentation

template<class T>
TkRotation2D< T >::TkRotation2D ( )
inline

Definition at line 304 of file newTkRotation.h.

304 {}
template<class T>
TkRotation2D< T >::TkRotation2D ( mathSSE::Rot2< T > const &  irot)
inline

Definition at line 305 of file newTkRotation.h.

305 : rot(irot){}
mathSSE::Rot2< T > rot
template<class T>
TkRotation2D< T >::TkRotation2D ( T  xx,
T  xy,
T  yx,
T  yy 
)
inline

Definition at line 307 of file newTkRotation.h.

307  :
308  rot(xx,xy, yx,yy){}
mathSSE::Rot2< T > rot
template<class T>
TkRotation2D< T >::TkRotation2D ( const T p)
inline

Definition at line 310 of file newTkRotation.h.

310  :
311  rot(p[0],p[1],
312  p[2],p[3]) {}
mathSSE::Rot2< T > rot
template<class T>
TkRotation2D< T >::TkRotation2D ( const BasicVector aX)
inline

Definition at line 314 of file newTkRotation.h.

314  {
315 
316  BasicVector uX = aX.unit();
317  BasicVector uY(-uX.y(),uX.x());
318 
319  rot.axis[0]= uX.v;
320  rot.axis[1]= uY.v;
321 
322  }
mathSSE::Rot2< T > rot
Basic2DVector< T > BasicVector
template<class T>
TkRotation2D< T >::TkRotation2D ( const BasicVector uX,
const BasicVector uY 
)
inline

Definition at line 325 of file newTkRotation.h.

325  {
326  rot.axis[0]= uX.v;
327  rot.axis[1]= uY.v;
328  }
mathSSE::Rot2< T > rot

Member Function Documentation

template<class T>
BasicVector TkRotation2D< T >::rotate ( const BasicVector v) const
inline

Definition at line 338 of file newTkRotation.h.

Referenced by ThirdHitPredictionFromInvParabola::transform().

338  {
339  return rot.rotate(v.v);
340  }
mathSSE::Rot2< T > rot
mathSSE::Vec4< T > v
template<class T>
BasicVector TkRotation2D< T >::rotateBack ( const BasicVector v) const
inline

Definition at line 342 of file newTkRotation.h.

Referenced by ThirdHitPredictionFromInvParabola::rangeRPhi(), and ThirdHitPredictionFromInvParabola::transformBack().

342  {
343  return rot.rotateBack(v.v);
344  }
mathSSE::Rot2< T > rot
mathSSE::Vec4< T > v
template<class T>
TkRotation2D TkRotation2D< T >::transposed ( ) const
inline

Definition at line 334 of file newTkRotation.h.

334  {
335  return rot.transpose();
336  }
mathSSE::Rot2< T > rot
template<class T>
BasicVector TkRotation2D< T >::x ( ) const
inline
template<class T>
BasicVector TkRotation2D< T >::y ( ) const
inline

Member Data Documentation

template<class T>
mathSSE::Rot2<T> TkRotation2D< T >::rot
private