/*@@ @header ioutil_Utils.h @date Tue 19 Sep 2000 @author Thomas Radke @desc Function prototypes for setting up slice centers. @history @endhistory @version $Header$ @@*/ #ifndef _IOUTIL_UTILS_H_ #define _IOUTIL_UTILS_H_ #ifdef __cplusplus extern "C" { #endif /* set the slice center for 1D lines */ int IOUtil_1DLines (cGH *GH, int num_dims, int *const origin_index[], CCTK_REAL *const origin_phys[], int *slice_center[]); /* set the slice center for 2D planes */ int IOUtil_2DPlanes (cGH *GH, int num_dims, const int origin_index[], const CCTK_REAL origin_phys[], int slice_center[]); int IOUtil_CreateDirectory (cGH *GH, const char *dirname, int multiple_io_procs, int ioproc); #ifdef __cplusplus } #endif #endif /* _IOUTIL_UTILS_H_ */