From 4f8b1c1940d8755516ac436e099b78890ec85113 Mon Sep 17 00:00:00 2001 From: paboyle Date: Sun, 14 Jan 2018 23:05:23 +0000 Subject: [PATCH] Namespace --- lib/qcd/action/fermion/WilsonFermion.h | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/lib/qcd/action/fermion/WilsonFermion.h b/lib/qcd/action/fermion/WilsonFermion.h index feba40ed..a52d3ada 100644 --- a/lib/qcd/action/fermion/WilsonFermion.h +++ b/lib/qcd/action/fermion/WilsonFermion.h @@ -27,16 +27,14 @@ 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_QCD_WILSON_FERMION_H #define GRID_QCD_WILSON_FERMION_H -namespace Grid { - -namespace QCD { +NAMESPACE_BEGIN(Grid); class WilsonFermionStatic { - public: +public: static int HandOptDslash; // these are a temporary hack static int MortonOrder; static const std::vector directions; @@ -46,7 +44,7 @@ class WilsonFermionStatic { template class WilsonFermion : public WilsonKernels, public WilsonFermionStatic { - public: +public: INHERIT_IMPL_TYPES(Impl); typedef WilsonKernels Kernels; @@ -128,7 +126,7 @@ class WilsonFermion : public WilsonKernels, public WilsonFermionStatic { /////////////////////////////////////////////////////////////// // protected: - public: +public: RealD mass; GridBase *_grid; @@ -167,7 +165,6 @@ class WilsonFermion : public WilsonKernels, public WilsonFermionStatic { typedef WilsonFermion WilsonFermionF; typedef WilsonFermion WilsonFermionD; +NAMESPACE_END(Grid); -} -} #endif