54 lines
950 B
C
54 lines
950 B
C
/*
|
|
Copyright 2007-2009
|
|
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_core/h5_core.h"
|
|
#include "H5Fed.h"
|
|
|
|
h5_err_t
|
|
H5FedLMapEdgeID2VertexIDs (
|
|
h5_file_t * const f,
|
|
h5_id_t local_id,
|
|
h5_id_t *local_vids
|
|
) {
|
|
SET_FNAME ( f, __func__ );
|
|
return h5t_get_local_vids_of_edge ( f, local_id, local_vids );
|
|
}
|
|
|
|
h5_err_t
|
|
H5FedLMapTriangleID2VertexIDs (
|
|
h5_file_t * const f,
|
|
h5_id_t local_id,
|
|
h5_id_t *local_vids
|
|
) {
|
|
SET_FNAME ( f, __func__ );
|
|
return h5t_get_local_vids_of_triangle ( f, local_id, local_vids );
|
|
}
|
|
|
|
h5_err_t
|
|
H5FedLMapTetID2VertexIDs (
|
|
h5_file_t * const f,
|
|
h5_id_t local_id,
|
|
h5_id_t *local_vids
|
|
) {
|
|
SET_FNAME ( f, __func__ );
|
|
return h5t_get_local_vids_of_tet ( f, local_id, local_vids );
|
|
}
|