From cfc14a7432d41b466676b3c6fc56a1ed30c315ee Mon Sep 17 00:00:00 2001 From: ferben Date: Mon, 25 Feb 2019 12:40:32 +0000 Subject: [PATCH] more adjustments to test --- tests/hadrons/Test_hadrons_distil.cc | 4 +++- tests/hadrons/Test_tesseract.cc | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/tests/hadrons/Test_hadrons_distil.cc b/tests/hadrons/Test_hadrons_distil.cc index 86a3435e..4e502e28 100644 --- a/tests/hadrons/Test_hadrons_distil.cc +++ b/tests/hadrons/Test_hadrons_distil.cc @@ -189,7 +189,8 @@ void test_MesonSink(Application &application) { // DistilVectors parameters MContraction::A2AMesonField::Par A2AMesonFieldPar; - A2AMesonFieldPar.left="Peramb_unsmeared_sink"; + //A2AMesonFieldPar.left="Peramb_unsmeared_sink"; + A2AMesonFieldPar.left="g5phi"; A2AMesonFieldPar.right="Peramb_unsmeared_sink"; A2AMesonFieldPar.output="DistilFields"; A2AMesonFieldPar.gammas="all"; @@ -787,6 +788,7 @@ int main(int argc, char *argv[]) test_Global( application ); test_LapEvec( application ); test_Perambulators( application ); + test_g5_sinks( application ); test_MesonSink( application ); break; case 7: // 3 diff --git a/tests/hadrons/Test_tesseract.cc b/tests/hadrons/Test_tesseract.cc index 7494e369..14f64346 100644 --- a/tests/hadrons/Test_tesseract.cc +++ b/tests/hadrons/Test_tesseract.cc @@ -199,6 +199,21 @@ void test_MesonSink(Application &application) application.createModule("DistilMesonSink",A2AMesonFieldPar); } ///////////////////////////////////////////////////////////// +// g5*unsmeared +///////////////////////////////////////////////////////////// + +void test_g5_sinks(Application &application) +{ + // DistilVectors parameters + MDistil::g5_multiply::Par g5_multiplyPar; + g5_multiplyPar.input="Peramb_unsmeared_sink"; + g5_multiplyPar.nnoise = 1; + g5_multiplyPar.LI=5; + g5_multiplyPar.Ns=4; + g5_multiplyPar.Nt_inv=1; + application.createModule("g5phi",g5_multiplyPar); +} +///////////////////////////////////////////////////////////// // MesonFields /////////////////////////////////////////////////////////////