1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-28 14:45:56 +01:00

Namespace, indent

This commit is contained in:
paboyle 2018-01-15 00:00:52 +00:00
parent b4bb428d9b
commit c8c1d36710

View File

@ -1,4 +1,4 @@
/************************************************************************************* /*************************************************************************************
Grid physics library, www.github.com/paboyle/Grid Grid physics library, www.github.com/paboyle/Grid
@ -23,15 +23,15 @@ Author: Peter Boyle <paboyle@ph.ed.ac.uk>
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
See the full license in the file "LICENSE" in the top level distribution directory See the full license in the file "LICENSE" in the top level distribution directory
*************************************************************************************/ *************************************************************************************/
/* END LEGAL */ /* END LEGAL */
#ifndef GRID_LATTICE_COORDINATE_H #ifndef GRID_LATTICE_COORDINATE_H
#define GRID_LATTICE_COORDINATE_H #define GRID_LATTICE_COORDINATE_H
namespace Grid { NAMESPACE_BEGIN(Grid);
template<class iobj> inline void LatticeCoordinate(Lattice<iobj> &l,int mu) template<class iobj> inline void LatticeCoordinate(Lattice<iobj> &l,int mu)
{ {
typedef typename iobj::scalar_type scalar_type; typedef typename iobj::scalar_type scalar_type;
typedef typename iobj::vector_type vector_type; typedef typename iobj::vector_type vector_type;
@ -50,11 +50,11 @@ namespace Grid {
merge<vector_type,scalar_type>(vI,mergebuf); merge<vector_type,scalar_type>(vI,mergebuf);
l._odata[o]=vI; l._odata[o]=vI;
} }
}; };
// LatticeCoordinate(); // LatticeCoordinate();
// FIXME for debug; deprecate this; made obscelete by // FIXME for debug; deprecate this; made obscelete by
template<class vobj> void lex_sites(Lattice<vobj> &l){ template<class vobj> void lex_sites(Lattice<vobj> &l){
Real *v_ptr = (Real *)&l._odata[0]; Real *v_ptr = (Real *)&l._odata[0];
size_t o_len = l._grid->oSites(); size_t o_len = l._grid->oSites();
size_t v_len = sizeof(vobj)/sizeof(vRealF); size_t v_len = sizeof(vobj)/sizeof(vRealF);
@ -67,8 +67,7 @@ namespace Grid {
v_ptr[i*v_len*vec_len+j*vec_len+vv+1]= i+vv*500; v_ptr[i*v_len*vec_len+j*vec_len+vv+1]= i+vv*500;
} }
}} }}
}
} }
NAMESPACE_END(Grid);
#endif #endif