From 2f38fe8d459fa6210798be3af4f9d5b913beff89 Mon Sep 17 00:00:00 2001 From: paboyle Date: Sun, 14 Jan 2018 22:35:24 +0000 Subject: [PATCH] Namespace --- lib/qcd/hmc/HMCModules.h | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/lib/qcd/hmc/HMCModules.h b/lib/qcd/hmc/HMCModules.h index 8b9b0479..4c61a006 100644 --- a/lib/qcd/hmc/HMCModules.h +++ b/lib/qcd/hmc/HMCModules.h @@ -26,21 +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 GRID_HMC_MODULES #define GRID_HMC_MODULES - #include "HMC_GridModules.h" -namespace Grid { -namespace QCD { +NAMESPACE_BEGIN(Grid); //////////////////////////////////////////////////////////////////// struct RNGModuleParameters: Serializable { GRID_SERIALIZABLE_CLASS_MEMBERS(RNGModuleParameters, - std::string, serial_seeds, - std::string, parallel_seeds,); + std::string, serial_seeds, + std::string, parallel_seeds,); std::vector getSerialSeeds(){return strToVec(serial_seeds);} std::vector getParallelSeeds(){return strToVec(parallel_seeds);} @@ -56,9 +54,9 @@ struct RNGModuleParameters: Serializable { // Random number generators module class RNGModule{ - GridSerialRNG sRNG_; - std::unique_ptr pRNG_; - RNGModuleParameters Params_; + GridSerialRNG sRNG_; + std::unique_ptr pRNG_; + RNGModuleParameters Params_; public: @@ -93,19 +91,16 @@ public: /// Smearing module template class SmearingModule{ - virtual void get_smearing(); +virtual void get_smearing(); }; template class StoutSmearingModule: public SmearingModule{ - SmearedConfiguration SmearingPolicy; +SmearedConfiguration SmearingPolicy; }; */ - - -} // namespace QCD -} // namespace Grid +NAMESPACE_END(Grid); #endif // GRID_HMC_MODULES