intersect_time_intervals# magicctapipe.utils.intersect_time_intervals(intervals1, intervals2)[source]# Intersects two lists of (TStart, TStop) pairs. Returned list contains the start/stop invervals, common in both input lists. Parameters: intervals1listFirst list of (TStart, TStop) lists (or tuples). intervals2listSecond list of (TStart, TStop) lists (or tuples). Returns: listA list of (TStart, TStop) lists, representing the start/stop invervals, common in both input lists.