From 12a7216dfee32023f63774dbf47e61f354f68505 Mon Sep 17 00:00:00 2001 From: paboyle Date: Sun, 14 Jan 2018 22:32:29 +0000 Subject: [PATCH] Namespace --- lib/qcd/hmc/HMCRunnerModule.h | 35 ++++++++++++++--------------------- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/lib/qcd/hmc/HMCRunnerModule.h b/lib/qcd/hmc/HMCRunnerModule.h index f595d996..a750cde0 100644 --- a/lib/qcd/hmc/HMCRunnerModule.h +++ b/lib/qcd/hmc/HMCRunnerModule.h @@ -26,19 +26,19 @@ with this program; if not, write to the Free Software Foundation, Inc., See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ -/* END LEGAL */ + /* END LEGAL */ #ifndef HMC_RUNNER_MODULE #define HMC_RUNNER_MODULE -namespace Grid { +NAMESPACE_BEGIN(Grid); // the reader class is necessary here for the automatic initialization of the resources // if we had a virtual reader would have been unecessary template class HMCModule - : public Parametrized< QCD::HMCparameters >, - public HMCModuleBase< QCD::HMCRunnerBase > { - public: + : public Parametrized< QCD::HMCparameters >, + public HMCModuleBase< QCD::HMCRunnerBase > { +public: typedef HMCModuleBase< QCD::HMCRunnerBase > Base; typedef typename Base::Product Product; @@ -55,17 +55,17 @@ class HMCModule return HMCPtr.get(); } - private: +private: virtual void initialize() = 0; }; // Factory template class HMCRunnerModuleFactory - : public Factory < HMCModuleBase< QCD::HMCRunnerBase > , Reader > { - public: - typedef Reader TheReader; - // use SINGLETON FUNCTOR MACRO HERE + : public Factory < HMCModuleBase< QCD::HMCRunnerBase > , Reader > { +public: + typedef Reader TheReader; + // use SINGLETON FUNCTOR MACRO HERE HMCRunnerModuleFactory(const HMCRunnerModuleFactory& e) = delete; void operator=(const HMCRunnerModuleFactory& e) = delete; static HMCRunnerModuleFactory& getInstance(void) { @@ -73,10 +73,10 @@ class HMCRunnerModuleFactory return e; } - private: +private: HMCRunnerModuleFactory(void) = default; std::string obj_type() const { - return std::string(str); + return std::string(str); } }; @@ -123,15 +123,8 @@ class HMCForceGradient: public HMCModule< QCD::GenericHMCRunnerTemplate