mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m-thesis-introduction.git
synced 2024-11-13 10:03:32 +01:00
ZH: [make][matrix]: split finding and reporting ks
This commit is contained in:
parent
6de4f5d9a5
commit
68e272a5dc
2 changed files with 16 additions and 2 deletions
|
@ -66,6 +66,8 @@ antenna-phase:
|
||||||
#
|
#
|
||||||
findks:
|
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}
|
./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}
|
./cb_report_measured_antenna_time_offsets.py --no-show-plots --fig-dir=${FIG_DIR} --data-dir ${DATA_DIR}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -6,7 +6,7 @@ MATRIX_ELS="${@:-$MATRIXDIR/matrix*/}"
|
||||||
BASE=$(realpath ../base)
|
BASE=$(realpath ../base)
|
||||||
MAKE="make -C ${BASE} "
|
MAKE="make -C ${BASE} "
|
||||||
|
|
||||||
for d in "$MATRIX_ELS" ;
|
for d in $MATRIX_ELS ;
|
||||||
do
|
do
|
||||||
echo "Entering $d"
|
echo "Entering $d"
|
||||||
pushd "$d";
|
pushd "$d";
|
||||||
|
@ -18,10 +18,22 @@ do
|
||||||
|
|
||||||
mkdir -p $FIG_DIR $DATA_DIR
|
mkdir -p $FIG_DIR $DATA_DIR
|
||||||
|
|
||||||
$MAKE beacon;
|
$MAKE generate-beacon;
|
||||||
|
$MAKE signal-to-noise;
|
||||||
|
|
||||||
$MAKE clocks;
|
$MAKE clocks;
|
||||||
|
|
||||||
$MAKE phases;
|
$MAKE phases;
|
||||||
|
#$MAKE beacon-phase;
|
||||||
|
#$MAKE clock-phase;
|
||||||
|
#$MAKE baseline-phase;
|
||||||
|
#$MAKE antenna-phase;
|
||||||
|
|
||||||
$MAKE findks;
|
$MAKE findks;
|
||||||
|
$MAKE reportks;
|
||||||
|
|
||||||
|
#$MAKE vary-fixes;
|
||||||
|
|
||||||
#$MAKE reconstruct;
|
#$MAKE reconstruct;
|
||||||
echo "Popping"
|
echo "Popping"
|
||||||
popd
|
popd
|
||||||
|
|
Loading…
Reference in a new issue