Skip to content
Snippets Groups Projects
Commit 0f3d77ed authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13950 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 42968083
No related branches found
No related tags found
No related merge requests found
EXTRAMAKE=Makefile.lammps.empty EXTRAMAKE=Makefile.lammps.empty
CC=h5cc CC=h5cc
CFLAGS=-D_DEFAULT_SOURCE -O2
# -DH5_NO_DEPRECATED_SYMBOLS is required here to ensure we are using
# the v1.8 API when HDF5 is configured to default to using the v1.6 API.
CFLAGS=-D_DEFAULT_SOURCE -O2 -DH5_NO_DEPRECATED_SYMBOLS -Wall
HDF5_PATH=/usr HDF5_PATH=/usr
INC=-I include INC=-I include
AR=ar AR=ar
......
...@@ -57,6 +57,7 @@ h5md_file h5md_create_file (const char *filename, const char *author, const char ...@@ -57,6 +57,7 @@ h5md_file h5md_create_file (const char *filename, const char *author, const char
int h5md_close_file(h5md_file file); int h5md_close_file(h5md_file file);
hid_t h5md_open_file (const char *filename); hid_t h5md_open_file (const char *filename);
h5md_particles_group h5md_create_particles_group(h5md_file file, const char *name); h5md_particles_group h5md_create_particles_group(h5md_file file, const char *name);
hid_t h5md_open_particles_group(hid_t particles, const char *name);
h5md_element h5md_create_time_data(hid_t loc, const char *name, int rank, int int_dims[], hid_t datatype, h5md_element *link); h5md_element h5md_create_time_data(hid_t loc, const char *name, int rank, int int_dims[], hid_t datatype, h5md_element *link);
int h5md_close_element(h5md_element e); int h5md_close_element(h5md_element e);
h5md_element h5md_create_fixed_data_simple(hid_t loc, const char *name, int rank, int int_dims[], hid_t datatype, void *data); h5md_element h5md_create_fixed_data_simple(hid_t loc, const char *name, int rank, int int_dims[], hid_t datatype, void *data);
......
...@@ -137,6 +137,15 @@ h5md_particles_group h5md_create_particles_group(h5md_file file, const char *nam ...@@ -137,6 +137,15 @@ h5md_particles_group h5md_create_particles_group(h5md_file file, const char *nam
return group; return group;
} }
hid_t h5md_open_particles_group(hid_t particles, const char *name)
{
hid_t group;
group = H5Gopen(particles, name, H5P_DEFAULT);
return group;
}
h5md_element h5md_create_time_data(hid_t loc, const char *name, int rank, int int_dims[], hid_t datatype, h5md_element *link) h5md_element h5md_create_time_data(hid_t loc, const char *name, int rank, int int_dims[], hid_t datatype, h5md_element *link)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment