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

38 lines
885 B
C
Raw Normal View History

2015-06-03 11:26:54 +01:00
#ifndef OVERLAP_WILSON_CAYLEY_TANH_FERMION_H
#define OVERLAP_WILSON_CAYLEY_TANH_FERMION_H
#include <Grid.h>
namespace Grid {
namespace QCD {
template<class Impl>
class OverlapWilsonCayleyTanhFermion : public MobiusFermion<Impl>
2015-06-03 11:26:54 +01:00
{
public:
INHERIT_IMPL_TYPES(Impl);
public:
2015-06-03 11:26:54 +01:00
// Constructors
OverlapWilsonCayleyTanhFermion(GaugeField &_Umu,
2015-06-03 11:26:54 +01:00
GridCartesian &FiveDimGrid,
GridRedBlackCartesian &FiveDimRedBlackGrid,
GridCartesian &FourDimGrid,
GridRedBlackCartesian &FourDimRedBlackGrid,
RealD _mass,RealD _M5,
RealD scale,const ImplParams &p= ImplParams()) :
2015-06-03 11:26:54 +01:00
// b+c=scale, b-c = 0 <=> b =c = scale/2
MobiusFermion<Impl>(_Umu,
FiveDimGrid,
FiveDimRedBlackGrid,
FourDimGrid,
FourDimRedBlackGrid,_mass,_M5,0.5*scale,0.5*scale,p)
2015-06-03 11:26:54 +01:00
{
}
};
}
}
#endif