From d7908c33de7ba7e8a4505998331abe0f278372ad Mon Sep 17 00:00:00 2001 From: ferben Date: Wed, 23 Jan 2019 11:32:53 +0000 Subject: [PATCH] moved hard-coded parameters in DistilVectors to module input --- Hadrons/Modules/MDistil/DistilVectors.hpp | 30 +++++++++++++++-------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/Hadrons/Modules/MDistil/DistilVectors.hpp b/Hadrons/Modules/MDistil/DistilVectors.hpp index 6f71fba9..2aa0d65a 100644 --- a/Hadrons/Modules/MDistil/DistilVectors.hpp +++ b/Hadrons/Modules/MDistil/DistilVectors.hpp @@ -27,7 +27,16 @@ public: std::string, noise, std::string, perambulator, std::string, eigenPack, - bool, multiFile); + bool, multiFile, + int, tsrc, + int, nnoise, + int, LI, + int, SI, + int, TI, + int, nvec, + int, Ns, + int, Nt, + int, Nt_inv); }; template @@ -136,15 +145,16 @@ void TDistilVectors::execute(void) int Ntlocal = grid4d->LocalDimensions()[3]; int Ntfirst = grid4d->LocalStarts()[3]; - int tsrc=0; - int nnoise=1; - int LI=6; - int Ns=4; - int Nt_inv=1; - int Nt=64; - int TI=64; - int nvec=6; - bool full_tdil=true; + int tsrc=par().tsrc; + int nnoise=par().nnoise; + int LI=par().LI; + int Ns=par().Ns; + int Nt_inv=par().Nt_inv; + int Nt=par().Nt; + int TI=par().TI; + int nvec=par().nvec; + + bool full_tdil=(TI==Nt); int vecindex; for (int inoise = 0; inoise < nnoise; inoise++) {