1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 17:25:37 +01:00

NAMESPACE & format

This commit is contained in:
paboyle 2018-01-14 21:52:27 +00:00
parent 1fbab4032b
commit 59ba9ff3bb

View File

@ -28,16 +28,16 @@ with this program; if not, write to the Free Software Foundation, Inc.,
See the full license in the file "LICENSE" in the top level distribution directory See the full license in the file "LICENSE" in the top level distribution directory
*************************************************************************************/ *************************************************************************************/
/* END LEGAL */ /* END LEGAL */
#ifndef GRID_QCD_DIRAC_H #ifndef GRID_QCD_DIRAC_H
#define GRID_QCD_DIRAC_H #define GRID_QCD_DIRAC_H
// Gamma matrices using the code generated by the Mathematica notebook // Gamma matrices using the code generated by the Mathematica notebook
// gamma-gen/gamma-gen.nb in Gamma.cc & Gamma.h // gamma-gen/gamma-gen.nb in Gamma.cc & Gamma.h
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#include <Grid/qcd/spin/Gamma.h> #include <Grid/qcd/spin/Gamma.h>
namespace Grid { NAMESPACE_BEGIN(Grid);
// Dirac algebra adjoint operator (not in QCD:: to overload other adj) // Dirac algebra adjoint operator (not in QCD:: to overload other adj)
inline QCD::Gamma adj(const QCD::Gamma &g) inline QCD::Gamma adj(const QCD::Gamma &g)
@ -45,7 +45,7 @@ inline QCD::Gamma adj(const QCD::Gamma &g)
return QCD::Gamma (QCD::Gamma::adj[g.g]); return QCD::Gamma (QCD::Gamma::adj[g.g]);
} }
namespace QCD {
// Dirac algebra mutliplication operator // Dirac algebra mutliplication operator
inline Gamma operator*(const Gamma &g1, const Gamma &g2) inline Gamma operator*(const Gamma &g1, const Gamma &g2)
@ -56,7 +56,7 @@ inline Gamma operator*(const Gamma &g1, const Gamma &g2)
// general left multiply // general left multiply
template<class vtype> template<class vtype>
inline auto operator*(const Gamma &G, const iScalar<vtype> &arg) inline auto operator*(const Gamma &G, const iScalar<vtype> &arg)
->typename std::enable_if<matchGridTensorIndex<iScalar<vtype>,SpinorIndex>::notvalue,iScalar<vtype>>::type ->typename std::enable_if<matchGridTensorIndex<iScalar<vtype>,SpinorIndex>::notvalue,iScalar<vtype>>::type
{ {
iScalar<vtype> ret; iScalar<vtype> ret;
ret._internal=G*arg._internal; ret._internal=G*arg._internal;
@ -65,7 +65,7 @@ inline auto operator*(const Gamma &G, const iScalar<vtype> &arg)
template<class vtype,int N> template<class vtype,int N>
inline auto operator*(const Gamma &G, const iVector<vtype, N> &arg) inline auto operator*(const Gamma &G, const iVector<vtype, N> &arg)
->typename std::enable_if<matchGridTensorIndex<iVector<vtype,N>,SpinorIndex>::notvalue,iVector<vtype,N>>::type ->typename std::enable_if<matchGridTensorIndex<iVector<vtype,N>,SpinorIndex>::notvalue,iVector<vtype,N>>::type
{ {
iVector<vtype,N> ret; iVector<vtype,N> ret;
for(int i=0;i<N;i++){ for(int i=0;i<N;i++){
@ -76,7 +76,7 @@ inline auto operator*(const Gamma &G, const iVector<vtype, N> &arg)
template<class vtype, int N> template<class vtype, int N>
inline auto operator*(const Gamma &G, const iMatrix<vtype, N> &arg) inline auto operator*(const Gamma &G, const iMatrix<vtype, N> &arg)
->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,SpinorIndex>::notvalue,iMatrix<vtype,N>>::type ->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,SpinorIndex>::notvalue,iMatrix<vtype,N>>::type
{ {
iMatrix<vtype,N> ret; iMatrix<vtype,N> ret;
for(int i=0;i<N;i++){ for(int i=0;i<N;i++){
@ -89,7 +89,7 @@ inline auto operator*(const Gamma &G, const iMatrix<vtype, N> &arg)
// general right multiply // general right multiply
template<class vtype> template<class vtype>
inline auto operator*(const iScalar<vtype> &arg, const Gamma &G) inline auto operator*(const iScalar<vtype> &arg, const Gamma &G)
->typename std::enable_if<matchGridTensorIndex<iScalar<vtype>,SpinorIndex>::notvalue,iScalar<vtype>>::type ->typename std::enable_if<matchGridTensorIndex<iScalar<vtype>,SpinorIndex>::notvalue,iScalar<vtype>>::type
{ {
iScalar<vtype> ret; iScalar<vtype> ret;
ret._internal=arg._internal*G; ret._internal=arg._internal*G;
@ -98,7 +98,7 @@ inline auto operator*(const iScalar<vtype> &arg, const Gamma &G)
template<class vtype, int N> template<class vtype, int N>
inline auto operator * (const iMatrix<vtype, N> &arg, const Gamma &G) inline auto operator * (const iMatrix<vtype, N> &arg, const Gamma &G)
->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,SpinorIndex>::notvalue,iMatrix<vtype,N>>::type ->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,SpinorIndex>::notvalue,iMatrix<vtype,N>>::type
{ {
iMatrix<vtype,N> ret; iMatrix<vtype,N> ret;
for(int i=0;i<N;i++){ for(int i=0;i<N;i++){
@ -123,7 +123,7 @@ public:
// vector multiply // vector multiply
template<class vtype> template<class vtype>
inline auto operator*(const GammaL &gl, const iVector<vtype, Ns> &arg) inline auto operator*(const GammaL &gl, const iVector<vtype, Ns> &arg)
->typename std::enable_if<matchGridTensorIndex<iVector<vtype, Ns>, SpinorIndex>::value, iVector<vtype, Ns>>::type ->typename std::enable_if<matchGridTensorIndex<iVector<vtype, Ns>, SpinorIndex>::value, iVector<vtype, Ns>>::type
{ {
iVector<vtype, Ns> buf; iVector<vtype, Ns> buf;
@ -138,7 +138,7 @@ inline auto operator*(const GammaL &gl, const iVector<vtype, Ns> &arg)
// matrix left multiply // matrix left multiply
template<class vtype> template<class vtype>
inline auto operator*(const GammaL &gl, const iMatrix<vtype, Ns> &arg) inline auto operator*(const GammaL &gl, const iMatrix<vtype, Ns> &arg)
->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype, Ns>, SpinorIndex>::value, iMatrix<vtype, Ns>>::type ->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype, Ns>, SpinorIndex>::value, iMatrix<vtype, Ns>>::type
{ {
iMatrix<vtype, Ns> buf; iMatrix<vtype, Ns> buf;
@ -156,7 +156,7 @@ inline auto operator*(const GammaL &gl, const iMatrix<vtype, Ns> &arg)
// matrix right multiply // matrix right multiply
template<class vtype> template<class vtype>
inline auto operator*(const iMatrix<vtype, Ns> &arg, const GammaL &gl) inline auto operator*(const iMatrix<vtype, Ns> &arg, const GammaL &gl)
->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype, Ns>, SpinorIndex>::value, iMatrix<vtype, Ns>>::type ->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype, Ns>, SpinorIndex>::value, iMatrix<vtype, Ns>>::type
{ {
iMatrix<vtype, Ns> buf; iMatrix<vtype, Ns> buf;
@ -175,7 +175,7 @@ inline auto operator*(const iMatrix<vtype, Ns> &arg, const GammaL &gl)
//general left multiply //general left multiply
template<class vtype> template<class vtype>
inline auto operator*(const GammaL &gl, const iScalar<vtype> &arg) inline auto operator*(const GammaL &gl, const iScalar<vtype> &arg)
->typename std::enable_if<matchGridTensorIndex<iScalar<vtype>,SpinorIndex>::notvalue,iScalar<vtype>>::type ->typename std::enable_if<matchGridTensorIndex<iScalar<vtype>,SpinorIndex>::notvalue,iScalar<vtype>>::type
{ {
iScalar<vtype> ret; iScalar<vtype> ret;
ret._internal=gl*arg._internal; ret._internal=gl*arg._internal;
@ -184,7 +184,7 @@ inline auto operator*(const GammaL &gl, const iScalar<vtype> &arg)
template<class vtype,int N> template<class vtype,int N>
inline auto operator*(const GammaL &gl, const iVector<vtype, N> &arg) inline auto operator*(const GammaL &gl, const iVector<vtype, N> &arg)
->typename std::enable_if<matchGridTensorIndex<iVector<vtype,N>,SpinorIndex>::notvalue,iVector<vtype,N>>::type ->typename std::enable_if<matchGridTensorIndex<iVector<vtype,N>,SpinorIndex>::notvalue,iVector<vtype,N>>::type
{ {
iVector<vtype,N> ret; iVector<vtype,N> ret;
for(int i=0;i<N;i++){ for(int i=0;i<N;i++){
@ -195,7 +195,7 @@ inline auto operator*(const GammaL &gl, const iVector<vtype, N> &arg)
template<class vtype, int N> template<class vtype, int N>
inline auto operator*(const GammaL &gl, const iMatrix<vtype, N> &arg) inline auto operator*(const GammaL &gl, const iMatrix<vtype, N> &arg)
->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,SpinorIndex>::notvalue,iMatrix<vtype,N>>::type ->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,SpinorIndex>::notvalue,iMatrix<vtype,N>>::type
{ {
iMatrix<vtype,N> ret; iMatrix<vtype,N> ret;
for(int i=0;i<N;i++){ for(int i=0;i<N;i++){
@ -208,7 +208,7 @@ inline auto operator*(const GammaL &gl, const iMatrix<vtype, N> &arg)
//general right multiply //general right multiply
template<class vtype> template<class vtype>
inline auto operator*(const iScalar<vtype> &arg, const GammaL &gl) inline auto operator*(const iScalar<vtype> &arg, const GammaL &gl)
->typename std::enable_if<matchGridTensorIndex<iScalar<vtype>,SpinorIndex>::notvalue,iScalar<vtype>>::type ->typename std::enable_if<matchGridTensorIndex<iScalar<vtype>,SpinorIndex>::notvalue,iScalar<vtype>>::type
{ {
iScalar<vtype> ret; iScalar<vtype> ret;
ret._internal=arg._internal*gl; ret._internal=arg._internal*gl;
@ -217,7 +217,7 @@ inline auto operator*(const iScalar<vtype> &arg, const GammaL &gl)
template<class vtype, int N> template<class vtype, int N>
inline auto operator * (const iMatrix<vtype, N> &arg, const GammaL &gl) inline auto operator * (const iMatrix<vtype, N> &arg, const GammaL &gl)
->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,SpinorIndex>::notvalue,iMatrix<vtype,N>>::type ->typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,SpinorIndex>::notvalue,iMatrix<vtype,N>>::type
{ {
iMatrix<vtype,N> ret; iMatrix<vtype,N> ret;
for(int i=0;i<N;i++){ for(int i=0;i<N;i++){
@ -227,6 +227,6 @@ inline auto operator * (const iMatrix<vtype, N> &arg, const GammaL &gl)
return ret; return ret;
} }
}} NAMESPACE_END(Grid);
#endif #endif