2017-01-27 16:58:11 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2019-02-05 18:55:24 +00:00
|
|
|
Source file: Hadrons/Archive/Modules/WeakHamiltonianEye.cc
|
2017-01-27 16:58:11 +00:00
|
|
|
|
2019-02-05 18:55:24 +00:00
|
|
|
Copyright (C) 2015-2019
|
2017-01-27 16:58:11 +00:00
|
|
|
|
2017-12-26 13:16:47 +00:00
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
Author: Lanny91 <andrew.lawson@gmail.com>
|
2017-01-27 16:58:11 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Modules/MContraction/WeakHamiltonianEye.hpp>
|
2017-01-27 16:58:11 +00:00
|
|
|
|
|
|
|
using namespace Grid;
|
|
|
|
using namespace Hadrons;
|
|
|
|
using namespace MContraction;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Weak Hamiltonian current-current contractions, Eye-type.
|
|
|
|
*
|
|
|
|
* These contractions are generated by the Q1 and Q2 operators in the physical
|
|
|
|
* basis (see e.g. Fig 3 of arXiv:1507.03094).
|
|
|
|
*
|
2017-01-30 17:54:21 +00:00
|
|
|
* Schematics: q4 |
|
|
|
|
* /-<-¬ |
|
|
|
|
* / \ | q2 q3
|
|
|
|
* \ / | /----<------*------<----¬
|
|
|
|
* q2 \ / q3 | / /-*-¬ \
|
|
|
|
* /-----<-----* *-----<----¬ | / / \ \
|
|
|
|
* i * H_W * f | i * \ / q4 * f
|
|
|
|
* \ / | \ \->-/ /
|
2017-01-27 16:58:11 +00:00
|
|
|
* \ / | \ /
|
2017-01-30 17:54:21 +00:00
|
|
|
* \---------->---------/ | \----------->----------/
|
2017-01-27 16:58:11 +00:00
|
|
|
* q1 | q1
|
|
|
|
* |
|
|
|
|
* Saucer (S) | Eye (E)
|
|
|
|
*
|
|
|
|
* S: trace(q3*g5*q1*adj(q2)*g5*gL[mu][p_1]*q4*gL[mu][p_2])
|
|
|
|
* E: trace(q3*g5*q1*adj(q2)*g5*gL[mu][p_1])*trace(q4*gL[mu][p_2])
|
2017-07-16 13:43:25 +01:00
|
|
|
*
|
|
|
|
* Note q1 must be sink smeared.
|
2017-01-27 16:58:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* TWeakHamiltonianEye implementation *
|
|
|
|
******************************************************************************/
|
|
|
|
// constructor /////////////////////////////////////////////////////////////////
|
|
|
|
TWeakHamiltonianEye::TWeakHamiltonianEye(const std::string name)
|
|
|
|
: Module<WeakHamiltonianPar>(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
|
|
|
std::vector<std::string> TWeakHamiltonianEye::getInput(void)
|
|
|
|
{
|
2017-01-30 17:54:21 +00:00
|
|
|
std::vector<std::string> in = {par().q1, par().q2, par().q3, par().q4};
|
2017-01-27 16:58:11 +00:00
|
|
|
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> TWeakHamiltonianEye::getOutput(void)
|
|
|
|
{
|
2017-12-13 19:41:41 +00:00
|
|
|
std::vector<std::string> out = {};
|
2017-01-27 16:58:11 +00:00
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// setup ///////////////////////////////////////////////////////////////////////
|
|
|
|
void TWeakHamiltonianEye::setup(void)
|
|
|
|
{
|
2017-12-13 19:41:41 +00:00
|
|
|
unsigned int ndim = env().getNd();
|
|
|
|
|
|
|
|
envTmpLat(LatticeComplex, "expbuf");
|
|
|
|
envTmpLat(PropagatorField, "tmp1");
|
|
|
|
envTmpLat(LatticeComplex, "tmp2");
|
|
|
|
envTmp(std::vector<PropagatorField>, "S_body", 1, ndim, PropagatorField(env().getGrid()));
|
|
|
|
envTmp(std::vector<PropagatorField>, "S_loop", 1, ndim, PropagatorField(env().getGrid()));
|
|
|
|
envTmp(std::vector<LatticeComplex>, "E_body", 1, ndim, LatticeComplex(env().getGrid()));
|
|
|
|
envTmp(std::vector<LatticeComplex>, "E_loop", 1, ndim, LatticeComplex(env().getGrid()));
|
2017-01-27 16:58:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
|
|
|
void TWeakHamiltonianEye::execute(void)
|
|
|
|
{
|
2017-02-06 20:12:30 +00:00
|
|
|
LOG(Message) << "Computing Weak Hamiltonian (Eye type) contractions '"
|
|
|
|
<< getName() << "' using quarks '" << par().q1 << "', '"
|
|
|
|
<< par().q2 << ", '" << par().q3 << "' and '" << par().q4
|
|
|
|
<< "'." << std::endl;
|
|
|
|
|
2017-12-13 19:41:41 +00:00
|
|
|
auto &q1 = envGet(SlicedPropagator, par().q1);
|
|
|
|
auto &q2 = envGet(PropagatorField, par().q2);
|
|
|
|
auto &q3 = envGet(PropagatorField, par().q3);
|
|
|
|
auto &q4 = envGet(PropagatorField, par().q4);
|
|
|
|
Gamma g5 = Gamma(Gamma::Algebra::Gamma5);
|
2017-07-16 13:43:25 +01:00
|
|
|
std::vector<TComplex> corrbuf;
|
|
|
|
std::vector<Result> result(n_eye_diag);
|
|
|
|
unsigned int ndim = env().getNd();
|
2017-02-01 16:33:24 +00:00
|
|
|
|
2017-12-13 19:41:41 +00:00
|
|
|
envGetTmp(LatticeComplex, expbuf);
|
|
|
|
envGetTmp(PropagatorField, tmp1);
|
|
|
|
envGetTmp(LatticeComplex, tmp2);
|
|
|
|
envGetTmp(std::vector<PropagatorField>, S_body);
|
|
|
|
envGetTmp(std::vector<PropagatorField>, S_loop);
|
|
|
|
envGetTmp(std::vector<LatticeComplex>, E_body);
|
|
|
|
envGetTmp(std::vector<LatticeComplex>, E_loop);
|
2017-02-01 16:33:24 +00:00
|
|
|
|
2017-07-16 13:43:25 +01:00
|
|
|
// Get sink timeslice of q1.
|
|
|
|
SitePropagator q1Snk = q1[par().tSnk];
|
|
|
|
|
2017-02-01 16:33:24 +00:00
|
|
|
// Setup for S-type contractions.
|
|
|
|
for (int mu = 0; mu < ndim; ++mu)
|
|
|
|
{
|
2017-07-16 13:43:25 +01:00
|
|
|
S_body[mu] = MAKE_SE_BODY(q1Snk, q2, q3, GammaL(Gamma::gmu[mu]));
|
2017-02-08 12:45:39 +00:00
|
|
|
S_loop[mu] = MAKE_SE_LOOP(q4, GammaL(Gamma::gmu[mu]));
|
2017-02-01 16:33:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Perform S-type contractions.
|
|
|
|
SUM_MU(expbuf, trace(S_body[mu]*S_loop[mu]))
|
|
|
|
MAKE_DIAG(expbuf, corrbuf, result[S_diag], "HW_S")
|
|
|
|
|
|
|
|
// Recycle sub-expressions for E-type contractions.
|
|
|
|
for (unsigned int mu = 0; mu < ndim; ++mu)
|
|
|
|
{
|
|
|
|
E_body[mu] = trace(S_body[mu]);
|
|
|
|
E_loop[mu] = trace(S_loop[mu]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Perform E-type contractions.
|
|
|
|
SUM_MU(expbuf, E_body[mu]*E_loop[mu])
|
|
|
|
MAKE_DIAG(expbuf, corrbuf, result[E_diag], "HW_E")
|
|
|
|
|
2018-01-23 17:26:50 +00:00
|
|
|
// IO
|
|
|
|
saveResult(par().output, "HW_Eye", result);
|
2017-01-27 16:58:11 +00:00
|
|
|
}
|