Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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//
22
23#include <cmath>
24#include <algorithm>
25
26namespace ROOT {
27
28namespace Math {
29
30BoostZ::BoostZ() : fBeta(0.0), fGamma(1.0) {}
31
33 // set component
34 Scalar bp2 = bz*bz;
35 if (bp2 >= 1) {
36 GenVector_Throw("Beta Vector supplied to set BoostZ represents speed >= c");
37 return;
38 }
39 fBeta = bz;
40 fGamma = 1.0 / std::sqrt(1.0 - bp2);
41}
42
44 // get component
45 bz = fBeta;
46}
47
50 // return beta vector
52 ( 0.0, 0.0, fBeta );
53}
54
56 // get corresponding LorentzRotation
57 r[kLXX] = 1.0; r[kLXY] = 0.0; r[kLXZ] = 0.0; r[kLXT] = 0.0 ;
58 r[kLYX] = 0.0; r[kLYY] = 1.0; r[kLYZ] = 0.0; r[kLYT] = 0.0 ;
59 r[kLZX] = 0.0; r[kLZY] = 0.0; r[kLZZ] = fGamma; r[kLZT] = fGamma*fBeta;
60 r[kLTX] = 0.0; r[kLTY] = 0.0; r[kLTZ] = fGamma*fBeta; r[kLTT] = fGamma;
61}
62
64 // Assuming the representation of this is close to a true Lorentz Rotation,
65 // but may have drifted due to round-off error from many operations,
66 // this forms an "exact" orthosymplectic matrix for the Lorentz Rotation
67 // again.
68
69 if (fGamma <= 0) {
70 GenVector_Throw("Attempt to rectify a boost with non-positive gamma");
71 return;
72 }
74 if ( beta >= 1 ) {
75 beta /= ( beta * ( 1.0 + 1.0e-16 ) );
76 }
78}
79
82 // apply boost to a LV
83 Scalar z = v.Pz();
84 Scalar t = v.E();
86 ( v.Px()
87 , v.Py()
88 , fGamma*z + fGamma*fBeta*t
89 , fGamma*fBeta*z + fGamma*t );
90}
91
93 // invert
94 fBeta = -fBeta;
95}
96
98 // return an inverse boostZ
99 BoostZ tmp(*this);
100 tmp.Invert();
101 return tmp;
102}
103
104// ========== I/O =====================
105
106std::ostream & operator<< (std::ostream & os, const BoostZ & b) {
107 os << " BoostZ( beta: " << b.Beta() << ", gamma: " << b.Gamma() << " ) ";
108 return os;
109}
110
111} //namespace Math
112} //namespace ROOT
#define b(i)
Definition RSha256.hxx:100
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
Class representing a Lorentz Boost along the Z axis, by beta.
Definition BoostZ.h:39
void GetLorentzRotation(Scalar r[]) const
Get elements of internal 4x4 symmetric representation, into a data array suitable for direct use as t...
Definition BoostZ.cxx:55
void Invert()
Invert a BoostZ in place.
Definition BoostZ.cxx:92
XYZVector BetaVector() const
Definition BoostZ.cxx:49
void SetComponents(Scalar beta_z)
Set components from a Scalar beta_z.
Definition BoostZ.cxx:32
void Rectify()
Re-adjust components to eliminate small deviations from a perfect orthosyplectic matrix.
Definition BoostZ.cxx:63
void GetComponents(Scalar &beta_z) const
Get components into a Scalar beta_z.
Definition BoostZ.cxx:43
LorentzVector< ROOT::Math::PxPyPzE4D< double > > operator()(const LorentzVector< ROOT::Math::PxPyPzE4D< double > > &v) const
Lorentz transformation operation on a Minkowski ('Cartesian') LorentzVector.
Definition BoostZ.cxx:81
BoostZ Inverse() const
Return inverse of a BoostZ.
Definition BoostZ.cxx:97
BoostZ()
Default constructor (identity transformation)
Definition BoostZ.cxx:30
Class describing a generic LorentzVector in the 4D space-time, using the specified coordinate system ...
double beta(double x, double y)
Calculates the beta function.
Namespace for new Math classes and functions.
std::ostream & operator<<(std::ostream &os, const AxisAngle &a)
Stream Output and Input.
Definition AxisAngle.cxx:91
void GenVector_Throw(const char *)
function throwing exception, by creating internally a GenVector_exception only when needed
Namespace for new ROOT classes and functions.