Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
BoostZ.cxx
Go to the documentation of this file.
1 // @(#)root/mathcore:$Id$
2 // Authors: M. Fischler 2005
3 
4  /**********************************************************************
5  * *
6  * Copyright (c) 2005 , LCG ROOT FNAL MathLib Team *
7  * *
8  * *
9  **********************************************************************/
10 
11 // Header file for class BoostZ, a 4x4 symmetric matrix representation of
12 // an axial Lorentz transformation
13 //
14 // Created by: Mark Fischler Mon Nov 1 2005
15 //
16 #include "Math/GenVector/BoostZ.h"
22 
23 #include <cmath>
24 #include <algorithm>
25 
26 namespace ROOT {
27 
28 namespace Math {
29 
30 BoostZ::BoostZ() : fBeta(0.0), fGamma(1.0) {}
31 
32 void BoostZ::SetComponents (Scalar bz) {
33  // set component
34  Scalar bp2 = bz*bz;
35  if (bp2 >= 1) {
36  GenVector::Throw (
37  "Beta Vector supplied to set BoostZ represents speed >= c");
38  return;
39  }
40  fBeta = bz;
41  fGamma = 1.0 / std::sqrt(1.0 - bp2);
42 }
43 
44 void BoostZ::GetComponents (Scalar& bz) const {
45  // get component
46  bz = fBeta;
47 }
48 
49 DisplacementVector3D< Cartesian3D<BoostZ::Scalar> >
50 BoostZ::BetaVector() const {
51  // return beta vector
52  return DisplacementVector3D< Cartesian3D<Scalar> >
53  ( 0.0, 0.0, fBeta );
54 }
55 
56 void BoostZ::GetLorentzRotation (Scalar r[]) const {
57  // get corresponding LorentzRotation
58  r[kLXX] = 1.0; r[kLXY] = 0.0; r[kLXZ] = 0.0; r[kLXT] = 0.0 ;
59  r[kLYX] = 0.0; r[kLYY] = 1.0; r[kLYZ] = 0.0; r[kLYT] = 0.0 ;
60  r[kLZX] = 0.0; r[kLZY] = 0.0; r[kLZZ] = fGamma; r[kLZT] = fGamma*fBeta;
61  r[kLTX] = 0.0; r[kLTY] = 0.0; r[kLTZ] = fGamma*fBeta; r[kLTT] = fGamma;
62 }
63 
64 void BoostZ::Rectify() {
65  // Assuming the representation of this is close to a true Lorentz Rotation,
66  // but may have drifted due to round-off error from many operations,
67  // this forms an "exact" orthosymplectic matrix for the Lorentz Rotation
68  // again.
69 
70  if (fGamma <= 0) {
71  GenVector::Throw (
72  "Attempt to rectify a boost with non-positive gamma");
73  return;
74  }
75  Scalar beta = fBeta;
76  if ( beta >= 1 ) {
77  beta /= ( beta * ( 1.0 + 1.0e-16 ) );
78  }
79  SetComponents ( beta );
80 }
81 
82 LorentzVector< PxPyPzE4D<double> >
83 BoostZ::operator() (const LorentzVector< PxPyPzE4D<double> > & v) const {
84  // apply boost to a LV
85  Scalar z = v.Pz();
86  Scalar t = v.E();
87  return LorentzVector< PxPyPzE4D<double> >
88  ( v.Px()
89  , v.Py()
90  , fGamma*z + fGamma*fBeta*t
91  , fGamma*fBeta*z + fGamma*t );
92 }
93 
94 void BoostZ::Invert() {
95  // invert
96  fBeta = -fBeta;
97 }
98 
99 BoostZ BoostZ::Inverse() const {
100  // return an inverse boostZ
101  BoostZ tmp(*this);
102  tmp.Invert();
103  return tmp;
104 }
105 
106 // ========== I/O =====================
107 
108 std::ostream & operator<< (std::ostream & os, const BoostZ & b) {
109  os << " BoostZ( beta: " << b.Beta() << ", gamma: " << b.Gamma() << " ) ";
110  return os;
111 }
112 
113 } //namespace Math
114 } //namespace ROOT