This commit is contained in:
2008-08-20 14:30:31 +00:00
parent a390b30fcb
commit 4f37dbe55a
3 changed files with 74 additions and 0 deletions
+2
View File
@@ -357,6 +357,8 @@ src/H5Fed.h -text
src/H5Fed_adjacency.c -text
src/H5Fed_dof.c -text
src/H5Fed_inquiry.c -text
src/H5Fed_map.c -text
src/H5Fed_map.h -text
src/H5Fed_retrieve.c -text
src/H5Fed_store.c -text
src/H5Part.c -text
+43
View File
@@ -0,0 +1,43 @@
/*
Copyright 2007-2008
Paul Scherrer Institut, Villigen, Switzerland;
Benedikt Oswald;
Achim Gsell
All rights reserved.
Authors
Achim Gsell
Warning
This code is under development.
*/
/*!
\ingroup h5fed_c_api
\defgroup h5fed_map
*/
#include <stdarg.h>
#include <hdf5.h>
#include "h5/h5_core.h"
#include "h5/h5_private.h"
#include "H5Fed.h"
h5_id_t
H5FedMapTet2GlobalID (
h5_file *f,
h5_id_t * const global_vids
) {
SET_FNAME ( __func__ );
return h5t_get_global_entity_id ( f, global_vids );
}
h5_id_t
H5FedMapTriangle2GlobalID (
h5_file *f,
h5_id_t * const global_vids
) {
SET_FNAME ( __func__ );
return h5t_get_global_triangle_id ( f, global_vids );
}
+29
View File
@@ -0,0 +1,29 @@
/*
Header file for declaring the H5Fed application programming
interface (API) in the C language.
Copyright 2006-2007
Paul Scherrer Institut, Villigen, Switzerland;
Benedikt Oswald;
Achim Gsell
All rights reserved.
Authors
Achim Gsell
Warning
This code is under development.
*/
#ifndef __H5FED_MAP_H
#define __H5FED_MAP_H
h5_id_t
H5FedMapTet2GlobalID (
h5_file * const f,
h5_id_t * const global_vids
);
#endif