From 12afb0395f20ded5d33850b761259cbbc65f3203 Mon Sep 17 00:00:00 2001 From: Michael Marshall <43034299+mmphys@users.noreply.github.com> Date: Thu, 11 Jul 2019 17:42:26 +0100 Subject: [PATCH] Debugging transposeSpin - seems just not to be implemented for Lattice --- Hadrons/Modules/MContraction/Nucleon.hpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Hadrons/Modules/MContraction/Nucleon.hpp b/Hadrons/Modules/MContraction/Nucleon.hpp index 8f69aaf2..149d53a0 100644 --- a/Hadrons/Modules/MContraction/Nucleon.hpp +++ b/Hadrons/Modules/MContraction/Nucleon.hpp @@ -115,6 +115,11 @@ void TNucleon::setup(void) envTmpLat(LatticeComplex, "diquark"); } +#ifdef DEBUG +template struct DebugShowType { DebugShowType() { T t = (void***) nullptr; } }; +#define DEBUG_SHOW_TYPE(x) DebugShowType __DEBUG_SHOW_TYPE__##x +#endif + // execution /////////////////////////////////////////////////////////////////// template void TNucleon::execute(void) @@ -150,6 +155,18 @@ void TNucleon::execute(void) int c3_snk = epsilon[ie_snk][2]; //c' auto Dcc = peekColour(q1,c1_snk,c1_src); //D_{gamma' gamma} auto Daa = peekColour(q2,c2_snk,c2_src); //D_{alpha' alpha} + // DEBUG Just defining a few types so I can see what these things are + //auto Daa_debug1 = transposeSpin( q1 ); + // Current compilation settings tell me that FImpl is WilsonImplR (see FermionOperatorImpl.h, line 163) + WilsonImplR::PropagatorField &Debug_q_1{ q1 }; + //DEBUG_SHOW_TYPE( q1 ); + // The propagator field is an alias for + Lattice, Ns> >> &Debug_q_2{ q1 }; + // So then Daa is one of these + Lattice, Ns> >> &Debug_Daa_1{ Daa }; + // Which means I should be able to do this + //Lattice, Ns> >> Debug_Daa_2 = transposeSpin(Daa); + // END DEBUG //auto test = transposeSpin(Daa); //Does not work... auto Dbb = peekColour(q3,c3_snk,c3_src); //D_{beta' beta} diquark = trace(Cg5 * Daa * Cg5 * Dbb); //Daa transposed????