2016-12-05 04:53:31 +00:00
|
|
|
#include <Grid/Hadrons/Modules/___FILEBASENAME___.hpp>
|
2016-05-10 20:12:48 +01:00
|
|
|
|
|
|
|
using namespace Grid;
|
|
|
|
using namespace Hadrons;
|
|
|
|
|
|
|
|
/******************************************************************************
|
2016-12-14 18:19:46 +00:00
|
|
|
* T___FILEBASENAME___ implementation *
|
2016-05-10 20:12:48 +01:00
|
|
|
******************************************************************************/
|
|
|
|
// constructor /////////////////////////////////////////////////////////////////
|
2016-12-14 18:19:46 +00:00
|
|
|
T___FILEBASENAME___::T___FILEBASENAME___(const std::string name)
|
2016-05-12 18:33:08 +01:00
|
|
|
: Module<___FILEBASENAME___Par>(name)
|
2016-05-10 20:12:48 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
2016-12-14 18:19:46 +00:00
|
|
|
std::vector<std::string> T___FILEBASENAME___::getInput(void)
|
2016-05-10 20:12:48 +01:00
|
|
|
{
|
|
|
|
std::vector<std::string> in;
|
|
|
|
|
|
|
|
return in;
|
|
|
|
}
|
|
|
|
|
2016-12-14 18:19:46 +00:00
|
|
|
std::vector<std::string> T___FILEBASENAME___::getOutput(void)
|
2016-05-10 20:12:48 +01:00
|
|
|
{
|
|
|
|
std::vector<std::string> out = {getName()};
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
// setup ///////////////////////////////////////////////////////////////////////
|
2016-12-14 18:19:46 +00:00
|
|
|
void T___FILEBASENAME___::setup(void)
|
2016-05-10 20:12:48 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
2016-12-14 18:19:46 +00:00
|
|
|
void T___FILEBASENAME___::execute(void)
|
2016-05-10 20:12:48 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|