From 65731546b7eda85e06f1eabc832748dc38e27713 Mon Sep 17 00:00:00 2001 From: ferben Date: Wed, 13 Feb 2019 11:48:34 +0000 Subject: [PATCH] merge... --- tests/hadrons/Test_hadrons_distil.cc | 30 ++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/tests/hadrons/Test_hadrons_distil.cc b/tests/hadrons/Test_hadrons_distil.cc index ef9465c4..ba8f61b4 100644 --- a/tests/hadrons/Test_hadrons_distil.cc +++ b/tests/hadrons/Test_hadrons_distil.cc @@ -213,7 +213,7 @@ void test_MesonFieldSL(Application &application) application.createModule("DistilMesonFieldS",A2AMesonFieldPar); } ///////////////////////////////////////////////////////////// -// MesonFields +// MesonFields - phiphi ///////////////////////////////////////////////////////////// void test_MesonField(Application &application) @@ -223,7 +223,7 @@ void test_MesonField(Application &application) A2AMesonFieldPar.left="DistilVecs_phi"; //A2AMesonFieldPar.right="DistilVecs_rho"; A2AMesonFieldPar.right="DistilVecs_phi"; - A2AMesonFieldPar.output="MesonSinks"; + A2AMesonFieldPar.output="MesonSinksPhi"; A2AMesonFieldPar.gammas="all"; A2AMesonFieldPar.mom={"0 0 0"}; A2AMesonFieldPar.cacheBlock=2; @@ -231,6 +231,24 @@ void test_MesonField(Application &application) application.createModule("DistilMesonField",A2AMesonFieldPar); } ///////////////////////////////////////////////////////////// +// MesonFields - rhorho +///////////////////////////////////////////////////////////// + +void test_MesonFieldRho(Application &application) +{ + // DistilVectors parameters + MContraction::A2AMesonField::Par A2AMesonFieldPar; + A2AMesonFieldPar.left="DistilVecs_rho"; + //A2AMesonFieldPar.right="DistilVecs_rho"; + A2AMesonFieldPar.right="DistilVecs_rho"; + A2AMesonFieldPar.output="MesonSinksRho"; + A2AMesonFieldPar.gammas="all"; + A2AMesonFieldPar.mom={"0 0 0"}; + A2AMesonFieldPar.cacheBlock=2; + A2AMesonFieldPar.block=4; + application.createModule("DistilMesonFieldRho",A2AMesonFieldPar); +} +///////////////////////////////////////////////////////////// // BaryonFields - phiphiphi ///////////////////////////////////////////////////////////// @@ -657,6 +675,14 @@ int main(int argc, char *argv[]) test_BaryonFieldPhi( application ); test_BaryonFieldRho( application ); break; + case 8: // 3 + test_Global( application ); + test_LapEvec( application ); + test_Perambulators( application ); + test_DistilVectors( application ); + test_MesonField( application ); + test_MesonFieldRho( application ); + break; } LOG(Message) << "====== XML creation for test " << iTestNum << " complete ======" << std::endl;