From 9bdbe9aca6a7b91b479f648a37fe67157393dd86 Mon Sep 17 00:00:00 2001 From: Carleton DeTar Date: Wed, 20 Jan 2021 14:19:36 -0700 Subject: [PATCH] Add coord_origin, time_bc, and ILDG strings --- ks_imp_utilities/params.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ks_imp_utilities/params.h b/ks_imp_utilities/params.h index 53c7cb004..95fd5c4ea 100644 --- a/ks_imp_utilities/params.h +++ b/ks_imp_utilities/params.h @@ -29,6 +29,8 @@ typedef struct { int iseed; /* for random numbers */ /* REPEATING BLOCK */ Real u0; /* tadpole parameter */ + int coord_origin[4]; /* Origin of coordinates for KS phases and time_bc */ + int time_bc; /* 0 for antiperiodic, 1 for periodic */ int nmass; /* number of masses */ ks_param ksp[MAX_MASS]; quark_invert_control qic[MAX_MASS]; @@ -49,6 +51,7 @@ typedef struct { char startfile[MAXFILENAME],savefile[MAXFILENAME]; char stringLFN[MAXFILENAME]; /** ILDG LFN if applicable ***/ char savelongfile[MAXFILENAME],savefatfile[MAXFILENAME]; + char stringLFNlong[MAXFILENAME],stringLFNfat[MAXFILENAME]; /** ILDG LFN if applicable ***/ char srcfile[MAX_MASS][MAXFILENAME],ansfile[MAX_MASS][MAXFILENAME]; int inverttype; } params;