Warning, file /include/VecGeom/base/Lorentz.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003 #include "LorentzRotation.h"
0004
0005 template <typename T>
0006 vecgeom::LorentzVector<T> &vecgeom::LorentzVector<T>::operator*=(const vecgeom::LorentzRotation<T> &m1)
0007 {
0008 return *this = m1.vectorMultiplication(*this);
0009 }
0010
0011 template <typename T>
0012 vecgeom::LorentzVector<T> &vecgeom::LorentzVector<T>::transform(const vecgeom::LorentzRotation<T> &m1)
0013 {
0014 return *this = m1.vectorMultiplication(*this);
0015 }