// @(#)root/mathcore:$Name: $:$Id: RotationX.h,v 1.3 2005/10/27 18:00:01 moneta Exp $
// Authors: W. Brown, M. Fischler, L. Moneta 2005
/**********************************************************************
* *
* Copyright (c) 2005 , LCG ROOT FNAL MathLib Team *
* *
* *
**********************************************************************/
// Header file for class RotationZ representing a rotation about the Z axis
//
// Created by: Mark Fischler Mon July 18 2005
//
// Last update: $Id: RotationX.h,v 1.3 2005/10/27 18:00:01 moneta Exp $
//
#ifndef ROOT_Math_GenVector_RotationX
#define ROOT_Math_GenVector_RotationX 1
#include "Math/GenVector/Cartesian3D.h"
#include "Math/GenVector/DisplacementVector3D.h"
#include "Math/GenVector/PositionVector3D.h"
#include "Math/GenVector/LorentzVector.h"
#include "Math/GenVector/3DDistances.h"
#include "Math/GenVector/RotationXfwd.h"
#include <cmath>
namespace ROOT {
namespace Math {
/**
Rotation class representing a rotation about the X axis.
The Rotation is stored by holding the sine and cosine of the angle.
@ingroup GenVector
*/
class RotationX {
public:
typedef double Scalar;
// ========== Constructors and Assignment =====================
/**
Default constructor (identity rotation)
*/
RotationX() : fAngle(0), fSin(0), fCos(1) { }
/**
Construct from an angle
*/
explicit RotationX( Scalar angle ) : fAngle(angle),
fSin(std::sin(angle)),
fCos(std::cos(angle)) { }
// The compiler-generated copy ctor, copy assignment, and dtor are OK.
/**
Rectify makes sure the angle is in (-pi,pi]
*/
void Rectify() {
if ( std::fabs(fAngle) >= M_PI ) {
double x = fAngle / (2.0 * M_PI);
fAngle = (2.0 * M_PI) * ( x + std::floor(.5-x) );
fSin = std::sin(fAngle);
fCos = std::cos(fAngle);
}
}
// ======== Components ==============
/**
Set given the angle.
*/
void SetAngle (Scalar angle) {
fSin=std::sin(angle);
fCos=std::cos(angle);
}
void SetComponents (Scalar angle) { SetAngle(angle); }
/**
Get the angle
*/
void GetAngle ( Scalar & angle ) const { angle = atan2 (fSin,fCos); }
void GetComponents ( Scalar & angle ) const { GetAngle(angle); }
/**
Angle of rotation
*/
Scalar Angle () const { return atan2 (fSin,fCos); }
/**
Sine or Cosine of the rotation angle
*/
Scalar SinAngle () const { return fSin; }
Scalar CosAngle () const { return fCos; }
// =========== operations ==============
/**
Rotation operation on a cartesian vector
*/
typedef DisplacementVector3D< Cartesian3D<double> > XYZVector;
XYZVector operator() (const XYZVector & v) const {
return XYZVector ( v.x(), fCos*v.y()-fSin*v.z(), fCos*v.z()+fSin*v.y() );
}
/**
Rotation operation on a displacement vector in any coordinate system
*/
template <class CoordSystem>
DisplacementVector3D<CoordSystem>
operator() (const DisplacementVector3D<CoordSystem> & v) const {
DisplacementVector3D< Cartesian3D<double> > xyz(v);
DisplacementVector3D< Cartesian3D<double> > Rxyz = operator()(xyz);
return DisplacementVector3D<CoordSystem> ( Rxyz );
}
/**
Rotation operation on a position vector in any coordinate system
*/
template <class CoordSystem>
PositionVector3D<CoordSystem>
operator() (const PositionVector3D<CoordSystem> & v) const {
DisplacementVector3D< Cartesian3D<double> > xyz(v);
DisplacementVector3D< Cartesian3D<double> > Rxyz = operator()(xyz);
return PositionVector3D<CoordSystem> ( Rxyz );
}
/**
Rotation operation on a Lorentz vector in any 4D coordinate system
*/
template <class CoordSystem>
LorentzVector<CoordSystem>
operator() (const LorentzVector<CoordSystem> & v) const {
DisplacementVector3D< Cartesian3D<double> > xyz(v.Vect());
xyz = operator()(xyz);
LorentzVector< PxPyPzE4D<double> > xyzt (xyz.X(), xyz.Y(), xyz.Z(), v.E());
return LorentzVector<CoordSystem> ( xyzt );
}
/**
Rotation operation on an arbitrary vector v.
Preconditions: v must implement methods x(), y(), and z()
and the arbitrary vector type must have a constructor taking (x,y,z)
*/
template <class ForeignVector>
ForeignVector
operator() (const ForeignVector & v) const {
DisplacementVector3D< Cartesian3D<double> > xyz(v);
DisplacementVector3D< Cartesian3D<double> > Rxyz = operator()(xyz);
return ForeignVector ( Rxyz.X(), Rxyz.Y(), Rxyz.Z() );
}
/**
Overload operator * for rotation on a vector
*/
template <class AVector>
inline
AVector operator* (const AVector & v) const
{
return operator()(v);
}
/**
Invert a rotation in place
*/
void Invert() { fAngle = -fAngle; fSin = -fSin; }
/**
Return inverse of a rotation
*/
RotationX Inverse() const { RotationX t(*this); t.Invert(); return t; }
// ========= Multi-Rotation Operations ===============
/**
Multiply (combine) two rotations
*/
RotationX operator * (const RotationX & r) const {
RotationX ans;
double x = (fAngle + r.fAngle) / (2.0 * M_PI);
ans.fAngle = (2.0 * M_PI) * ( x + std::floor(.5-x) );
ans.fSin = fSin*r.fCos + fCos*r.fSin;
ans.fCos = fCos*r.fCos - fSin*r.fSin;
return ans;
}
/**
Post-Multiply (on right) by another rotation : T = T*R
*/
RotationX & operator *= (const RotationX & r) { return *this = (*this)*r; }
/**
Equality/inequality operators
*/
bool operator == (const RotationX & rhs) {
if( fAngle != rhs.fAngle ) return false;
return true;
}
bool operator != (const RotationX & rhs) {
return ! operator==(rhs);
}
private:
Scalar fAngle;
Scalar fSin;
Scalar fCos;
}; // RotationX
// ============ Class RotationX ends here ============
/**
Distance between two rotations
*/
template <class R>
inline
typename RotationX::Scalar
Distance ( const RotationX& r1, const R & r2) {return gv_detail::dist(r1,r2);}
/**
Stream Output and Input
*/
// TODO - I/O should be put in the manipulator form
inline
std::ostream & operator<< (std::ostream & os, const RotationX & r) {
os << " RotationX(" << r.Angle() << ") ";
return os;
}
} // namespace Math
} // namespace ROOT
#endif // ROOT_Math_GenVector_RotationX
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.