/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: extras/Hadrons/Modules/MContraction/Meson.hpp Copyright (C) 2015 Copyright (C) 2016 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 namespace Grid { // Overload >> to extract gamma pair from "[g1 g2]" string. template inline std::istringstream &operator>>(std::istringstream &sstr, std::pair &buf) { T1 buf1; T2 buf2; char c; sstr >> c >> buf1 >> buf2 >> c; sstr.peek(); buf = std::make_pair(buf1, buf2); return sstr; } } 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 integers) in square brackets (i.e. [g_sink g_src]), in a sequence (e.g. "[15 7][7 15][7 7]"). Special values: "all" - perform all possible contractions. */ /****************************************************************************** * 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, output); }; template class TMeson: public Module { public: TYPE_ALIASES(FImpl1, 1); TYPE_ALIASES(FImpl2, 2); class Result: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(Result, unsigned int, gamma_snk, unsigned int, 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 = 0; i < n_gam; ++i) { for (unsigned int j = 0; j < n_gam; ++j) { gammaList.push_back(std::make_pair(i, 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; XmlWriter writer(par().output); PropagatorField1 &q1 = *env().template getObject(par().q1); PropagatorField2 &q2 = *env().template getObject(par().q2); LatticeComplex c(env().getGrid()); SpinMatrix g[Ns*Ns], g5; std::vector gammaList; std::vector buf; std::vector result; g5 = makeGammaProd(Ns*Ns - 1); for (int i = 0; i < Ns*Ns; ++i) { g[i] = makeGammaProd(i); } parseGammaString(gammaList); result.resize(gammaList.size()); for (unsigned int i = 0; i < result.size(); ++i) { c = trace(g[gammaList[i].first]*q1*g[gammaList[i].second]*g5*adj(q2)*g5); 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[i]); } } END_MODULE_NAMESPACE END_HADRONS_NAMESPACE #endif // Hadrons_Meson_hpp_