mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 07:55:35 +00:00
Emacs happy
This commit is contained in:
parent
be5d70ae6e
commit
6d7bdfb5f5
@ -23,7 +23,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 GRID_ILDGTYPES_IO_H
|
#ifndef GRID_ILDGTYPES_IO_H
|
||||||
#define GRID_ILDGTYPES_IO_H
|
#define GRID_ILDGTYPES_IO_H
|
||||||
|
|
||||||
@ -51,12 +51,12 @@ NAMESPACE_BEGIN(Grid);
|
|||||||
// Unused SCIDAC records names; could move to support this functionality
|
// Unused SCIDAC records names; could move to support this functionality
|
||||||
#define SCIDAC_SITELIST "scidac-sitelist"
|
#define SCIDAC_SITELIST "scidac-sitelist"
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
const int GRID_IO_SINGLEFILE = 0; // hardcode lift from QIO compat
|
const int GRID_IO_SINGLEFILE = 0; // hardcode lift from QIO compat
|
||||||
const int GRID_IO_MULTIFILE = 1; // hardcode lift from QIO compat
|
const int GRID_IO_MULTIFILE = 1; // hardcode lift from QIO compat
|
||||||
const int GRID_IO_FIELD = 0; // hardcode lift from QIO compat
|
const int GRID_IO_FIELD = 0; // hardcode lift from QIO compat
|
||||||
const int GRID_IO_GLOBAL = 1; // hardcode lift from QIO compat
|
const int GRID_IO_GLOBAL = 1; // hardcode lift from QIO compat
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
// QIO uses mandatory "private" records fixed format
|
// QIO uses mandatory "private" records fixed format
|
||||||
@ -74,7 +74,7 @@ struct emptyUserRecord : Serializable {
|
|||||||
// <?xml version="1.0" encoding="UTF-8"?><scidacFile><version>1.1</version><spacetime>4</spacetime><dims>16 16 16 32 </dims><volfmt>0</volfmt></scidacFile>
|
// <?xml version="1.0" encoding="UTF-8"?><scidacFile><version>1.1</version><spacetime>4</spacetime><dims>16 16 16 32 </dims><volfmt>0</volfmt></scidacFile>
|
||||||
////////////////////////
|
////////////////////////
|
||||||
struct scidacFile : Serializable {
|
struct scidacFile : Serializable {
|
||||||
public:
|
public:
|
||||||
GRID_SERIALIZABLE_CLASS_MEMBERS(scidacFile,
|
GRID_SERIALIZABLE_CLASS_MEMBERS(scidacFile,
|
||||||
double, version,
|
double, version,
|
||||||
int, spacetime,
|
int, spacetime,
|
||||||
@ -124,7 +124,7 @@ struct scidacFile : Serializable {
|
|||||||
///////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
struct scidacRecord : Serializable {
|
struct scidacRecord : Serializable {
|
||||||
public:
|
public:
|
||||||
GRID_SERIALIZABLE_CLASS_MEMBERS(scidacRecord,
|
GRID_SERIALIZABLE_CLASS_MEMBERS(scidacRecord,
|
||||||
double, version,
|
double, version,
|
||||||
std::string, date,
|
std::string, date,
|
||||||
@ -159,7 +159,7 @@ public:
|
|||||||
// USQCD info
|
// USQCD info
|
||||||
////////////////////////
|
////////////////////////
|
||||||
struct usqcdInfo : Serializable {
|
struct usqcdInfo : Serializable {
|
||||||
public:
|
public:
|
||||||
GRID_SERIALIZABLE_CLASS_MEMBERS(usqcdInfo,
|
GRID_SERIALIZABLE_CLASS_MEMBERS(usqcdInfo,
|
||||||
double, version,
|
double, version,
|
||||||
double, plaq,
|
double, plaq,
|
||||||
@ -173,7 +173,7 @@ struct usqcdInfo : Serializable {
|
|||||||
// Scidac Checksum
|
// Scidac Checksum
|
||||||
////////////////////////
|
////////////////////////
|
||||||
struct scidacChecksum : Serializable {
|
struct scidacChecksum : Serializable {
|
||||||
public:
|
public:
|
||||||
GRID_SERIALIZABLE_CLASS_MEMBERS(scidacChecksum,
|
GRID_SERIALIZABLE_CLASS_MEMBERS(scidacChecksum,
|
||||||
double, version,
|
double, version,
|
||||||
std::string, suma,
|
std::string, suma,
|
||||||
@ -200,7 +200,7 @@ struct scidacChecksum : Serializable {
|
|||||||
// From http://www.physics.utah.edu/~detar/scidac/qio_2p3.pdf
|
// From http://www.physics.utah.edu/~detar/scidac/qio_2p3.pdf
|
||||||
////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////
|
||||||
struct usqcdPropFile : Serializable {
|
struct usqcdPropFile : Serializable {
|
||||||
public:
|
public:
|
||||||
GRID_SERIALIZABLE_CLASS_MEMBERS(usqcdPropFile,
|
GRID_SERIALIZABLE_CLASS_MEMBERS(usqcdPropFile,
|
||||||
double, version,
|
double, version,
|
||||||
std::string, type,
|
std::string, type,
|
||||||
@ -210,7 +210,7 @@ struct usqcdPropFile : Serializable {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
struct usqcdSourceInfo : Serializable {
|
struct usqcdSourceInfo : Serializable {
|
||||||
public:
|
public:
|
||||||
GRID_SERIALIZABLE_CLASS_MEMBERS(usqcdSourceInfo,
|
GRID_SERIALIZABLE_CLASS_MEMBERS(usqcdSourceInfo,
|
||||||
double, version,
|
double, version,
|
||||||
std::string, info);
|
std::string, info);
|
||||||
@ -219,7 +219,7 @@ struct usqcdSourceInfo : Serializable {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
struct usqcdPropInfo : Serializable {
|
struct usqcdPropInfo : Serializable {
|
||||||
public:
|
public:
|
||||||
GRID_SERIALIZABLE_CLASS_MEMBERS(usqcdPropInfo,
|
GRID_SERIALIZABLE_CLASS_MEMBERS(usqcdPropInfo,
|
||||||
double, version,
|
double, version,
|
||||||
int, spin,
|
int, spin,
|
||||||
|
Loading…
Reference in New Issue
Block a user