opengate.runtiming ================== .. py:module:: opengate.runtiming Functions --------- .. autoapisummary:: opengate.runtiming.info_timing opengate.runtiming.assert_run_timing opengate.runtiming.info_run_timing opengate.runtiming.range_timing Module Contents --------------- .. py:function:: info_timing(i) .. py:function:: assert_run_timing(run_timing_intervals) .. py:function:: info_run_timing(sim) .. py:function:: range_timing(start, end, n) Return a list of n time intervals, from start to end e.g. range_timing(0, 1, 10) => [0, 0.1], [0.1, 0.2], [0.2, 0.3], [0.3, 0.4], [0.4, 0.5], [0.5, 0.6], [0.6, 0.7], [0.7, 0.8], [0.8, 0.9], [0.9, 1.0]]