1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

Namespace

This commit is contained in:
paboyle 2018-01-14 22:27:32 +00:00
parent c36223055e
commit ae2a6cfc6e

View File

@ -25,7 +25,7 @@ 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 See the full license in the file "LICENSE" in the top level distribution
directory directory
*************************************************************************************/ *************************************************************************************/
/* END LEGAL */ /* END LEGAL */
#ifndef ILDG_CHECKPOINTER #ifndef ILDG_CHECKPOINTER
#define ILDG_CHECKPOINTER #define ILDG_CHECKPOINTER
@ -35,16 +35,15 @@ directory
#include <sstream> #include <sstream>
#include <string> #include <string>
namespace Grid { NAMESPACE_BEGIN(Grid);
namespace QCD {
// Only for Gauge fields // Only for Gauge fields
template <class Implementation> template <class Implementation>
class ILDGHmcCheckpointer : public BaseHmcCheckpointer<Implementation> { class ILDGHmcCheckpointer : public BaseHmcCheckpointer<Implementation> {
private: private:
CheckpointerParameters Params; CheckpointerParameters Params;
public: public:
INHERIT_GIMPL_TYPES(Implementation); INHERIT_GIMPL_TYPES(Implementation);
ILDGHmcCheckpointer(const CheckpointerParameters &Params_) { initialize(Params_); } ILDGHmcCheckpointer(const CheckpointerParameters &Params_) { initialize(Params_); }
@ -113,8 +112,8 @@ class ILDGHmcCheckpointer : public BaseHmcCheckpointer<Implementation> {
<< std::dec << std::endl; << std::dec << std::endl;
}; };
}; };
}
} NAMESPACE_END(Grid);
#endif // HAVE_LIME #endif // HAVE_LIME
#endif // ILDG_CHECKPOINTER #endif // ILDG_CHECKPOINTER