![]() |
KaliVeda
Toolkit for HIC analysis
|
Utility class for kinematical transformations of KVParticle class.
Created by KVClassFactory on Thu Jan 19 15:37:43 2017 Author: John Frankland,,,
This class is used as a generic argument for the KVEvent::SetFrame() and KVParticle::SetFrame() methods (amongst others).
It is not always necessary to explicitly use this class when calling these methods. Any class for which a single-argument KVFrameTransform constructor is defined can be used, even a temporary (unnamed) object:
e.g. for KVParticle::SetFrame(const Char_t* frame, const KVFrameTransform& ft) the following calls are valid:
On the other hand, when more than one argument to the KVFrameTransform constructor is required, before C++11 you had to explicitly call the constructor in question, although once again it is sufficient to use a temporary object in the method call:
With C++11 this becomes
Definition at line 61 of file KVFrameTransform.h.
#include <KVFrameTransform.h>
Public Member Functions | |
KVFrameTransform () | |
KVFrameTransform (const KVFrameTransform &r) | |
Copy constructor. More... | |
KVFrameTransform (const TLorentzRotation &r) | |
Construct frame transformation using a TLorentzRotation. More... | |
KVFrameTransform (const TRotation &r) | |
Construct frame transformation using rotation of axes. More... | |
KVFrameTransform (const TRotation &r, const TVector3 &boost, Bool_t beta=kFALSE) | |
KVFrameTransform (const TVector3 &boost, Bool_t beta=kFALSE) | |
KVFrameTransform (const TVector3 &boost, const TRotation &r, Bool_t beta=kFALSE) | |
virtual | ~KVFrameTransform () |
KVFrameTransform & | operator= (const KVFrameTransform &) |
assignment by copy More... | |
|
inline |
Definition at line 63 of file KVFrameTransform.h.
KVFrameTransform::KVFrameTransform | ( | const TVector3 & | boost, |
Bool_t | beta = kFALSE |
||
) |
Construct frame transformation using velocity boost vector if beta=kTRUE, velocity given in light speed units if beta=kFALSE [default], velocity given in cm/ns units.
Definition at line 16 of file KVFrameTransform.cpp.
KVFrameTransform::KVFrameTransform | ( | const TRotation & | r | ) |
Construct frame transformation using rotation of axes.
Definition at line 37 of file KVFrameTransform.cpp.
KVFrameTransform::KVFrameTransform | ( | const TLorentzRotation & | r | ) |
Construct frame transformation using a TLorentzRotation.
Definition at line 49 of file KVFrameTransform.cpp.
KVFrameTransform::KVFrameTransform | ( | const KVFrameTransform & | r | ) |
Copy constructor.
Definition at line 60 of file KVFrameTransform.cpp.
KVFrameTransform::KVFrameTransform | ( | const TVector3 & | boost, |
const TRotation & | r, | ||
Bool_t | beta = kFALSE |
||
) |
Construct frame transformation using rotation & velocity boost vector in the order: BOOST then ROTATION if beta=kTRUE, velocity given in light speed units if beta=kFALSE [default], velocity given in cm/ns units.
Definition at line 75 of file KVFrameTransform.cpp.
KVFrameTransform::KVFrameTransform | ( | const TRotation & | r, |
const TVector3 & | boost, | ||
Bool_t | beta = kFALSE |
||
) |
Construct frame transformation using rotation & velocity boost vector in the order: ROTATION then BOOST if beta=kTRUE, velocity given in light speed units if beta=kFALSE [default], velocity given in cm/ns units.
Definition at line 100 of file KVFrameTransform.cpp.
|
inlinevirtual |
Definition at line 71 of file KVFrameTransform.h.
KVFrameTransform & KVFrameTransform::operator= | ( | const KVFrameTransform & | p | ) |
assignment by copy
Definition at line 121 of file KVFrameTransform.cpp.