From 041d9137c03614bd7b69545c467bc082161075ba Mon Sep 17 00:00:00 2001 From: paboyle Date: Sun, 14 Jan 2018 23:48:27 +0000 Subject: [PATCH] Namespace --- lib/qcd/action/ActionSet.h | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/lib/qcd/action/ActionSet.h b/lib/qcd/action/ActionSet.h index 4ed6a582..e45b7a39 100644 --- a/lib/qcd/action/ActionSet.h +++ b/lib/qcd/action/ActionSet.h @@ -26,14 +26,11 @@ 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 ACTION_SET_H #define ACTION_SET_H -namespace Grid { - -// Should drop this namespace here -namespace QCD { +NAMESPACE_BEGIN(Grid); ////////////////////////////////// // Indexing of tuple types @@ -62,7 +59,7 @@ struct Index> { template struct ActionLevel { - public: +public: unsigned int multiplier; // Fundamental repr actions separated because of the smearing @@ -77,7 +74,7 @@ struct ActionLevel { std::vector& actions; explicit ActionLevel(unsigned int mul = 1) : - actions(std::get<0>(actions_hirep)), multiplier(mul) { + actions(std::get<0>(actions_hirep)), multiplier(mul) { // initialize the hirep vectors to zero. // apply(this->resize, actions_hirep, 0); //need a working resize assert(mul >= 1); @@ -110,7 +107,6 @@ struct ActionLevel { template using ActionSet = std::vector >; -} // QCD -} // Grid +NAMESPACE_END(Grid); #endif // ACTION_SET_H