2016-12-15 18:26:39 +00:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2018-09-01 21:30:30 +01:00
|
|
|
Source file: Hadrons/Modules/MContraction/Baryon.hpp
|
2016-12-15 18:26:39 +00:00
|
|
|
|
2019-02-05 18:55:24 +00:00
|
|
|
Copyright (C) 2015-2019
|
2016-12-15 18:26:39 +00:00
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
2019-09-16 17:20:54 +01:00
|
|
|
Author: Felix Erben <felix.erben@ed.ac.uk>
|
2016-12-15 18:26:39 +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 */
|
|
|
|
|
2017-06-06 17:45:30 +01:00
|
|
|
#ifndef Hadrons_MContraction_Baryon_hpp_
|
|
|
|
#define Hadrons_MContraction_Baryon_hpp_
|
2016-12-05 08:26:57 +00:00
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Global.hpp>
|
|
|
|
#include <Hadrons/Module.hpp>
|
|
|
|
#include <Hadrons/ModuleFactory.hpp>
|
2019-09-16 17:20:54 +01:00
|
|
|
#include <Grid/qcd/utils/BaryonUtils.h>
|
2016-12-05 08:26:57 +00:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* Baryon *
|
|
|
|
******************************************************************************/
|
|
|
|
BEGIN_MODULE_NAMESPACE(MContraction)
|
|
|
|
|
2019-10-09 14:52:33 +01:00
|
|
|
typedef std::pair<Gamma::Algebra, Gamma::Algebra> GammaAB;
|
|
|
|
typedef std::pair<GammaAB, GammaAB> GammaABPair;
|
|
|
|
|
2016-12-05 08:26:57 +00:00
|
|
|
class BaryonPar: Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(BaryonPar,
|
2019-10-02 16:14:06 +01:00
|
|
|
std::string, q1,
|
|
|
|
std::string, q2,
|
|
|
|
std::string, q3,
|
2019-10-09 14:52:33 +01:00
|
|
|
std::string, gammas,
|
2019-10-02 16:14:06 +01:00
|
|
|
std::string, quarks,
|
|
|
|
std::string, prefactors,
|
|
|
|
std::string, parity,
|
2019-09-26 13:33:49 +01:00
|
|
|
std::string, sink,
|
2016-12-05 08:26:57 +00:00
|
|
|
std::string, output);
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename FImpl1, typename FImpl2, typename FImpl3>
|
|
|
|
class TBaryon: public Module<BaryonPar>
|
|
|
|
{
|
|
|
|
public:
|
2017-06-06 17:45:30 +01:00
|
|
|
FERM_TYPE_ALIASES(FImpl1, 1);
|
|
|
|
FERM_TYPE_ALIASES(FImpl2, 2);
|
|
|
|
FERM_TYPE_ALIASES(FImpl3, 3);
|
2019-09-26 13:33:49 +01:00
|
|
|
BASIC_TYPE_ALIASES(ScalarImplCR, Scalar);
|
|
|
|
SINK_TYPE_ALIASES(Scalar);
|
2019-10-15 18:48:51 +01:00
|
|
|
class Metadata: Serializable
|
2016-12-05 08:26:57 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-10-15 18:48:51 +01:00
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(Metadata,
|
2019-10-09 14:52:33 +01:00
|
|
|
Gamma::Algebra, gammaA_left,
|
|
|
|
Gamma::Algebra, gammaB_left,
|
|
|
|
Gamma::Algebra, gammaA_right,
|
|
|
|
Gamma::Algebra, gammaB_right,
|
2019-10-08 13:19:47 +01:00
|
|
|
std::string, quarks,
|
|
|
|
std::string, prefactors,
|
2019-10-15 18:48:51 +01:00
|
|
|
int, parity);
|
2016-12-05 08:26:57 +00:00
|
|
|
};
|
2019-10-15 18:48:51 +01:00
|
|
|
typedef Correlator<Metadata> Result;
|
2016-12-05 08:26:57 +00:00
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
TBaryon(const std::string name);
|
|
|
|
// destructor
|
2018-04-24 17:20:25 +01:00
|
|
|
virtual ~TBaryon(void) {};
|
2016-12-05 08:26:57 +00:00
|
|
|
// dependency relation
|
|
|
|
virtual std::vector<std::string> getInput(void);
|
|
|
|
virtual std::vector<std::string> getOutput(void);
|
2019-10-09 14:52:33 +01:00
|
|
|
virtual void parseGammaString(std::vector<GammaABPair> &gammaList);
|
2017-12-03 18:46:18 +00:00
|
|
|
protected:
|
2017-12-13 19:41:41 +00:00
|
|
|
// setup
|
|
|
|
virtual void setup(void);
|
2016-12-05 08:26:57 +00:00
|
|
|
// execution
|
|
|
|
virtual void execute(void);
|
2019-09-16 17:20:54 +01:00
|
|
|
// Which gamma algebra was specified
|
|
|
|
Gamma::Algebra al;
|
2016-12-05 08:26:57 +00:00
|
|
|
};
|
|
|
|
|
2018-04-23 17:35:01 +01:00
|
|
|
MODULE_REGISTER_TMP(Baryon, ARG(TBaryon<FIMPL, FIMPL, FIMPL>), MContraction);
|
2016-12-05 08:26:57 +00:00
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* TBaryon implementation *
|
|
|
|
******************************************************************************/
|
|
|
|
// constructor /////////////////////////////////////////////////////////////////
|
|
|
|
template <typename FImpl1, typename FImpl2, typename FImpl3>
|
|
|
|
TBaryon<FImpl1, FImpl2, FImpl3>::TBaryon(const std::string name)
|
|
|
|
: Module<BaryonPar>(name)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
|
|
|
template <typename FImpl1, typename FImpl2, typename FImpl3>
|
|
|
|
std::vector<std::string> TBaryon<FImpl1, FImpl2, FImpl3>::getInput(void)
|
|
|
|
{
|
2019-10-02 16:14:06 +01:00
|
|
|
std::vector<std::string> input = {par().q1, par().q2, par().q3, par().sink};
|
2016-12-05 08:26:57 +00:00
|
|
|
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename FImpl1, typename FImpl2, typename FImpl3>
|
|
|
|
std::vector<std::string> TBaryon<FImpl1, FImpl2, FImpl3>::getOutput(void)
|
|
|
|
{
|
2017-12-13 19:41:41 +00:00
|
|
|
std::vector<std::string> out = {};
|
2016-12-05 08:26:57 +00:00
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2019-10-09 14:52:33 +01:00
|
|
|
template <typename FImpl1, typename FImpl2, typename FImpl3>
|
|
|
|
void TBaryon<FImpl1, FImpl2,FImpl3>::parseGammaString(std::vector<GammaABPair> &gammaList)
|
|
|
|
{
|
|
|
|
gammaList.clear();
|
|
|
|
|
|
|
|
std::string gammaString = par().gammas;
|
|
|
|
//Shorthands for standard baryon operators
|
2019-10-09 17:56:09 +01:00
|
|
|
gammaString = regex_replace(gammaString, std::regex("j12"),"(Identity SigmaXZ)");
|
2019-10-15 18:48:51 +01:00
|
|
|
gammaString = regex_replace(gammaString, std::regex("j32X"),"(Identity MinusGammaZGamma5)");
|
2019-10-09 17:56:09 +01:00
|
|
|
gammaString = regex_replace(gammaString, std::regex("j32Y"),"(Identity GammaT)");
|
|
|
|
gammaString = regex_replace(gammaString, std::regex("j32Z"),"(Identity GammaXGamma5)");
|
2019-10-09 14:52:33 +01:00
|
|
|
//Shorthands for less common baryon operators
|
2019-10-15 18:48:51 +01:00
|
|
|
gammaString = regex_replace(gammaString, std::regex("j12_alt1"),"(Gamma5 MinusSigmaYT)");
|
2019-10-09 17:56:09 +01:00
|
|
|
gammaString = regex_replace(gammaString, std::regex("j12_alt2"),"(Identity GammaYGamma5)");
|
|
|
|
|
|
|
|
//A single gamma matrix
|
|
|
|
std::regex rex_g("([0-9a-zA-Z]+)");
|
|
|
|
//The full string we expect
|
|
|
|
std::regex rex("( *\\(( *\\(([0-9a-zA-Z]+) +([0-9a-zA-Z]+) *\\)){2} *\\) *)+");
|
|
|
|
std::smatch sm;
|
|
|
|
std::regex_match(gammaString, sm, rex);
|
|
|
|
assert(sm[0].matched && "invalid gamma structure.");
|
|
|
|
|
|
|
|
auto gamma_begin = std::sregex_iterator(gammaString.begin(), gammaString.end(), rex_g);
|
|
|
|
auto gamma_end = std::sregex_iterator();
|
|
|
|
|
2019-10-15 18:48:51 +01:00
|
|
|
int nGamma = std::distance(gamma_begin, gamma_end);
|
2019-10-09 17:56:09 +01:00
|
|
|
//couldn't find out how to count the size in the iterator, other than looping through it...
|
2019-10-15 18:48:51 +01:00
|
|
|
/* int nGamma=0;
|
2019-10-09 17:56:09 +01:00
|
|
|
for (std::sregex_iterator i = gamma_begin; i != gamma_end; ++i) {
|
|
|
|
nGamma++;
|
2019-10-15 18:48:51 +01:00
|
|
|
}
|
|
|
|
*/
|
2019-10-09 17:56:09 +01:00
|
|
|
gammaList.resize(nGamma/4);
|
|
|
|
std::vector<std::string> gS;
|
|
|
|
gS.resize(nGamma);
|
|
|
|
//even more ugly workarounds here...
|
|
|
|
int iG=0;
|
|
|
|
for (std::sregex_iterator i = gamma_begin; i != gamma_end; ++i) {
|
|
|
|
std::smatch match = *i;
|
|
|
|
gS[iG] = match.str();
|
|
|
|
iG++;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < gammaList.size(); i++){
|
|
|
|
std::vector<Gamma::Algebra> gS1 = strToVec<Gamma::Algebra>(gS[4*i]);
|
|
|
|
std::vector<Gamma::Algebra> gS2 = strToVec<Gamma::Algebra>(gS[4*i+1]);
|
|
|
|
std::vector<Gamma::Algebra> gS3 = strToVec<Gamma::Algebra>(gS[4*i+2]);
|
|
|
|
std::vector<Gamma::Algebra> gS4 = strToVec<Gamma::Algebra>(gS[4*i+3]);
|
|
|
|
gammaList[i].first.first=gS1[0];
|
|
|
|
gammaList[i].first.second=gS2[0];
|
|
|
|
gammaList[i].second.first=gS3[0];
|
|
|
|
gammaList[i].second.second=gS4[0];
|
2019-10-09 14:52:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 19:41:41 +00:00
|
|
|
// setup ///////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename FImpl1, typename FImpl2, typename FImpl3>
|
|
|
|
void TBaryon<FImpl1, FImpl2, FImpl3>::setup(void)
|
|
|
|
{
|
|
|
|
envTmpLat(LatticeComplex, "c");
|
2019-10-02 11:36:39 +01:00
|
|
|
envTmpLat(LatticeComplex, "c2");
|
2017-12-13 19:41:41 +00:00
|
|
|
}
|
|
|
|
|
2016-12-05 08:26:57 +00:00
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
|
|
|
template <typename FImpl1, typename FImpl2, typename FImpl3>
|
|
|
|
void TBaryon<FImpl1, FImpl2, FImpl3>::execute(void)
|
|
|
|
{
|
2019-10-02 11:36:39 +01:00
|
|
|
|
2019-10-02 16:14:06 +01:00
|
|
|
std::vector<std::string> quarks = strToVec<std::string>(par().quarks);
|
|
|
|
std::vector<double> prefactors = strToVec<double>(par().prefactors);
|
2019-10-02 11:36:39 +01:00
|
|
|
int nQ=quarks.size();
|
2019-10-02 16:14:06 +01:00
|
|
|
const int parity {par().parity.size()>0 ? std::stoi(par().parity) : 1};
|
|
|
|
|
2019-10-09 14:52:33 +01:00
|
|
|
std::vector<GammaABPair> gammaList;
|
|
|
|
parseGammaString(gammaList);
|
|
|
|
|
2019-10-02 16:14:06 +01:00
|
|
|
assert(prefactors.size()==nQ && "number of prefactors needs to match number of quark-structures.");
|
|
|
|
for (int iQ = 0; iQ < nQ; iQ++)
|
|
|
|
assert(quarks[iQ].size()==3 && "quark-structures must consist of 3 quarks each.");
|
2019-10-02 11:36:39 +01:00
|
|
|
|
2019-10-02 16:14:06 +01:00
|
|
|
LOG(Message) << "Computing baryon contractions '" << getName() << "'" << std::endl;
|
|
|
|
for (int iQ1 = 0; iQ1 < nQ; iQ1++)
|
|
|
|
for (int iQ2 = 0; iQ2 < nQ; iQ2++)
|
|
|
|
LOG(Message) << prefactors[iQ1]*prefactors[iQ2] << "*<" << quarks[iQ1] << "|" << quarks[iQ2] << ">" << std::endl;
|
2019-10-09 14:52:33 +01:00
|
|
|
LOG(Message) << " using quarks " << par().q1 << "', " << par().q2 << "', and '" << par().q3 << std::endl;
|
|
|
|
for (int iG = 0; iG < gammaList.size(); iG++)
|
|
|
|
LOG(Message) << "' with (Gamma^A,Gamma^B)_left = ( " << gammaList[iG].first.first << " , " << gammaList[iG].first.second << "') and (Gamma^A,Gamma^B)_right = ( " << gammaList[iG].second.first << " , " << gammaList[iG].second.second << ")" << std::endl;
|
|
|
|
LOG(Message) << "and parity " << parity << " using sink " << par().sink << "." << std::endl;
|
2019-10-08 13:19:47 +01:00
|
|
|
|
2017-12-13 19:41:41 +00:00
|
|
|
envGetTmp(LatticeComplex, c);
|
2019-10-02 11:36:39 +01:00
|
|
|
envGetTmp(LatticeComplex, c2);
|
2019-09-16 17:20:54 +01:00
|
|
|
int nt = env().getDim(Tp);
|
|
|
|
std::vector<TComplex> buf;
|
2019-09-30 13:55:26 +01:00
|
|
|
TComplex cs;
|
2019-10-02 11:36:39 +01:00
|
|
|
TComplex ch;
|
2019-09-26 13:33:49 +01:00
|
|
|
|
2019-10-15 18:48:51 +01:00
|
|
|
std::vector<Result> result;
|
|
|
|
Result r;
|
|
|
|
r.info.parity = parity;
|
|
|
|
r.info.quarks = par().quarks;
|
|
|
|
r.info.prefactors = par().prefactors;
|
2019-10-08 13:19:47 +01:00
|
|
|
|
2019-10-02 16:14:06 +01:00
|
|
|
if (envHasType(SlicedPropagator1, par().q1) and
|
|
|
|
envHasType(SlicedPropagator2, par().q2) and
|
|
|
|
envHasType(SlicedPropagator3, par().q3))
|
2019-09-27 15:08:56 +01:00
|
|
|
{
|
2019-10-02 16:14:06 +01:00
|
|
|
auto &q1 = envGet(SlicedPropagator1, par().q1);
|
|
|
|
auto &q2 = envGet(SlicedPropagator2, par().q2);
|
|
|
|
auto &q3 = envGet(SlicedPropagator3, par().q3);
|
2019-10-15 18:48:51 +01:00
|
|
|
for (unsigned int i = 0; i < gammaList.size(); ++i)
|
2019-09-27 15:08:56 +01:00
|
|
|
{
|
2019-10-15 18:48:51 +01:00
|
|
|
r.info.gammaA_left = gammaList[i].first.first;
|
|
|
|
r.info.gammaB_left = gammaList[i].first.second;
|
|
|
|
r.info.gammaA_right = gammaList[i].second.first;
|
|
|
|
r.info.gammaB_right = gammaList[i].second.second;
|
|
|
|
|
2019-10-09 14:52:33 +01:00
|
|
|
Gamma gAl(gammaList[i].first.first);
|
|
|
|
Gamma gBl(gammaList[i].first.second);
|
|
|
|
Gamma gAr(gammaList[i].second.first);
|
|
|
|
Gamma gBr(gammaList[i].second.second);
|
|
|
|
|
|
|
|
LOG(Message) << "(propagator already sinked)" << std::endl;
|
2019-10-15 18:48:51 +01:00
|
|
|
r.corr.clear();
|
2019-10-09 14:52:33 +01:00
|
|
|
for (unsigned int t = 0; t < buf.size(); ++t)
|
|
|
|
{
|
|
|
|
cs = Zero();
|
|
|
|
for (int iQ1 = 0; iQ1 < nQ; iQ1++){
|
|
|
|
for (int iQ2 = 0; iQ2 < nQ; iQ2++){
|
|
|
|
BaryonUtils<FIMPL>::ContractBaryons_Sliced(q1[t],q2[t],q3[t],gAl,gBl,gAr,gBr,quarks[iQ1].c_str(),quarks[iQ2].c_str(),parity,ch);
|
|
|
|
cs += prefactors[iQ1]*prefactors[iQ2]*ch;
|
|
|
|
}
|
2019-10-02 11:36:39 +01:00
|
|
|
}
|
2019-10-15 18:48:51 +01:00
|
|
|
r.corr.push_back(TensorRemove(cs));
|
2019-10-02 11:36:39 +01:00
|
|
|
}
|
2019-10-15 18:48:51 +01:00
|
|
|
result.push_back(r);
|
2019-09-27 15:08:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2019-09-16 17:20:54 +01:00
|
|
|
{
|
2019-10-09 14:52:33 +01:00
|
|
|
auto &q1 = envGet(PropagatorField1, par().q1);
|
|
|
|
auto &q2 = envGet(PropagatorField2, par().q2);
|
|
|
|
auto &q3 = envGet(PropagatorField3, par().q3);
|
2019-10-15 18:48:51 +01:00
|
|
|
for (unsigned int i = 0; i < gammaList.size(); ++i)
|
2019-09-27 15:08:56 +01:00
|
|
|
{
|
2019-10-15 18:48:51 +01:00
|
|
|
r.info.gammaA_left = gammaList[i].first.first;
|
|
|
|
r.info.gammaB_left = gammaList[i].first.second;
|
|
|
|
r.info.gammaA_right = gammaList[i].second.first;
|
|
|
|
r.info.gammaB_right = gammaList[i].second.second;
|
|
|
|
|
2019-10-09 14:52:33 +01:00
|
|
|
Gamma gAl(gammaList[i].first.first);
|
|
|
|
Gamma gBl(gammaList[i].first.second);
|
|
|
|
Gamma gAr(gammaList[i].second.first);
|
|
|
|
Gamma gBr(gammaList[i].second.second);
|
|
|
|
|
|
|
|
std::string ns;
|
|
|
|
|
|
|
|
ns = vm().getModuleNamespace(env().getObjectModule(par().sink));
|
|
|
|
if (ns == "MSource")
|
|
|
|
{
|
|
|
|
c=Zero();
|
|
|
|
for (int iQ1 = 0; iQ1 < nQ; iQ1++){
|
|
|
|
for (int iQ2 = 0; iQ2 < nQ; iQ2++){
|
|
|
|
BaryonUtils<FIMPL>::ContractBaryons(q1,q2,q3,gAl,gBl,gAr,gBr,quarks[iQ1].c_str(),quarks[iQ2].c_str(),parity,c2);
|
|
|
|
c+=prefactors[iQ1]*prefactors[iQ2]*c2;
|
|
|
|
}
|
2019-10-02 11:36:39 +01:00
|
|
|
}
|
2019-10-09 14:52:33 +01:00
|
|
|
PropagatorField1 &sink = envGet(PropagatorField1, par().sink);
|
|
|
|
auto test = closure(trace(sink*c));
|
|
|
|
sliceSum(test, buf, Tp);
|
2019-10-02 11:36:39 +01:00
|
|
|
}
|
2019-10-09 14:52:33 +01:00
|
|
|
else if (ns == "MSink")
|
|
|
|
{
|
|
|
|
c=Zero();
|
|
|
|
for (int iQ1 = 0; iQ1 < nQ; iQ1++){
|
|
|
|
for (int iQ2 = 0; iQ2 < nQ; iQ2++){
|
|
|
|
BaryonUtils<FIMPL>::ContractBaryons(q1,q2,q3,gAl,gBl,gAr,gBr,quarks[iQ1].c_str(),quarks[iQ2].c_str(),parity,c2);
|
|
|
|
c+=prefactors[iQ1]*prefactors[iQ2]*c2;
|
|
|
|
}
|
2019-10-02 11:36:39 +01:00
|
|
|
}
|
2019-10-09 14:52:33 +01:00
|
|
|
SinkFnScalar &sink = envGet(SinkFnScalar, par().sink);
|
|
|
|
buf = sink(c);
|
|
|
|
}
|
2019-10-15 18:48:51 +01:00
|
|
|
r.corr.clear();
|
2019-10-09 14:52:33 +01:00
|
|
|
for (unsigned int t = 0; t < buf.size(); ++t)
|
|
|
|
{
|
2019-10-15 18:48:51 +01:00
|
|
|
r.corr.push_back(TensorRemove(buf[t]));
|
2019-10-02 11:36:39 +01:00
|
|
|
}
|
2019-10-15 18:48:51 +01:00
|
|
|
result.push_back(r);
|
2019-09-27 15:08:56 +01:00
|
|
|
}
|
2019-09-16 17:20:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
saveResult(par().output, "baryon", result);
|
|
|
|
|
2016-12-05 08:26:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
END_MODULE_NAMESPACE
|
|
|
|
|
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
2017-06-06 17:45:30 +01:00
|
|
|
#endif // Hadrons_MContraction_Baryon_hpp_
|