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

43 lines
886 B
C
Raw Normal View History

2015-06-03 11:26:54 +01:00
#ifndef GRID_QCD_SHAMIR_ZOLOTAREV_FERMION_H
#define GRID_QCD_SHAMIR_ZOLOTAREV_FERMION_H
#include <Grid.h>
namespace Grid {
namespace QCD {
template<class Impl>
class ShamirZolotarevFermion : public MobiusZolotarevFermion<Impl>
2015-06-03 11:26:54 +01:00
{
public:
#include <qcd/action/fermion/FermionImplTypedefs.h>
public:
2015-06-03 11:26:54 +01:00
// Constructors
ShamirZolotarevFermion(GaugeField &_Umu,
2015-06-03 11:26:54 +01:00
GridCartesian &FiveDimGrid,
GridRedBlackCartesian &FiveDimRedBlackGrid,
GridCartesian &FourDimGrid,
GridRedBlackCartesian &FourDimRedBlackGrid,
RealD _mass,RealD _M5,
RealD lo, RealD hi) :
// b+c = 1; b-c = 1 => b=1, c=0
MobiusZolotarevFermion<Impl>(_Umu,
2015-06-03 11:26:54 +01:00
FiveDimGrid,
FiveDimRedBlackGrid,
FourDimGrid,
FourDimRedBlackGrid,_mass,_M5,1.0,0.0,lo,hi)
{}
};
}
}
#endif