diff --git a/Hadrons/Modules/MDistil/Noises.hpp b/Hadrons/Modules/MDistil/Noises.hpp index e30b2fe1..ef50f03a 100644 --- a/Hadrons/Modules/MDistil/Noises.hpp +++ b/Hadrons/Modules/MDistil/Noises.hpp @@ -25,8 +25,7 @@ public: GRID_SERIALIZABLE_CLASS_MEMBERS(NoisesPar, std::string, UniqueIdentifier, int, nvec, - DistilParameters, Distil, - unsigned int, i); + DistilParameters, Distil); }; template diff --git a/Hadrons/Modules/MIO/LoadPerambulator.hpp b/Hadrons/Modules/MIO/LoadPerambulator.hpp index 891a898a..4d33706a 100644 --- a/Hadrons/Modules/MIO/LoadPerambulator.hpp +++ b/Hadrons/Modules/MIO/LoadPerambulator.hpp @@ -19,7 +19,6 @@ class LoadPerambulatorPar: Serializable public: GRID_SERIALIZABLE_CLASS_MEMBERS(LoadPerambulatorPar, std::string, PerambFileName, //stem!!! - std::string, UniqueIdentifier, int, nvec, MDistil::DistilParameters, Distil); }; @@ -81,7 +80,7 @@ void TLoadPerambulator::setup(void) const int Ns{Distil.Ns}; std::array sIndexNames{"Nt", "nvec", "LI", "nnoise", "Nt_inv", "SI"}; - envCreate(MDistil::Perambulator, getName() + "_perambulator_light", 1, + envCreate(MDistil::Perambulator, getName(), 1, sIndexNames,Distil.Nt,nvec,Distil.LI,Distil.nnoise,Distil.Nt_inv,Distil.SI); } @@ -91,7 +90,7 @@ template void TLoadPerambulator::execute(void) { auto &perambulator = envGet(MDistil::Perambulator, - getName() + "_perambulator_light"); + getName()); const std::string &PerambFileName{par().PerambFileName};