1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 15:55:37 +00:00
Grid/lib/qcd/action/fermion/WilsonCloverFermion.cc

107 lines
3.5 KiB
C++
Raw Normal View History

2017-03-27 07:12:57 +01:00
/*************************************************************************************
2017-03-24 03:43:28 +00:00
2017-03-27 07:12:57 +01:00
Grid physics library, www.github.com/paboyle/Grid
2017-03-24 03:43:28 +00:00
2017-03-27 07:12:57 +01:00
Source file: ./lib/qcd/action/fermion/WilsonCloverFermion.cc
2017-03-24 03:43:28 +00:00
2017-03-27 07:12:57 +01:00
Copyright (C) 2017
2017-03-24 03:43:28 +00:00
2017-03-27 07:12:57 +01:00
Author: paboyle <paboyle@ph.ed.ac.uk>
Author: Guido Cossu <guido.cossu@ed.ac.uk>
2017-03-24 03:43:28 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
See the full license in the file "LICENSE" in the top level distribution directory
*************************************************************************************/
2017-03-27 07:12:57 +01:00
/* END LEGAL */
2017-03-24 03:43:28 +00:00
#include <Grid/Grid.h>
2017-03-27 07:12:57 +01:00
#include <Grid/qcd/spin/Dirac.h>
2017-03-24 03:43:28 +00:00
namespace Grid {
namespace QCD {
2017-03-27 07:12:57 +01:00
template <class Impl>
void WilsonCloverFermion<Impl>::AddCloverTerm(const FermionField& in,
FermionField& out){
FermionField tmp(out._grid);
tmp = zero;
// the product sigma_munu Fmunu is hermitian
tmp += Bx*(Gamma(Gamma::Algebra::SigmaYZ)*in);
tmp += By*(Gamma(Gamma::Algebra::MinusSigmaXZ)*in);
tmp += Bz*(Gamma(Gamma::Algebra::SigmaXY)*in);
tmp += Ex*(Gamma(Gamma::Algebra::MinusSigmaXT)*in);
tmp += Ey*(Gamma(Gamma::Algebra::MinusSigmaYT)*in);
tmp += Ez*(Gamma(Gamma::Algebra::MinusSigmaZT)*in);
out += tmp*csw; // check signs
2017-03-24 03:43:28 +00:00
2017-03-27 07:12:57 +01:00
}
template <class Impl>
RealD WilsonCloverFermion<Impl>::M(const FermionField& in, FermionField& out) {
// Wilson term
2017-03-24 03:43:28 +00:00
out.checkerboard = in.checkerboard;
2017-03-27 07:12:57 +01:00
this->Dhop(in, out, DaggerNo);
// Clover term
// apply the sigma and Fmunu
AddCloverTerm(in, out);
// overall factor
return axpy_norm(out, 4 + this->mass, in, out);
}
template <class Impl>
RealD WilsonCloverFermion<Impl>::Mdag(const FermionField& in, FermionField& out) {
// Wilson term
out.checkerboard = in.checkerboard;
this->Dhop(in, out, DaggerYes);
// Clover term
// apply the sigma and Fmunu
AddCloverTerm(in, out);
return axpy_norm(out, 4 + this->mass, in, out);
}
template <class Impl>
void WilsonCloverFermion<Impl>::ImportGauge(const GaugeField& _Umu) {
this->ImportGauge(_Umu);
// Compute the field strength terms
// Invert the Moo, Mee terms (?)
2017-03-24 03:43:28 +00:00
}
2017-03-27 07:12:57 +01:00
2017-03-24 03:43:28 +00:00
template<class Impl>
2017-03-27 07:12:57 +01:00
void WilsonCloverFermion<Impl>::Mooee(const FermionField &in, FermionField &out) {
2017-03-24 03:43:28 +00:00
out.checkerboard = in.checkerboard;
2017-03-27 07:12:57 +01:00
}
template<class Impl>
void WilsonCloverFermion<Impl>::MooeeDag(const FermionField &in, FermionField &out) {
assert(0); // not implemented yet
2017-03-24 03:43:28 +00:00
}
template<class Impl>
2017-03-27 07:12:57 +01:00
void WilsonCloverFermion<Impl>::MooeeInv(const FermionField &in, FermionField &out) {
assert(0); // not implemented yet
2017-03-24 03:43:28 +00:00
}
template<class Impl>
2017-03-27 07:12:57 +01:00
void WilsonCloverFermion<Impl>::MooeeInvDag(const FermionField &in, FermionField &out) {
assert(0); // not implemented yet
2017-03-24 03:43:28 +00:00
}
2017-03-27 07:12:57 +01:00
FermOpTemplateInstantiate(WilsonCloverFermion);
2017-03-24 03:43:28 +00:00
}
}