/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: extras/Hadrons/Modules/MContraction/Baryon.hpp Copyright (C) 2015 Copyright (C) 2016 Author: Antonin Portelli 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_MContraction_Baryon_hpp_ #define Hadrons_MContraction_Baryon_hpp_ #include #include #include BEGIN_HADRONS_NAMESPACE /****************************************************************************** * Baryon * ******************************************************************************/ BEGIN_MODULE_NAMESPACE(MContraction) class BaryonPar: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(BaryonPar, std::string, q1, std::string, q2, std::string, q3, std::string, output); }; template class TBaryon: public Module { public: FERM_TYPE_ALIASES(FImpl1, 1); FERM_TYPE_ALIASES(FImpl2, 2); FERM_TYPE_ALIASES(FImpl3, 3); class Result: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(Result, std::vector>>, corr); }; public: // constructor TBaryon(const std::string name); // destructor virtual ~TBaryon(void) = default; // dependency relation virtual std::vector getInput(void); virtual std::vector getOutput(void); protected: // setup virtual void setup(void); // execution virtual void execute(void); }; MODULE_REGISTER_NS(Baryon, ARG(TBaryon), MContraction); /****************************************************************************** * TBaryon implementation * ******************************************************************************/ // constructor ///////////////////////////////////////////////////////////////// template TBaryon::TBaryon(const std::string name) : Module(name) {} // dependencies/products /////////////////////////////////////////////////////// template std::vector TBaryon::getInput(void) { std::vector input = {par().q1, par().q2, par().q3}; return input; } template std::vector TBaryon::getOutput(void) { std::vector out = {}; return out; } // setup /////////////////////////////////////////////////////////////////////// template void TBaryon::setup(void) { envTmpLat(LatticeComplex, "c"); } // execution /////////////////////////////////////////////////////////////////// template void TBaryon::execute(void) { LOG(Message) << "Computing baryon contractions '" << getName() << "' using" << " quarks '" << par().q1 << "', '" << par().q2 << "', and '" << par().q3 << "'" << std::endl; CorrWriter writer(par().output); auto &q1 = envGet(PropagatorField1, par().q1); auto &q2 = envGet(PropagatorField2, par().q2); auto &q3 = envGet(PropagatorField3, par().q2); envGetTmp(LatticeComplex, c); Result result; // FIXME: do contractions // write(writer, "meson", result); } END_MODULE_NAMESPACE END_HADRONS_NAMESPACE #endif // Hadrons_MContraction_Baryon_hpp_