├── .gitignore ├── CMakeLists.txt ├── Documentation VMD parameters ├── LICENSE ├── Makefile ├── README.md ├── cmake ├── COPYING-CMAKE-SCRIPTS └── platform.cmake ├── h5mdplugin.c ├── h5mdtest.c ├── libh5md.c ├── libh5md.h ├── samples ├── binary_mixture.h5 ├── full_vmd_structure.h5 ├── full_vmd_structure_id.h5 ├── full_vmd_structure_image.h5 ├── half_complete_vmd_structure.h5 ├── no_vmd_structure.h5 ├── no_vmd_structure_different_times.h5 └── timedependent_box.h5 └── tests ├── Makefile ├── README ├── libh5md_test.cc ├── libh5md_test.hpp └── libh5md_unittest.cc /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | h5mdtest 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Documentation VMD parameters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/Documentation VMD parameters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/README.md -------------------------------------------------------------------------------- /cmake/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/cmake/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /cmake/platform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/cmake/platform.cmake -------------------------------------------------------------------------------- /h5mdplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/h5mdplugin.c -------------------------------------------------------------------------------- /h5mdtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/h5mdtest.c -------------------------------------------------------------------------------- /libh5md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/libh5md.c -------------------------------------------------------------------------------- /libh5md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/libh5md.h -------------------------------------------------------------------------------- /samples/binary_mixture.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/samples/binary_mixture.h5 -------------------------------------------------------------------------------- /samples/full_vmd_structure.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/samples/full_vmd_structure.h5 -------------------------------------------------------------------------------- /samples/full_vmd_structure_id.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/samples/full_vmd_structure_id.h5 -------------------------------------------------------------------------------- /samples/full_vmd_structure_image.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/samples/full_vmd_structure_image.h5 -------------------------------------------------------------------------------- /samples/half_complete_vmd_structure.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/samples/half_complete_vmd_structure.h5 -------------------------------------------------------------------------------- /samples/no_vmd_structure.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/samples/no_vmd_structure.h5 -------------------------------------------------------------------------------- /samples/no_vmd_structure_different_times.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/samples/no_vmd_structure_different_times.h5 -------------------------------------------------------------------------------- /samples/timedependent_box.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/samples/timedependent_box.h5 -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/tests/README -------------------------------------------------------------------------------- /tests/libh5md_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/tests/libh5md_test.cc -------------------------------------------------------------------------------- /tests/libh5md_test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/tests/libh5md_test.hpp -------------------------------------------------------------------------------- /tests/libh5md_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h5md/VMD-h5mdplugin/HEAD/tests/libh5md_unittest.cc --------------------------------------------------------------------------------