/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: Hadrons/Modules/MDistil/LoadPerambulator.hpp Copyright (C) 2019 Author: Felix Erben Author: Michael Marshall 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 */ #ifndef Hadrons_MIO_LoadPerambulator_hpp_ #define Hadrons_MIO_LoadPerambulator_hpp_ #include #include #include #include #include BEGIN_HADRONS_NAMESPACE /****************************************************************************** * LoadPerambulator * ******************************************************************************/ BEGIN_MODULE_NAMESPACE(MIO) class LoadPerambulatorPar: Serializable { public: GRID_SERIALIZABLE_CLASS_MEMBERS(LoadPerambulatorPar, std::string, PerambFileName, //stem!!! int, nvec, MDistil::DistilParameters, Distil); }; template class TLoadPerambulator: public Module { public: // constructor TLoadPerambulator(const std::string name); // destructor virtual ~TLoadPerambulator(void) {}; // dependency relation virtual std::vector getInput(void); virtual std::vector getOutput(void); // setup virtual void setup(void); // execution virtual void execute(void); }; MODULE_REGISTER_TMP(LoadPerambulator, TLoadPerambulator, MIO); /****************************************************************************** * TLoadPerambulator implementation * ******************************************************************************/ // constructor ///////////////////////////////////////////////////////////////// template TLoadPerambulator::TLoadPerambulator(const std::string name) : Module(name) {} // dependencies/products /////////////////////////////////////////////////////// template std::vector TLoadPerambulator::getInput(void) { std::vector in; return in; } template std::vector TLoadPerambulator::getOutput(void) { std::vector out = {getName()}; return out; } // setup /////////////////////////////////////////////////////////////////////// template void TLoadPerambulator::setup(void) { DISTIL_PARAMETERS_DEFINE( true ); //std::array sIndexNames{"Nt", "nvec", "LI", "nnoise", "Nt_inv", "SI"}; envCreate(MDistil::Perambulator, getName(), 1, MDistil::PerambIndexNames,Nt,nvec,LI,nnoise,Nt_inv,SI); } // execution /////////////////////////////////////////////////////////////////// template void TLoadPerambulator::execute(void) { auto &perambulator = envGet(MDistil::Perambulator, getName()); const std::string sPerambName{par().PerambFileName + "." + std::to_string(vm().getTrajectory())}; perambulator.read(sPerambName.c_str()); } END_MODULE_NAMESPACE END_HADRONS_NAMESPACE #endif // Hadrons_MIO_LoadPerambulator_hpp_