From 64bf6fe54e1cea89d2c5c1d5976269ab44eefd5b Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Wed, 4 May 2016 12:14:38 -0700 Subject: [PATCH] macro to dump NERSC header to a stream --- lib/parallelIO/NerscIO.h | 53 ++++++++++++++++++++-------------------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/lib/parallelIO/NerscIO.h b/lib/parallelIO/NerscIO.h index 9c280397..79572539 100644 --- a/lib/parallelIO/NerscIO.h +++ b/lib/parallelIO/NerscIO.h @@ -213,37 +213,38 @@ class NerscIO : public BinaryIO { static inline void truncate(std::string file){ std::ofstream fout(file,std::ios::out); } + + #define dump_nersc_header(field, s)\ + s << "BEGIN_HEADER" << std::endl;\ + s << "HDR_VERSION = " << field.hdr_version << std::endl;\ + s << "DATATYPE = " << field.data_type << std::endl;\ + s << "STORAGE_FORMAT = " << field.storage_format << std::endl;\ + for(int i=0;i<4;i++){\ + s << "DIMENSION_" << i+1 << " = " << field.dimension[i] << std::endl ;\ + }\ + s << "LINK_TRACE = " << std::setprecision(10) << field.link_trace << std::endl;\ + s << "PLAQUETTE = " << std::setprecision(10) << field.plaquette << std::endl;\ + for(int i=0;i<4;i++){\ + s << "BOUNDARY_"<