Esempio n. 1
0
 /** Closes the HDF5 file. Function usefull only because of the try/catch */
 public static void hdf5_close(H5File h5) {
   try {
     h5.close();
   } catch (HDF5Exception ex) {
     System.out.println("Could not close HDF5 file?");
     ex.printStackTrace();
   }
 }