/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: extras/Hadrons/Modules/MScalarSUN/TwoPoint.hpp Copyright (C) 2015-2018 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_MScalarSUN_TwoPoint_hpp_ #define Hadrons_MScalarSUN_TwoPoint_hpp_ #include #include #include BEGIN_HADRONS_NAMESPACE /****************************************************************************** * 2-pt functions for a given set of operators * ******************************************************************************/ BEGIN_MODULE_NAMESPACE(MScalarSUN) class TwoPointPar: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(TwoPointPar, std::vector, op, std::string, output); }; template class TTwoPoint: public Module { public: typedef typename SImpl::Field Field; typedef typename SImpl::ComplexField ComplexField; class Result: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(Result, std::string, sink, std::string, source, std::vector, data); }; public: // constructor TTwoPoint(const std::string name); // destructor virtual ~TTwoPoint(void) = default; // dependency relation virtual std::vector getInput(void); virtual std::vector getOutput(void); // setup virtual void setup(void); // execution virtual void execute(void); private: // make 2-pt function template std::vector makeTwoPoint(const std::vector &sink, const std::vector &source); }; MODULE_REGISTER_NS(TwoPointSU2, TTwoPoint>, MScalarSUN); MODULE_REGISTER_NS(TwoPointSU3, TTwoPoint>, MScalarSUN); MODULE_REGISTER_NS(TwoPointSU4, TTwoPoint>, MScalarSUN); MODULE_REGISTER_NS(TwoPointSU5, TTwoPoint>, MScalarSUN); MODULE_REGISTER_NS(TwoPointSU6, TTwoPoint>, MScalarSUN); /****************************************************************************** * TTwoPoint implementation * ******************************************************************************/ // constructor ///////////////////////////////////////////////////////////////// template TTwoPoint::TTwoPoint(const std::string name) : Module(name) {} // dependencies/products /////////////////////////////////////////////////////// template std::vector TTwoPoint::getInput(void) { return par().op; } template std::vector TTwoPoint::getOutput(void) { std::vector out = {}; return out; } // setup /////////////////////////////////////////////////////////////////////// template void TTwoPoint::setup(void) { const unsigned int nt = env().getDim().back(); envTmp(std::vector>, "slicedOp", 1, par().op.size(), std::vector(nt)); } // execution /////////////////////////////////////////////////////////////////// template void TTwoPoint::execute(void) { LOG(Message) << "Computing 2-point functions for operators:" << std::endl; for (auto &o: par().op) { LOG(Message) << " '" << o << "'" << std::endl; } ResultWriter writer(RESULT_FILE_NAME(par().output)); const unsigned int nd = env().getDim().size(); std::vector result; envGetTmp(std::vector>, slicedOp); for (unsigned int i = 0; i < par().op.size(); ++i) { auto &op = envGet(ComplexField, par().op[i]); sliceSum(op, slicedOp[i], nd - 1); } for (unsigned int i = 0; i < par().op.size(); ++i) for (unsigned int j = 0; j < par().op.size(); ++j) { Result r; r.sink = par().op[i]; r.source = par().op[j]; r.data = makeTwoPoint(slicedOp[i], slicedOp[j]); result.push_back(r); } write(writer, "twopt", result); } // make 2-pt function ////////////////////////////////////////////////////////// template template std::vector TTwoPoint::makeTwoPoint( const std::vector &sink, const std::vector &source) { assert(sink.size() == source.size()); unsigned int nt = sink.size(); std::vector res(nt, 0.); for (unsigned int dt = 0; dt < nt; ++dt) { for (unsigned int t = 0; t < nt; ++t) { res[dt] += TensorRemove(trace(sink[(t+dt)%nt]*source[t])); } res[dt] *= 1./static_cast(nt); } return res; } END_MODULE_NAMESPACE END_HADRONS_NAMESPACE #endif // Hadrons_MScalarSUN_TwoPoint_hpp_