2016-01-02 14:51:32 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: ./lib/qcd/action/fermion/DomainWallFermion.h
|
|
|
|
|
|
|
|
Copyright (C) 2015
|
|
|
|
|
|
|
|
Author: Peter Boyle <pabobyle@ph.ed.ac.uk>
|
|
|
|
Author: Peter Boyle <paboyle@ph.ed.ac.uk>
|
|
|
|
|
|
|
|
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
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
2015-06-02 16:57:12 +01:00
|
|
|
#ifndef GRID_QCD_DOMAIN_WALL_FERMION_H
|
|
|
|
#define GRID_QCD_DOMAIN_WALL_FERMION_H
|
|
|
|
|
2017-02-22 18:09:33 +00:00
|
|
|
#include <Grid/qcd/action/fermion/FermionCore.h>
|
2015-06-02 16:57:12 +01:00
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
|
|
|
|
namespace QCD {
|
|
|
|
|
2015-08-10 20:47:44 +01:00
|
|
|
template<class Impl>
|
|
|
|
class DomainWallFermion : public CayleyFermion5D<Impl>
|
2015-06-02 16:57:12 +01:00
|
|
|
{
|
|
|
|
public:
|
2015-08-15 23:25:49 +01:00
|
|
|
INHERIT_IMPL_TYPES(Impl);
|
2015-08-10 20:47:44 +01:00
|
|
|
public:
|
2015-06-02 16:57:12 +01:00
|
|
|
|
2016-10-10 23:43:36 +01:00
|
|
|
void MomentumSpacePropagator(FermionField &out,const FermionField &in,RealD _m) {
|
|
|
|
this->MomentumSpacePropagatorHt(out,in,_m);
|
|
|
|
};
|
|
|
|
|
2015-06-04 00:00:45 +01:00
|
|
|
virtual void Instantiatable(void) {};
|
2015-06-02 16:57:12 +01:00
|
|
|
// Constructors
|
2015-08-10 20:47:44 +01:00
|
|
|
DomainWallFermion(GaugeField &_Umu,
|
2015-06-02 16:57:12 +01:00
|
|
|
GridCartesian &FiveDimGrid,
|
|
|
|
GridRedBlackCartesian &FiveDimRedBlackGrid,
|
|
|
|
GridCartesian &FourDimGrid,
|
|
|
|
GridRedBlackCartesian &FourDimRedBlackGrid,
|
2015-08-15 23:25:49 +01:00
|
|
|
RealD _mass,RealD _M5,const ImplParams &p= ImplParams()) :
|
2015-06-02 16:57:12 +01:00
|
|
|
|
2016-10-10 23:43:36 +01:00
|
|
|
|
2015-08-10 20:47:44 +01:00
|
|
|
CayleyFermion5D<Impl>(_Umu,
|
|
|
|
FiveDimGrid,
|
|
|
|
FiveDimRedBlackGrid,
|
|
|
|
FourDimGrid,
|
2015-08-15 23:25:49 +01:00
|
|
|
FourDimRedBlackGrid,_mass,_M5,p)
|
2015-06-02 16:57:12 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
RealD eps = 1.0;
|
|
|
|
|
2015-06-04 13:28:37 +01:00
|
|
|
Approx::zolotarev_data *zdata = Approx::higham(eps,this->Ls);// eps is ignored for higham
|
2015-06-02 16:57:12 +01:00
|
|
|
assert(zdata->n==this->Ls);
|
|
|
|
|
2016-06-19 19:45:58 +01:00
|
|
|
// std::cout<<GridLogMessage << "DomainWallFermion with Ls="<<this->Ls<<std::endl;
|
2015-06-03 09:36:26 +01:00
|
|
|
// Call base setter
|
2015-08-10 20:47:44 +01:00
|
|
|
this->SetCoefficientsTanh(zdata,1.0,0.0);
|
2015-06-04 13:28:37 +01:00
|
|
|
|
|
|
|
Approx::zolotarev_free(zdata);
|
2015-06-02 16:57:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|