flavour
BGLmodels::Matrixx Class Reference

a class to represent the mixing matrices VCKM and VPMNS More...

#include <Formulas.h>

Inheritance diagram for BGLmodels::Matrixx:
Collaboration diagram for BGLmodels::Matrixx:

Public Member Functions

 Matrixx ()
 
 Matrixx (const Matrix3c &a)
 
 Matrixx (double c12, double c13, double c23, double s12, double s13, double s23, CD e13, CD e13t)
 constructs a unitary Matrixx in the standard form More...
 
 Matrixx (double t12, double t13, double t23, double d13)
 
const Matrixx conjugate () const
 computes the hermitian conjugate of the Matrixx More...
 

Detailed Description

a class to represent the mixing matrices VCKM and VPMNS

Definition at line 72 of file Formulas.h.

Constructor & Destructor Documentation

BGLmodels::Matrixx::Matrixx ( )
inline

Definition at line 74 of file Formulas.h.

74 : Matrix3c(){}
std::array< std::array< CD, 3 >, 3 > Matrix3c
Definition: Formulas.h:67
BGLmodels::Matrixx::Matrixx ( const Matrix3c a)
inline

Definition at line 75 of file Formulas.h.

75 : Matrix3c(a){}
std::array< std::array< CD, 3 >, 3 > Matrix3c
Definition: Formulas.h:67
BGLmodels::Matrixx::Matrixx ( double  c12,
double  c13,
double  c23,
double  s12,
double  s13,
double  s23,
CD  e13,
CD  e13t 
)
inline

constructs a unitary Matrixx in the standard form

Definition at line 79 of file Formulas.h.

79  :
80  Matrix3c({
81  Vector3c({c12*c13,s12*c13,s13*e13t}),
82  Vector3c({-s12*c23-c12*s23*s13*e13,c12*c23-s12*s23*s13*e13,s23*c13}),
83  Vector3c({s12*s23-c12*c23*s13*e13,-c12*s23-s12*c23*s13*e13,c13*c23})
84  }){}
std::array< CD, 3 > Vector3c
Definition: Formulas.h:66
std::array< std::array< CD, 3 >, 3 > Matrix3c
Definition: Formulas.h:67
BGLmodels::Matrixx::Matrixx ( double  t12,
double  t13,
double  t23,
double  d13 
)
inline

Definition at line 86 of file Formulas.h.

86  :
87  Matrixx(std::cos(t12),std::cos(t13),std::cos(t23),std::sin(t12),std::sin(t13),std::sin(t23),std::exp(CD(0,d13)),std::exp(CD(0,-d13))){}
std::complex< double > CD
Definition: Formulas.h:65

Member Function Documentation

const Matrixx BGLmodels::Matrixx::conjugate ( ) const
inline

computes the hermitian conjugate of the Matrixx

Definition at line 89 of file Formulas.h.

89  {
90  Matrixx res;
91  for(uint i=0;i<3;i++)
92  for(uint j=0;j<3;j++)
93  res[i][j]=std::conj((*this)[j][i]);
94  return res;
95  }
unsigned int uint
Definition: script.cpp:4

The documentation for this class was generated from the following file: