Skip to contents

Given a set of detector names, compute the light travel time between all unique pairs using PyCBC's Detector geometry.

Usage

get_light_travel_time_among_detectors(dets)

Arguments

dets

A character vector of detector names (e.g., c("H1", "L1", "V1")).

Value

A named numeric vector of light travel times (in seconds) between each detector pair. The names are formatted as "H1-L1", "H1-V1", etc.

Examples

if (FALSE) { # \dontrun{
get_light_travel_time_among_detectors(c("H1", "L1", "V1"))
} # }