mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
#include <Grid/Hadrons/Modules/MScalar/ScalarFV.hpp>
|
|
|
|
using namespace Grid;
|
|
using namespace Hadrons;
|
|
using namespace MScalar;
|
|
|
|
/******************************************************************************
|
|
* TScalarFV implementation *
|
|
******************************************************************************/
|
|
// constructor /////////////////////////////////////////////////////////////////
|
|
TScalarFV::TScalarFV(const std::string name)
|
|
: Module<ScalarFVPar>(name)
|
|
{}
|
|
|
|
// dependencies/products ///////////////////////////////////////////////////////
|
|
std::vector<std::string> TScalarFV::getInput(void)
|
|
{
|
|
std::vector<std::string> in = {par().source, par().emField};
|
|
|
|
return in;
|
|
}
|
|
|
|
std::vector<std::string> TScalarFV::getOutput(void)
|
|
{
|
|
std::vector<std::string> out = {getName()};
|
|
|
|
return out;
|
|
}
|
|
|
|
// setup ///////////////////////////////////////////////////////////////////////
|
|
void TScalarFV::setup(void)
|
|
{
|
|
|
|
}
|
|
|
|
// execution ///////////////////////////////////////////////////////////////////
|
|
void TScalarFV::execute(void)
|
|
{
|
|
|
|
}
|