mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m-thesis-introduction.git
synced 2024-11-14 02:23:32 +01:00
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
.PHONY: all
|
|
|
|
|
|
FIG_DIR := ./figures
|
|
|
|
all: beacon clocks phases findks reconstruct
|
|
|
|
|
|
beacon:
|
|
./aa_generate_beacon.py | tee figures/aa.log
|
|
./ab_modify_clocks.py 0 | tee figures/ab.log
|
|
./ac_show_signal_to_noise.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
./view_beaconed_antenna.py 72 -p x -p y -p z -p AxB --no-show-plots --fig-dir=${FIG_DIR}
|
|
|
|
clocks:
|
|
./ab_modify_clocks.py 15 --gaussian
|
|
|
|
phases:
|
|
./ba_measure_beacon_phase.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
./bb_measure_clock_phase.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
./bc_baseline_phase_deltas.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
./bd_antenna_phase_deltas.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
|
|
findks:
|
|
./ca_period_from_shower.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
./cb_report_measured_antenna_time_offsets.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
|
|
reconstruct:
|
|
./da_reconstruction.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
./db_longitudinal_figure.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
./dc_grid_power_time_fixes.py --no-show-plots --fig-dir=${FIG_DIR}
|
|
dist-clean:
|
|
rm -f ZH_airshower/antennas.hdf5
|
|
rm -f ZH_airshower/clocks.csv
|
|
rm -f ZH_airshower/tx.json
|