+
class ROOT::Math::Boost
-
library: libMathCore
#include "Boost.h"
Display options:
Show inherited
Show non-public

class ROOT::Math::Boost

Function Members (Methods)

public:
~Boost()
ROOT::Math::Boost::XYZVectorBetaVector() const
ROOT::Math::BoostBoost()
ROOT::Math::BoostBoost(ROOT::Math::BoostX const& bx)
ROOT::Math::BoostBoost(ROOT::Math::BoostY const& by)
ROOT::Math::BoostBoost(ROOT::Math::BoostZ const& bz)
ROOT::Math::BoostBoost(const ROOT::Math::Boost&)
ROOT::Math::BoostBoost(double* begin, double* end)
ROOT::Math::BoostBoost(ROOT::Math::Boost::Scalar beta_x, ROOT::Math::Boost::Scalar beta_y, ROOT::Math::Boost::Scalar beta_z)
voidGetComponents(double* begin) const
voidGetComponents(ROOT::Math::Boost::Scalar& beta_x, ROOT::Math::Boost::Scalar& beta_y, ROOT::Math::Boost::Scalar& beta_z) const
voidGetLorentzRotation(ROOT::Math::Boost::Scalar* r) const
ROOT::Math::BoostInverse() const
voidInvert()
booloperator!=(const ROOT::Math::Boost& rhs) const
ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >operator()(const ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >& v) const
ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >operator*(const ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >& v) const
ROOT::Math::Boost&operator=(ROOT::Math::BoostX const& bx)
ROOT::Math::Boost&operator=(ROOT::Math::BoostY const& by)
ROOT::Math::Boost&operator=(ROOT::Math::BoostZ const& bz)
ROOT::Math::Boost&operator=(const ROOT::Math::Boost&)
booloperator==(const ROOT::Math::Boost& rhs) const
voidRectify()
voidSetComponents(const ROOT::Math::DisplacementVector3D<ROOT::Math::Cartesian3D<double>,ROOT::Math::DefaultCoordinateSystemTag>& beta)
voidSetComponents(double* begin, double* end)
voidSetComponents(ROOT::Math::Boost::Scalar beta_x, ROOT::Math::Boost::Scalar beta_y, ROOT::Math::Boost::Scalar beta_z)
protected:
voidSetIdentity()

Data Members

public:
enum ELorentzRotationMatrixIndex { kLXX
kLXY
kLXZ
kLXT
kLYX
kLYY
kLYZ
kLYT
kLZX
kLZY
kLZZ
kLZT
kLTX
kLTY
kLTZ
kLTT
};
enum EBoostMatrixIndex { kXX
kXY
kXZ
kXT
kYY
kYZ
kYT
kZZ
kZT
kTT
};
private:
ROOT::Math::Boost::ScalarfM[10]

Class Charts

Inheritance Inherited Members Includes Libraries
Class Charts

Function documentation

void SetIdentity()
 set identity boost
void SetComponents(ROOT::Math::Boost::Scalar beta_x, ROOT::Math::Boost::Scalar beta_y, ROOT::Math::Boost::Scalar beta_z)
 set the boost beta as 3 components
void GetComponents(ROOT::Math::Boost::Scalar& beta_x, ROOT::Math::Boost::Scalar& beta_y, ROOT::Math::Boost::Scalar& beta_z) const
 get beta of the boots as 3 components
BetaVector()
 get boost beta vector
void GetLorentzRotation(ROOT::Math::Boost::Scalar* r) const
 get Lorentz rotation corresponding to this boost as an array of 16 values
void Rectify()
 Assuming the representation of this is close to a true Lorentz Rotation,
 but may have drifted due to round-off error from many operations,
 this forms an "exact" orthosymplectic matrix for the Lorentz Rotation
 again.
operator()(const ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >& v) const
 apply bosost to a PxPyPzE LorentzVector
void Invert()
 invert in place boost (modifying the object)
Boost Inverse()
 return inverse of boost
Boost()
 ========== Constructors and Assignment =====================

Default constructor (identity transformation)

{ SetIdentity(); }
Boost(ROOT::Math::Boost::Scalar beta_x, ROOT::Math::Boost::Scalar beta_y, ROOT::Math::Boost::Scalar beta_z)
Construct given a three Scalars beta_x, beta_y, and beta_z

{ SetComponents(beta_x, beta_y, beta_z); }
Boost(const Avector & beta)
Construct given a beta vector (which must have methods x(), y(), z())

{ SetComponents(beta); }
Boost(double* begin, double* end)
Construct given a pair of pointers or iterators defining the
beginning and end of an array of three Scalars to use as beta_x, _y, and _z

{ SetComponents(begin,end); }
explicit Boost( BoostX const & bx )
Construct from an axial boost

{SetComponents(bx.BetaVector());}
explicit Boost( BoostY const & by )
{SetComponents(by.BetaVector());}
explicit Boost( BoostZ const & bz )
{SetComponents(bz.BetaVector());}
operator=( BoostX const & bx )
 The compiler-generated copy ctor, copy assignment, and dtor are OK.

Assign from an axial pure boost

{ return operator=(Boost(bx)); }
operator=( BoostY const & by )
{ return operator=(Boost(by)); }
operator=( BoostZ const & bz )
{ return operator=(Boost(bz)); }
SetComponents(ROOT::Math::Boost::Scalar beta_x, ROOT::Math::Boost::Scalar beta_y, ROOT::Math::Boost::Scalar beta_z)
 ======== Components ==============

Set components from beta_x, beta_y, and beta_z

GetComponents(ROOT::Math::Boost::Scalar& beta_x, ROOT::Math::Boost::Scalar& beta_y, ROOT::Math::Boost::Scalar& beta_z) const
Get components into beta_x, beta_y, and beta_z

SetComponents(const ROOT::Math::DisplacementVector3D<ROOT::Math::Cartesian3D<double>,ROOT::Math::DefaultCoordinateSystemTag>& beta)
Set components from a beta vector

{ SetComponents(beta.x(), beta.y(), beta.z()); }
A4Vector operator*(const ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> >& v) const
Overload operator * for boost on a vector

return ! operator==(const ROOT::Math::Boost& rhs) const

Last update: root/mathcore:$Name: $:$Id: Boost.cxx,v 1.9 2006/11/07 16:24:11 moneta Exp $
Copyright (c) 2005 , LCG ROOT FNAL MathLib Team *

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.