From 7a43fb15d4af74a3d8219603437ed676ad9dd6d2 Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Tue, 24 Jan 2023 15:24:38 +0100 Subject: [PATCH] ZH: make _clock_ phase explicit in plot titling --- .../airshower_beacon_simulation/bd_antenna_phase_deltas.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/simulations/airshower_beacon_simulation/bd_antenna_phase_deltas.py b/simulations/airshower_beacon_simulation/bd_antenna_phase_deltas.py index 8f45ed7..3522983 100755 --- a/simulations/airshower_beacon_simulation/bd_antenna_phase_deltas.py +++ b/simulations/airshower_beacon_simulation/bd_antenna_phase_deltas.py @@ -70,7 +70,7 @@ if __name__ == "__main__": # Show Matrix as figure if True: fig, ax = plt.subplots() - ax.set_title("Measured phase differences Baseline i,j") + ax.set_title("Measured clock phase differences Baseline i,j") ax.set_ylabel("Antenna no. i") ax.set_xlabel("Antenna no. j") @@ -93,7 +93,7 @@ if __name__ == "__main__": # Show subtraction Matrix as figure if True: fig, ax = plt.subplots() - ax.set_title("Subtraction matrix i,j") + ax.set_title("Clock Phase Subtraction matrix i,j") ax.set_ylabel("Antenna no. i") ax.set_xlabel("Antenna no. j") @@ -122,7 +122,7 @@ if __name__ == "__main__": # Show resulting matrix as figure if True: fig, axs = plt.subplots(2,1, sharex=True) - axs[0].set_title("Modified measured phase differences Baseline 0,j") + axs[0].set_title("Modified clock phase differences Baseline 0,j") axs[0].set_ylabel("Antenna no. 0") axs[-1].set_xlabel("Antenna no. j")