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