diff --git a/src/astrohack/core/extract_holog.py b/src/astrohack/core/extract_holog.py index 9554fd8e..572940c2 100644 --- a/src/astrohack/core/extract_holog.py +++ b/src/astrohack/core/extract_holog.py @@ -750,9 +750,11 @@ def create_holog_meta_data(holog_file, holog_dict, input_params): @njit(cache=False, nogil=True) def _get_time_index(data_time, i_time, time_axis, half_int): + print(data_time) if i_time == time_axis.shape[0]: return -1 while data_time > time_axis[i_time] + half_int: + print(time_axis[i_time]) i_time += 1 if i_time == time_axis.shape[0]: return -1