diff --git a/src/NETCDF/dump_netcdf.h b/src/NETCDF/dump_netcdf.h index 8e468692c5..f3a4e81d9c 100644 --- a/src/NETCDF/dump_netcdf.h +++ b/src/NETCDF/dump_netcdf.h @@ -37,16 +37,16 @@ class DumpNetCDF : public DumpCustom { virtual void write(); private: - static constexpr int NC_FIELD_NAME_MAX = 100; - static constexpr int DUMP_NC_MAX_DIMS = 100; + static constexpr int NC_FIELD_NAME_MAX = 100; + static constexpr int DUMP_NC_MAX_DIMS = 100; // per-atoms quantities (positions, velocities, etc.) struct nc_perat_t { - int dims; // number of dimensions - int field[DUMP_NC_MAX_DIMS]; // field indices corresponding to the dim. - char name[NC_FIELD_NAME_MAX]; // field name - int var; // NetCDF variable - int quantity; // type of the quantity + int dims; // number of dimensions + int field[DUMP_NC_MAX_DIMS]; // field indices corresponding to the dim. + char name[NC_FIELD_NAME_MAX]; // field name + int var; // NetCDF variable + int quantity; // type of the quantity bool constant; // is this property per file (not per frame) int ndumped; // number of enties written for this prop.