/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: extras/Hadrons/Modules/MContraction/Meson.hpp Copyright (C) 2015 Copyright (C) 2016 Copyright (C) 2017 Author: Antonin Portelli Andrew Lawson 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 */ #ifndef Hadrons_Meson_hpp_ #define Hadrons_Meson_hpp_ #include #include #include BEGIN_HADRONS_NAMESPACE /* Meson contractions ----------------------------- * options: - q1: input propagator 1 (string) - q2: input propagator 2 (string) - gammas: gamma products to insert at sink & source, pairs of gamma matrices (space-separated strings) in angled brackets (i.e. ), in a sequence (e.g. ""). Special values: "all" - perform all possible contractions. - mom: momentum insertion, space-separated float sequence (e.g ".1 .2 1. 0."), given as multiples of (2*pi) / L. */ /****************************************************************************** * TMeson * ******************************************************************************/ BEGIN_MODULE_NAMESPACE(MContraction) typedef std::pair GammaPair; class MesonPar: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(MesonPar, std::string, q1, std::string, q2, std::string, gammas, std::string, mom, std::string, output); }; template class TMeson: public Module { public: TYPE_ALIASES(FImpl1, 1); TYPE_ALIASES(FImpl2, 2); class Result: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(Result, Gamma::Algebra, gamma_snk, Gamma::Algebra, gamma_src, std::vector, corr); }; public: // constructor TMeson(const std::string name); // destructor virtual ~TMeson(void) = default; // dependencies/products virtual std::vector getInput(void); virtual std::vector getOutput(void); virtual void parseGammaString(std::vector &gammaList); // execution virtual void execute(void); }; MODULE_REGISTER_NS(Meson, ARG(TMeson), MContraction); /****************************************************************************** * TMeson implementation * ******************************************************************************/ // constructor ///////////////////////////////////////////////////////////////// template TMeson::TMeson(const std::string name) : Module(name) {} // dependencies/products /////////////////////////////////////////////////////// template std::vector TMeson::getInput(void) { std::vector input = {par().q1, par().q2}; return input; } template std::vector TMeson::getOutput(void) { std::vector output = {getName()}; return output; } template void TMeson::parseGammaString(std::vector &gammaList) { // Determine gamma matrices to insert at source/sink. if (par().gammas.compare("all") == 0) { // Do all contractions. unsigned int n_gam = Ns * Ns; gammaList.resize(n_gam*n_gam); for (unsigned int i = 1; i < Gamma::nGamma; i += 2) { for (unsigned int j = 1; j < Gamma::nGamma; j += 2) { gammaList.push_back(std::make_pair((Gamma::Algebra)i, (Gamma::Algebra)j)); } } } else { // Parse individual contractions from input string. gammaList = strToVec(par().gammas); } } // execution /////////////////////////////////////////////////////////////////// template void TMeson::execute(void) { LOG(Message) << "Computing meson contractions '" << getName() << "' using" << " quarks '" << par().q1 << "' and '" << par().q2 << "'" << std::endl; CorrWriter writer(par().output); PropagatorField1 &q1 = *env().template getObject(par().q1); PropagatorField2 &q2 = *env().template getObject(par().q2); LatticeComplex c(env().getGrid()); Gamma g5(Gamma::Algebra::Gamma5); std::vector gammaList; std::vector buf; std::vector result; std::vector p; p = strToVec(par().mom); LatticeComplex ph(env().getGrid()), coor(env().getGrid()); Complex i(0.0,1.0); ph = zero; for(unsigned int mu = 0; mu < env().getNd(); mu++) { LatticeCoordinate(coor, mu); ph = ph + p[mu]*coor*((1./(env().getGrid()->_fdimensions[mu]))); } ph = exp((Real)(2*M_PI)*i*ph); parseGammaString(gammaList); result.resize(gammaList.size()); for (unsigned int i = 0; i < result.size(); ++i) { Gamma gSnk(gammaList[i].first); Gamma gSrc(gammaList[i].second); c = trace((g5*gSnk)*q1*(adj(gSrc)*g5)*adj(q2))*ph; sliceSum(c, buf, Tp); result[i].gamma_snk = gammaList[i].first; result[i].gamma_src = gammaList[i].second; result[i].corr.resize(buf.size()); for (unsigned int t = 0; t < buf.size(); ++t) { result[i].corr[t] = TensorRemove(buf[t]); } } write(writer, "meson", result); } END_MODULE_NAMESPACE END_HADRONS_NAMESPACE #endif // Hadrons_Meson_hpp_