Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:26:00

0001 /// \file LorentzVector.h
0002 /// \author Andrei Gheata
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 }