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

41 lines
918 B
C
Raw Normal View History

2015-06-03 11:26:54 +01:00
#ifndef OVERLAP_WILSON_CAYLEY_ZOLOTAREV_FERMION_H
#define OVERLAP_WILSON_CAYLEY_ZOLOTAREV_FERMION_H
#include <Grid.h>
namespace Grid {
namespace QCD {
template<class Impl>
class OverlapWilsonCayleyZolotarevFermion : public MobiusZolotarevFermion<Impl>
2015-06-03 11:26:54 +01:00
{
public:
INHERIT_IMPL_TYPES(Impl);
public:
2015-06-03 11:26:54 +01:00
// Constructors
OverlapWilsonCayleyZolotarevFermion(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,const ImplParams &p= ImplParams()) :
2015-06-03 11:26:54 +01:00
// b+c=1.0, b-c = 0 <=> b =c = 1/2
MobiusZolotarevFermion<Impl>(_Umu,
FiveDimGrid,
FiveDimRedBlackGrid,
FourDimGrid,
FourDimRedBlackGrid,_mass,_M5,0.5,0.5,lo,hi,p)
2015-06-03 11:26:54 +01:00
{}
};
}
}
#endif