1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

add fields as input (for scheduler)

This commit is contained in:
Nils Asmussen 2019-05-24 15:57:30 +01:00
parent e43d59045e
commit ab2e5f88cd

View File

@ -54,7 +54,7 @@ TConvolution<FImpl>::TConvolution(const std::string name)
template <typename FImpl>
std::vector<std::string> TConvolution<FImpl>::getInput(void)
{
std::vector<std::string> in;
std::vector<std::string> in = {par().field1, par().field2};
return in;
}