ZH: [make][matrix]: split finding and reporting ks

This commit is contained in:
Eric Teunis de Boone 2023-04-13 12:37:22 +02:00
parent 6de4f5d9a5
commit 68e272a5dc
2 changed files with 16 additions and 2 deletions

View file

@ -66,6 +66,8 @@ antenna-phase:
#
findks:
./ca_period_from_shower.py --input-fname ${INPUT_DIR} --max-k ${MAX_K} --no-show-plots --fig-dir=${FIG_DIR} --data-dir ${DATA_DIR} -l ${PB_LOW} -u ${PB_HIGH}
reportks:
./cb_report_measured_antenna_time_offsets.py --no-show-plots --fig-dir=${FIG_DIR} --data-dir ${DATA_DIR}
#

View file

@ -6,7 +6,7 @@ MATRIX_ELS="${@:-$MATRIXDIR/matrix*/}"
BASE=$(realpath ../base)
MAKE="make -C ${BASE} "
for d in "$MATRIX_ELS" ;
for d in $MATRIX_ELS ;
do
echo "Entering $d"
pushd "$d";
@ -18,10 +18,22 @@ do
mkdir -p $FIG_DIR $DATA_DIR
$MAKE beacon;
$MAKE generate-beacon;
$MAKE signal-to-noise;
$MAKE clocks;
$MAKE phases;
#$MAKE beacon-phase;
#$MAKE clock-phase;
#$MAKE baseline-phase;
#$MAKE antenna-phase;
$MAKE findks;
$MAKE reportks;
#$MAKE vary-fixes;
#$MAKE reconstruct;
echo "Popping"
popd