diff --git a/Grid/qcd/utils/BaryonUtils.h b/Grid/qcd/utils/BaryonUtils.h deleted file mode 100644 index cad547b1..00000000 --- a/Grid/qcd/utils/BaryonUtils.h +++ /dev/null @@ -1,176 +0,0 @@ -/************************************************************************************* - - Grid physics library, www.github.com/paboyle/Grid - - Source file: ./lib/qcd/utils/BaryonUtils.h - - Copyright (C) 2019 - - Author: Felix Erben - Author: Michael Marshall - - 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 */ -#pragma once -//#include -#include - -NAMESPACE_BEGIN(Grid); - -#undef DELTA_F_EQ_2 - -template -class BaryonUtils -{ -public: - typedef typename FImpl::ComplexField ComplexField; - typedef typename FImpl::FermionField FermionField; - typedef typename FImpl::PropagatorField PropagatorField; - - typedef typename FImpl::SitePropagator pobj; - typedef typename FImpl::SiteSpinor vobj; - typedef typename vobj::scalar_object sobj; - typedef typename vobj::scalar_type scalar_type; - typedef typename vobj::vector_type vector_type; - - static void ContractBaryons(const PropagatorField &q1_src, - const PropagatorField &q2_src, - const PropagatorField &q3_src, - const Gamma GammaA, - const Gamma GammaB, - const char quarks_snk[], - const char quarks_src[], - const int parity, - ComplexField &baryon_corr); - -}; - - -template -void BaryonUtils::ContractBaryons(const PropagatorField &q1_src, - const PropagatorField &q2_src, - const PropagatorField &q3_src, - const Gamma GammaA, - const Gamma GammaB, - const char quarks_snk[], - const char quarks_src[], - const int parity, - ComplexField &baryon_corr) -{ - - assert(parity==1 || parity == -1 && "Parity must be +1 or -1"); - - GridBase *grid = q1_src.Grid(); - - Gamma g4(Gamma::Algebra::GammaT); //needed for parity P_\pm = 0.5*(1 \pm \gamma_4) - - std::vector> epsilon = {{0,1,2},{1,2,0},{2,0,1},{0,2,1},{2,1,0},{1,0,2}}; - std::vector epsilon_sgn = {1,1,1,-1,-1,-1}; - std::vector wick_contraction = {0,0,0,0,0,0}; - - for (int ie=0; ie < 6 ; ie++) - if (quarks_src[0] == quarks_snk[epsilon[ie][0]] && quarks_src[1] == quarks_snk[epsilon[ie][1]] && quarks_src[2] == quarks_snk[epsilon[ie][2]]) - wick_contraction[ie]=1; - - typedef typename ComplexField::vector_object vobj; - LatticeView vbaryon_corr{ baryon_corr }; - accelerator_for(ss, grid->oSites(), grid->Nsimd(), { - - LatticeView v1(q1_src); - LatticeView v2(q2_src); - LatticeView v3(q3_src); - auto D1 = v1[ss]; - auto D2 = v2[ss]; - auto D3 = v3[ss]; - - auto gD1a = GammaA * GammaA * D1; - auto gD1b = GammaA * g4 * GammaA * D1; - auto pD1 = 0.5* (gD1a + (double)parity * gD1b); - auto gD3 = GammaB * D3; - - vobj result{ 0 }; - - for (int ie_src=0; ie_src < 6 ; ie_src++){ - int a_src = epsilon[ie_src][0]; //a - int b_src = epsilon[ie_src][1]; //b - int c_src = epsilon[ie_src][2]; //c - for (int ie_snk=0; ie_snk < 6 ; ie_snk++){ - int a_snk = epsilon[ie_snk][0]; //a' - int b_snk = epsilon[ie_snk][1]; //b' - int c_snk = epsilon[ie_snk][2]; //c' - //This is the \delta_{456}^{123} part - if (wick_contraction[0]){ - auto D2g = D2 * GammaB; - for (int alpha_snk=0; alpha_snk