2016-02-25 12:07:21 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
2016-05-04 00:30:29 +01:00
|
|
|
Source file: programs/Hadrons/GUnit.cc
|
2016-02-25 12:07:21 +00:00
|
|
|
|
2016-04-30 08:17:04 +01:00
|
|
|
Copyright (C) 2016
|
2016-02-25 12:07:21 +00:00
|
|
|
|
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*******************************************************************************/
|
2015-12-23 14:21:35 +00:00
|
|
|
|
2016-05-04 00:30:29 +01:00
|
|
|
#include <Hadrons/GUnit.hpp>
|
2015-12-23 14:21:35 +00:00
|
|
|
|
|
|
|
using namespace Grid;
|
|
|
|
using namespace Hadrons;
|
|
|
|
|
|
|
|
/******************************************************************************
|
2016-05-04 00:30:29 +01:00
|
|
|
* GUnit implementation *
|
|
|
|
******************************************************************************/
|
2015-12-23 14:21:35 +00:00
|
|
|
// constructor /////////////////////////////////////////////////////////////////
|
2016-05-04 00:30:29 +01:00
|
|
|
GUnit::GUnit(const std::string name)
|
|
|
|
: Module(name)
|
2016-04-30 08:17:04 +01:00
|
|
|
{}
|
|
|
|
|
2016-05-04 00:30:29 +01:00
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
|
|
|
std::vector<std::string> GUnit::getInput(void)
|
2015-12-23 14:21:35 +00:00
|
|
|
{
|
2016-05-04 00:30:29 +01:00
|
|
|
return std::vector<std::string>();
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 00:30:29 +01:00
|
|
|
std::vector<std::string> GUnit::getOutput(void)
|
2015-12-23 14:21:35 +00:00
|
|
|
{
|
2016-05-04 00:30:29 +01:00
|
|
|
std::vector<std::string> out = {getName()};
|
|
|
|
|
|
|
|
return out;
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 00:30:29 +01:00
|
|
|
// allocation //////////////////////////////////////////////////////////////////
|
|
|
|
void GUnit::allocate(Environment &env)
|
2015-12-23 14:21:35 +00:00
|
|
|
{
|
2016-05-04 20:17:27 +01:00
|
|
|
env.create<LatticeGaugeField>(getName());
|
|
|
|
gauge_ = env.get<LatticeGaugeField>(getName());
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 00:30:29 +01:00
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
|
|
|
void GUnit::execute(Environment &env)
|
2015-12-23 14:21:35 +00:00
|
|
|
{
|
2016-05-04 20:17:27 +01:00
|
|
|
LOG(Message) << "Creating unit gauge configuration" << std::endl;
|
2016-05-04 00:30:29 +01:00
|
|
|
SU3::ColdConfiguration(*env.get4dRng(), *gauge_);
|
2015-12-23 14:21:35 +00:00
|
|
|
}
|