Revision 72b8350e0efde593e816e4cc11a43ad52ee51df2 authored by Alex Nitz on 28 July 2020, 08:55:09 UTC, committed by GitHub on 28 July 2020, 08:55:09 UTC
* We should be consistent about units

* Do not use numpy vectorize

* remove more numpy vect

* no commit

* cc
1 parent c6b6134
Raw File
travel.py
from pycbc.detector import Detector

for ifo1 in ['H1', 'L1', 'V1']:
    for ifo2 in ['H1', 'L1', 'V1']:
        dt = Detector(ifo1).light_travel_time_to_detector(Detector(ifo2))
        print("Direct Time from {} to {} is {} seconds".format(ifo1, ifo2, dt))
back to top