MINT2
Classes | Functions
SymmLorentzMatrix.h File Reference
#include "LorentzMatrix.h"
#include "TLorentzVector.h"

Go to the source code of this file.

Classes

class  SymmLorentzMatrix
 

Functions

SymmLorentzMatrix operator * (double lhs, const SymmLorentzMatrix &rhs)
 
SymmLorentzMatrix operator/ (double lhs, const SymmLorentzMatrix &rhs)
 

Function Documentation

◆ operator *()

SymmLorentzMatrix operator * ( double  lhs,
const SymmLorentzMatrix rhs 
)

Definition at line 34 of file SymmLorentzMatrix.cpp.

34  {
35  SymmLorentzMatrix returnVal(rhs);
36  returnVal *= lhs;
37  return returnVal;
38 }

◆ operator/()

SymmLorentzMatrix operator/ ( double  lhs,
const SymmLorentzMatrix rhs 
)

Definition at line 39 of file SymmLorentzMatrix.cpp.

39  {
40  SymmLorentzMatrix returnVal(rhs);
41  returnVal /= lhs;
42  return returnVal;
43 }