2021-09-23 22:39:55 +01:00
|
|
|
/*
|
|
|
|
* Warning: This code illustrative only: not well tested, and not meant for production use
|
|
|
|
* without regression / tests being applied
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Grid/Grid.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Grid;
|
|
|
|
typedef SpinColourMatrix Propagator;
|
|
|
|
typedef SpinColourVector Fermion;
|
2021-10-21 19:56:52 +01:00
|
|
|
typedef PeriodicGimplR GimplR;
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
template<class Gimpl,class Field> class CovariantLaplacianCshift : public SparseMatrixBase<Field>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
INHERIT_GIMPL_TYPES(Gimpl);
|
|
|
|
|
|
|
|
GridBase *grid;
|
|
|
|
GaugeField U;
|
|
|
|
|
|
|
|
CovariantLaplacianCshift(GaugeField &_U) :
|
|
|
|
grid(_U.Grid()),
|
|
|
|
U(_U) { };
|
|
|
|
|
|
|
|
virtual GridBase *Grid(void) { return grid; };
|
|
|
|
|
|
|
|
virtual void M (const Field &in, Field &out)
|
|
|
|
{
|
|
|
|
out=Zero();
|
|
|
|
for(int mu=0;mu<Nd-1;mu++) {
|
|
|
|
GaugeLinkField Umu = PeekIndex<LorentzIndex>(U, mu); // NB: Inefficent
|
|
|
|
out = out - Gimpl::CovShiftForward(Umu,mu,in);
|
|
|
|
out = out - Gimpl::CovShiftBackward(Umu,mu,in);
|
|
|
|
out = out + 2.0*in;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
virtual void Mdag (const Field &in, Field &out) { M(in,out);}; // Laplacian is hermitian
|
|
|
|
virtual void Mdiag (const Field &in, Field &out) {assert(0);}; // Unimplemented need only for multigrid
|
|
|
|
virtual void Mdir (const Field &in, Field &out,int dir, int disp){assert(0);}; // Unimplemented need only for multigrid
|
|
|
|
virtual void MdirAll (const Field &in, std::vector<Field> &out) {assert(0);}; // Unimplemented need only for multigrid
|
|
|
|
};
|
|
|
|
|
|
|
|
void MakePhase(Coordinate mom,LatticeComplex &phase)
|
|
|
|
{
|
|
|
|
GridBase *grid = phase.Grid();
|
|
|
|
auto latt_size = grid->GlobalDimensions();
|
|
|
|
ComplexD ci(0.0,1.0);
|
|
|
|
phase=Zero();
|
|
|
|
|
|
|
|
LatticeComplex coor(phase.Grid());
|
|
|
|
for(int mu=0;mu<Nd;mu++){
|
|
|
|
RealD TwoPiL = M_PI * 2.0/ latt_size[mu];
|
|
|
|
LatticeCoordinate(coor,mu);
|
|
|
|
phase = phase + (TwoPiL * mom[mu]) * coor;
|
|
|
|
}
|
|
|
|
phase = exp(phase*ci);
|
|
|
|
}
|
2021-10-21 19:56:52 +01:00
|
|
|
void LinkSmear(int nstep, RealD rho,LatticeGaugeField &Uin,LatticeGaugeField &Usmr)
|
|
|
|
{
|
|
|
|
Smear_Stout<GimplR> Stout(rho);
|
|
|
|
LatticeGaugeField Utmp(Uin.Grid());
|
|
|
|
Utmp = Uin;
|
|
|
|
for(int i=0;i<nstep;i++){
|
|
|
|
Stout.smear(Usmr,Utmp);
|
|
|
|
Utmp = Usmr;
|
|
|
|
}
|
|
|
|
}
|
2021-09-23 22:39:55 +01:00
|
|
|
void PointSource(Coordinate &coor,LatticePropagator &source)
|
|
|
|
{
|
|
|
|
// Coordinate coor({0,0,0,0});
|
|
|
|
source=Zero();
|
|
|
|
SpinColourMatrix kronecker; kronecker=1.0;
|
|
|
|
pokeSite(kronecker,source,coor);
|
|
|
|
}
|
|
|
|
void GFWallSource(int tslice,LatticePropagator &source)
|
|
|
|
{
|
|
|
|
GridBase *grid = source.Grid();
|
|
|
|
LatticeComplex one(grid); one = ComplexD(1.0,0.0);
|
|
|
|
LatticeComplex zz(grid); zz=Zero();
|
|
|
|
LatticeInteger t(grid);
|
|
|
|
LatticeCoordinate(t,Tdir);
|
|
|
|
one = where(t==Integer(tslice), one, zz);
|
|
|
|
source = 1.0;
|
|
|
|
source = source * one;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Z2WallSource(GridParallelRNG &RNG,int tslice,LatticePropagator &source)
|
|
|
|
{
|
|
|
|
GridBase *grid = source.Grid();
|
|
|
|
LatticeComplex noise(grid);
|
|
|
|
LatticeComplex zz(grid); zz=Zero();
|
|
|
|
LatticeInteger t(grid);
|
|
|
|
|
|
|
|
RealD nrm=1.0/sqrt(2);
|
|
|
|
bernoulli(RNG, noise); // 0,1 50:50
|
|
|
|
|
|
|
|
noise = (2.*noise - Complex(1,1))*nrm;
|
|
|
|
|
|
|
|
LatticeCoordinate(t,Tdir);
|
|
|
|
noise = where(t==Integer(tslice), noise, zz);
|
|
|
|
|
|
|
|
source = 1.0;
|
|
|
|
source = source*noise;
|
|
|
|
std::cout << " Z2 wall " << norm2(source) << std::endl;
|
|
|
|
}
|
|
|
|
void GaugeFix(LatticeGaugeField &U,LatticeGaugeField &Ufix)
|
|
|
|
{
|
|
|
|
Real alpha=0.05;
|
|
|
|
|
2021-10-21 19:56:52 +01:00
|
|
|
Real plaq=WilsonLoops<GimplR>::avgPlaquette(U);
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
std::cout << " Initial plaquette "<<plaq << std::endl;
|
|
|
|
|
|
|
|
LatticeColourMatrix xform(U.Grid());
|
|
|
|
Ufix = U;
|
|
|
|
int orthog=Nd-1;
|
2021-10-21 19:56:52 +01:00
|
|
|
FourierAcceleratedGaugeFixer<GimplR>::SteepestDescentGaugeFix(Ufix,xform,alpha,100000,1.0e-14, 1.0e-14,true,orthog);
|
2021-09-23 22:39:55 +01:00
|
|
|
|
2021-10-21 19:56:52 +01:00
|
|
|
plaq=WilsonLoops<GimplR>::avgPlaquette(Ufix);
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
std::cout << " Final plaquette "<<plaq << std::endl;
|
|
|
|
}
|
|
|
|
template<class Field>
|
|
|
|
void GaussianSmear(LatticeGaugeField &U,Field &unsmeared,Field &smeared)
|
|
|
|
{
|
2021-10-21 19:56:52 +01:00
|
|
|
typedef CovariantLaplacianCshift <GimplR,Field> Laplacian_t;
|
2021-09-23 22:39:55 +01:00
|
|
|
Laplacian_t Laplacian(U);
|
|
|
|
|
|
|
|
Integer Iterations = 40;
|
|
|
|
Real width = 2.0;
|
|
|
|
Real coeff = (width*width) / Real(4*Iterations);
|
|
|
|
|
|
|
|
Field tmp(U.Grid());
|
|
|
|
smeared=unsmeared;
|
|
|
|
// chi = (1-p^2/2N)^N kronecker
|
|
|
|
for(int n = 0; n < Iterations; ++n) {
|
|
|
|
Laplacian.M(smeared,tmp);
|
|
|
|
smeared = smeared - coeff*tmp;
|
|
|
|
std::cout << " smear iter " << n<<" " <<norm2(smeared)<<std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void GaussianSource(Coordinate &site,LatticeGaugeField &U,LatticePropagator &source)
|
|
|
|
{
|
|
|
|
LatticePropagator tmp(source.Grid());
|
|
|
|
PointSource(site,source);
|
|
|
|
std::cout << " GaussianSource Kronecker "<< norm2(source)<<std::endl;
|
|
|
|
tmp = source;
|
|
|
|
GaussianSmear(U,tmp,source);
|
|
|
|
std::cout << " GaussianSource Smeared "<< norm2(source)<<std::endl;
|
|
|
|
}
|
|
|
|
void GaussianWallSource(GridParallelRNG &RNG,int tslice,LatticeGaugeField &U,LatticePropagator &source)
|
|
|
|
{
|
|
|
|
Z2WallSource(RNG,tslice,source);
|
|
|
|
auto tmp = source;
|
|
|
|
GaussianSmear(U,tmp,source);
|
|
|
|
}
|
|
|
|
void SequentialSource(int tslice,Coordinate &mom,LatticePropagator &spectator,LatticePropagator &source)
|
|
|
|
{
|
|
|
|
assert(mom.size()==Nd);
|
|
|
|
assert(mom[Tdir] == 0);
|
|
|
|
|
|
|
|
GridBase * grid = spectator.Grid();
|
|
|
|
|
|
|
|
LatticeInteger ts(grid);
|
|
|
|
LatticeCoordinate(ts,Tdir);
|
|
|
|
source = Zero();
|
|
|
|
source = where(ts==Integer(tslice),spectator,source); // Stick in a slice of the spectator, zero everywhere else
|
|
|
|
|
|
|
|
LatticeComplex phase(grid);
|
|
|
|
MakePhase(mom,phase);
|
|
|
|
|
|
|
|
source = source *phase;
|
|
|
|
}
|
|
|
|
template<class Action>
|
|
|
|
void Solve(Action &D,LatticePropagator &source,LatticePropagator &propagator)
|
|
|
|
{
|
|
|
|
GridBase *UGrid = D.GaugeGrid();
|
|
|
|
GridBase *FGrid = D.FermionGrid();
|
|
|
|
|
2021-10-21 19:56:52 +01:00
|
|
|
LatticeFermion src4 (UGrid); src4 = Zero();
|
2021-09-23 22:39:55 +01:00
|
|
|
LatticeFermion src5 (FGrid);
|
|
|
|
LatticeFermion result5(FGrid);
|
|
|
|
LatticeFermion result4(UGrid);
|
|
|
|
|
2021-10-21 19:56:52 +01:00
|
|
|
ConjugateGradient<LatticeFermion> CG(1.0e-12,100000);
|
|
|
|
SchurRedBlackDiagTwoSolve<LatticeFermion> schur(CG);
|
2021-09-23 22:39:55 +01:00
|
|
|
ZeroGuesser<LatticeFermion> ZG; // Could be a DeflatedGuesser if have eigenvectors
|
2021-10-21 19:56:52 +01:00
|
|
|
std::cout<<GridLogMessage<< " source4 "<<norm2(source)<<std::endl;
|
2021-09-23 22:39:55 +01:00
|
|
|
for(int s=0;s<Nd;s++){
|
|
|
|
for(int c=0;c<Nc;c++){
|
|
|
|
PropToFerm<Action>(src4,source,s,c);
|
2021-10-21 19:56:52 +01:00
|
|
|
std::cout<<GridLogMessage<< s<<c<<" src4 "<<norm2(src4)<<std::endl;
|
2021-09-23 22:39:55 +01:00
|
|
|
D.ImportPhysicalFermionSource(src4,src5);
|
2021-10-21 19:56:52 +01:00
|
|
|
std::cout<<GridLogMessage<< s<<c<<" src5 "<<norm2(src5)<<std::endl;
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
result5=Zero();
|
|
|
|
schur(D,src5,result5,ZG);
|
|
|
|
std::cout<<GridLogMessage
|
|
|
|
<<"spin "<<s<<" color "<<c
|
|
|
|
<<" norm2(src5d) " <<norm2(src5)
|
|
|
|
<<" norm2(result5d) "<<norm2(result5)<<std::endl;
|
|
|
|
|
|
|
|
D.ExportPhysicalFermionSolution(result5,result4);
|
|
|
|
|
|
|
|
FermToProp<Action>(propagator,result4,s,c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MesonFile: Serializable {
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(MesonFile, std::vector<std::vector<Complex> >, data);
|
|
|
|
};
|
|
|
|
|
|
|
|
void MesonTrace(std::string file,LatticePropagator &q1,LatticePropagator &q2,LatticeComplex &phase)
|
|
|
|
{
|
|
|
|
const int nchannel=4;
|
|
|
|
Gamma::Algebra Gammas[nchannel][2] = {
|
|
|
|
{Gamma::Algebra::Gamma5 ,Gamma::Algebra::Gamma5},
|
|
|
|
{Gamma::Algebra::GammaTGamma5,Gamma::Algebra::GammaTGamma5},
|
|
|
|
{Gamma::Algebra::GammaTGamma5,Gamma::Algebra::Gamma5},
|
|
|
|
{Gamma::Algebra::Gamma5 ,Gamma::Algebra::GammaTGamma5}
|
|
|
|
};
|
|
|
|
|
|
|
|
Gamma G5(Gamma::Algebra::Gamma5);
|
|
|
|
|
|
|
|
LatticeComplex meson_CF(q1.Grid());
|
|
|
|
MesonFile MF;
|
|
|
|
|
|
|
|
for(int ch=0;ch<nchannel;ch++){
|
|
|
|
|
|
|
|
Gamma Gsrc(Gammas[ch][0]);
|
|
|
|
Gamma Gsnk(Gammas[ch][1]);
|
|
|
|
|
|
|
|
meson_CF = trace(G5*adj(q1)*G5*Gsnk*q2*adj(Gsrc));
|
|
|
|
|
|
|
|
std::vector<TComplex> meson_T;
|
|
|
|
sliceSum(meson_CF,meson_T, Tdir);
|
|
|
|
|
|
|
|
int nt=meson_T.size();
|
|
|
|
|
|
|
|
std::vector<Complex> corr(nt);
|
|
|
|
for(int t=0;t<nt;t++){
|
|
|
|
corr[t] = TensorRemove(meson_T[t]); // Yes this is ugly, not figured a work around
|
|
|
|
std::cout << " channel "<<ch<<" t "<<t<<" " <<corr[t]<<std::endl;
|
|
|
|
}
|
|
|
|
MF.data.push_back(corr);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
XmlWriter WR(file);
|
|
|
|
write(WR,"MesonFile",MF);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WallSinkMesonTrace(std::string file,std::vector<Propagator> &q1,std::vector<Propagator> &q2)
|
|
|
|
{
|
|
|
|
const int nchannel=4;
|
|
|
|
Gamma::Algebra Gammas[nchannel][2] = {
|
|
|
|
{Gamma::Algebra::Gamma5 ,Gamma::Algebra::Gamma5},
|
|
|
|
{Gamma::Algebra::GammaTGamma5,Gamma::Algebra::GammaTGamma5},
|
|
|
|
{Gamma::Algebra::GammaTGamma5,Gamma::Algebra::Gamma5},
|
|
|
|
{Gamma::Algebra::Gamma5 ,Gamma::Algebra::GammaTGamma5}
|
|
|
|
};
|
|
|
|
|
|
|
|
Gamma G5(Gamma::Algebra::Gamma5);
|
|
|
|
int nt=q1.size();
|
|
|
|
std::vector<Complex> meson_CF(nt);
|
|
|
|
MesonFile MF;
|
|
|
|
|
|
|
|
for(int ch=0;ch<nchannel;ch++){
|
|
|
|
|
|
|
|
Gamma Gsrc(Gammas[ch][0]);
|
|
|
|
Gamma Gsnk(Gammas[ch][1]);
|
|
|
|
|
|
|
|
std::vector<Complex> corr(nt);
|
|
|
|
for(int t=0;t<nt;t++){
|
|
|
|
meson_CF[t] = trace(G5*adj(q1[t])*G5*Gsnk*q2[t]*adj(Gsrc));
|
|
|
|
corr[t] = TensorRemove(meson_CF[t]); // Yes this is ugly, not figured a work around
|
|
|
|
std::cout << " channel "<<ch<<" t "<<t<<" " <<corr[t]<<std::endl;
|
|
|
|
}
|
|
|
|
MF.data.push_back(corr);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
XmlWriter WR(file);
|
|
|
|
write(WR,"MesonFile",MF);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main (int argc, char ** argv)
|
|
|
|
{
|
|
|
|
Grid_init(&argc,&argv);
|
|
|
|
|
|
|
|
// Double precision grids
|
|
|
|
GridCartesian * UGrid = SpaceTimeGrid::makeFourDimGrid(GridDefaultLatt(),
|
|
|
|
GridDefaultSimd(Nd,vComplex::Nsimd()),
|
|
|
|
GridDefaultMpi());
|
|
|
|
GridRedBlackCartesian * UrbGrid = SpaceTimeGrid::makeFourDimRedBlackGrid(UGrid);
|
|
|
|
|
|
|
|
|
|
|
|
LatticeGaugeField Umu(UGrid);
|
2021-10-21 19:56:52 +01:00
|
|
|
LatticeGaugeField Utmp(UGrid);
|
|
|
|
LatticeGaugeField Usmr(UGrid);
|
2021-09-23 22:39:55 +01:00
|
|
|
std::string config;
|
|
|
|
if( argc > 1 && argv[1][0] != '-' )
|
|
|
|
{
|
|
|
|
std::cout<<GridLogMessage <<"Loading configuration from "<<argv[1]<<std::endl;
|
|
|
|
FieldMetaData header;
|
|
|
|
NerscIO::readConfiguration(Umu, header, argv[1]);
|
|
|
|
config=argv[1];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cout<<GridLogMessage <<"Using hot configuration"<<std::endl;
|
|
|
|
SU<Nc>::ColdConfiguration(Umu);
|
2021-10-21 19:56:52 +01:00
|
|
|
config="ColdConfig";
|
2021-09-23 22:39:55 +01:00
|
|
|
}
|
2021-10-21 19:56:52 +01:00
|
|
|
// GaugeFix(Umu,Utmp);
|
|
|
|
// Umu=Utmp;
|
|
|
|
|
|
|
|
int nsmr=3;
|
|
|
|
RealD rho=0.1;
|
|
|
|
RealD plaq_gf =WilsonLoops<GimplR>::avgPlaquette(Umu);
|
|
|
|
LinkSmear(nsmr,rho,Umu,Usmr);
|
|
|
|
RealD plaq_smr=WilsonLoops<GimplR>::avgPlaquette(Usmr);
|
|
|
|
std::cout << GridLogMessage << " GF Plaquette " <<plaq_gf<<std::endl;
|
|
|
|
std::cout << GridLogMessage << " SM Plaquette " <<plaq_smr<<std::endl;
|
|
|
|
|
|
|
|
std::vector<int> smeared_link({ 0,0,1} );
|
2021-09-23 22:39:55 +01:00
|
|
|
std::vector<RealD> masses({ 0.004,0.02477,0.447} ); // u/d, s, c ??
|
|
|
|
std::vector<RealD> M5s ({ 1.8,1.8,1.0} );
|
|
|
|
std::vector<RealD> bs ({ 1.0,1.0,1.5} ); // DDM
|
|
|
|
std::vector<RealD> cs ({ 0.0,0.0,0.5} ); // DDM
|
|
|
|
std::vector<int> Ls_s ({ 16,16,12} );
|
|
|
|
std::vector<GridCartesian *> FGrids;
|
|
|
|
std::vector<GridRedBlackCartesian *> FrbGrids;
|
|
|
|
|
|
|
|
int nmass = masses.size();
|
|
|
|
|
2022-10-04 22:41:48 +01:00
|
|
|
std::vector<MobiusFermionD *> FermActs;
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
std::cout<<GridLogMessage <<"======================"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage <<"MobiusFermion action as Scaled Shamir kernel"<<std::endl;
|
|
|
|
std::cout<<GridLogMessage <<"======================"<<std::endl;
|
2021-10-21 19:56:52 +01:00
|
|
|
std::vector<Complex> boundary = {1,1,1,-1};
|
2022-10-04 22:41:48 +01:00
|
|
|
typedef MobiusFermionD FermionAction;
|
2021-10-21 19:56:52 +01:00
|
|
|
FermionAction::ImplParams Params(boundary);
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
for(int m=0;m<masses.size();m++) {
|
|
|
|
|
|
|
|
RealD mass = masses[m];
|
|
|
|
RealD M5 = M5s[m];
|
|
|
|
RealD b = bs[m];
|
|
|
|
RealD c = cs[m];
|
|
|
|
int Ls = Ls_s[m];
|
|
|
|
|
2021-10-21 19:56:52 +01:00
|
|
|
if ( smeared_link[m] ) Utmp = Usmr;
|
|
|
|
else Utmp = Umu;
|
|
|
|
|
2021-09-23 22:39:55 +01:00
|
|
|
FGrids.push_back(SpaceTimeGrid::makeFiveDimGrid(Ls,UGrid));
|
|
|
|
FrbGrids.push_back(SpaceTimeGrid::makeFiveDimRedBlackGrid(Ls,UGrid));
|
|
|
|
|
2022-10-04 22:41:48 +01:00
|
|
|
FermActs.push_back(new MobiusFermionD(Utmp,*FGrids[m],*FrbGrids[m],*UGrid,*UrbGrid,mass,M5,b,c,Params));
|
2021-09-23 22:39:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LatticePropagator z2wall_source(UGrid);
|
|
|
|
LatticePropagator gfwall_source(UGrid);
|
|
|
|
|
2021-10-21 19:56:52 +01:00
|
|
|
int tslice = 0;
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// RNG seeded for Z2 wall
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// You can manage seeds however you like.
|
|
|
|
// Recommend SeedUniqueString.
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
GridParallelRNG RNG4(UGrid); RNG4.SeedUniqueString("Study2-Source_Z2_p_0_0_0_t_0-880");
|
|
|
|
Z2WallSource (RNG4,tslice,z2wall_source);
|
|
|
|
GFWallSource (tslice,gfwall_source);
|
|
|
|
|
2021-09-23 22:39:55 +01:00
|
|
|
std::vector<LatticePropagator> Z2Props (nmass,UGrid);
|
|
|
|
std::vector<LatticePropagator> GFProps (nmass,UGrid);
|
|
|
|
|
|
|
|
for(int m=0;m<nmass;m++) {
|
|
|
|
|
2021-10-21 19:56:52 +01:00
|
|
|
std::cout << GridLogMessage << " Mass " <<m << " z2wall source "<<norm2(z2wall_source)<<std::endl;
|
2021-09-23 22:39:55 +01:00
|
|
|
Solve(*FermActs[m],z2wall_source ,Z2Props[m]);
|
2021-10-21 19:56:52 +01:00
|
|
|
std::cout << GridLogMessage << " Mass " <<m << " gfwall source "<<norm2(gfwall_source)<<std::endl;
|
2021-09-23 22:39:55 +01:00
|
|
|
Solve(*FermActs[m],gfwall_source ,GFProps[m]);
|
2021-10-21 19:56:52 +01:00
|
|
|
|
|
|
|
std::cout << GridLogMessage << " Mass " <<m << " z2wall source "<<norm2(z2wall_source)<< " " << norm2(gfwall_source)<<std::endl;
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
LatticeComplex phase(UGrid);
|
|
|
|
Coordinate mom({0,0,0,0});
|
|
|
|
MakePhase(mom,phase);
|
|
|
|
|
|
|
|
std::vector<std::vector<Propagator> > wsnk_z2Props(nmass);
|
|
|
|
std::vector<std::vector<Propagator> > wsnk_gfProps(nmass);
|
|
|
|
for(int m=0;m<nmass;m++){
|
|
|
|
sliceSum(Z2Props[m],wsnk_z2Props[m],Tdir);
|
|
|
|
sliceSum(GFProps[m],wsnk_gfProps[m],Tdir);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int m1=0 ;m1<nmass;m1++) {
|
|
|
|
for(int m2=m1;m2<nmass;m2++) {
|
|
|
|
std::stringstream ssg,ssz;
|
|
|
|
std::stringstream wssg,wssz;
|
|
|
|
|
|
|
|
/// Point sinks
|
2021-10-21 19:56:52 +01:00
|
|
|
ssg<<config<< "_m" << m1 << "_m"<< m2 << "_p_gf_meson.xml";
|
|
|
|
ssz<<config<< "_m" << m1 << "_m"<< m2 << "_p_z2_meson.xml";
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
MesonTrace(ssz.str(),Z2Props[m1],Z2Props[m2],phase);
|
2021-10-21 19:56:52 +01:00
|
|
|
MesonTrace(ssg.str(),GFProps[m1],GFProps[m2],phase);
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
/// Wall sinks
|
2021-10-21 19:56:52 +01:00
|
|
|
wssg<<config<< "_m" << m1 << "_m"<< m2 << "_w_gf_meson.xml";
|
|
|
|
wssz<<config<< "_m" << m1 << "_m"<< m2 << "_w_z2_meson.xml";
|
2021-09-23 22:39:55 +01:00
|
|
|
|
|
|
|
WallSinkMesonTrace(wssg.str(),wsnk_gfProps[m1],wsnk_gfProps[m2]);
|
|
|
|
WallSinkMesonTrace(wssz.str(),wsnk_z2Props[m1],wsnk_z2Props[m2]);
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
Grid_finalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|