_NAME_ get_request_times_for_days_evt_cycles _PROTOTYPE_ result = get_request_times_for_days_evt_cycles(day1996, instrumentID) _SHORT-DESCRIPTION_ Get a list of times which can be used to iteratively retrieve a day's worth of event data _DESCRIPTION_ Get a list of times which can be used to iteratively retrieve a day's worth of event data with no possibility of getting overlapping data when using this routine to retrieve data over many days. These times *are not* data time stamps because actually getting the time stamps would be just as time consuming as a full read of the data. _SHORT-CODE-SAMPLE_ instrumentID = 's' for day1996 = 695, 730, do begin timeList = get_request_times_for_days_evt_cycles(day1996, instrumentID) i = 0 while (timeList[i] NE 0) do begin structs = get_events_s(timeList[i]) _ ; process your events here print, n_elements(structs) - 1 _ i = i + 1 endwhile endfor _INPUT_ * day1996 is the day-of-1996. * instrumentID is the id of the instrument of interest: 'c' for CRIS and 's' for SIS. _OUTPUT_ * An array of times (in seconds-since-1996), terminated by a zero value.