Hi Fei,
No problem--the metadata used to generate the rays are stored as attributes in the ray HDF5 files. You can see this metadata a few ways. You can look at the HDF5 attributes in the datafile itself:
import h5py
f = h5py.File('ray.h5')
print(f.attrs['light_ray_solution_start'], f.attrs['light_ray_solution_end'])
Or more easily, you can use yt to do it for you:
import yt
ds = yt.load('ray.h5')
print(ds.light_ray_solution)
I hope this helps! I'll try to add this information to our FAQ so others don't run into the same trouble.
Cameron