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
|
|
|
|
2017-12-26 13:16:47 +00:00
|
|
|
Copyright (C) 2015-2018
|
2016-12-15 18:26:39 +00:00
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
2017-12-26 13:16:47 +00:00
|
|
|
Author: Lanny91 <andrew.lawson@gmail.com>
|
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>
|
2016-12-05 08:26:57 +00:00
|
|
|
|
|
|
|
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 <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);
|
2016-12-05 08:26:57 +00:00
|
|
|
class Result: Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(Result,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, corr);
|
|
|
|
};
|
|
|
|
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);
|
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);
|
|
|
|
};
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
std::vector<std::string> input = {par().q1, par().q2, par().q3};
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2016-12-05 08:26:57 +00:00
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
|
|
|
template <typename FImpl1, typename FImpl2, typename FImpl3>
|
|
|
|
void TBaryon<FImpl1, FImpl2, FImpl3>::execute(void)
|
|
|
|
{
|
|
|
|
LOG(Message) << "Computing baryon contractions '" << getName() << "' using"
|
|
|
|
<< " quarks '" << par().q1 << "', '" << par().q2 << "', and '"
|
|
|
|
<< par().q3 << "'" << std::endl;
|
|
|
|
|
2017-12-13 19:41:41 +00:00
|
|
|
auto &q1 = envGet(PropagatorField1, par().q1);
|
|
|
|
auto &q2 = envGet(PropagatorField2, par().q2);
|
|
|
|
auto &q3 = envGet(PropagatorField3, par().q2);
|
|
|
|
envGetTmp(LatticeComplex, c);
|
|
|
|
Result result;
|
2016-12-05 08:26:57 +00:00
|
|
|
|
|
|
|
// FIXME: do contractions
|
|
|
|
|
2018-01-23 17:26:50 +00:00
|
|
|
// saveResult(par().output, "meson", 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_
|