Skip to content
Snippets Groups Projects
Commit 63e0df2d authored by Thomas Jürges's avatar Thomas Jürges
Browse files

Task SW-549: Add script for TBB restart recording

parent 5d7abb58
No related branches found
No related tags found
No related merge requests found
......@@ -3727,6 +3727,7 @@ MAC/Services/test/tPipelineControl.sh eol=lf
MAC/TBB/bin/tbb_freeze -text
MAC/TBB/bin/tbb_load_firmware -text
MAC/TBB/bin/tbb_release_recording -text
MAC/TBB/bin/tbb_restart_recording -text
MAC/TBB/bin/tbb_set_storage -text
MAC/TBB/bin/tbb_start_recording -text
MAC/TBB/bin/tbb_upload_to_cep -text
......@@ -3735,6 +3736,7 @@ MAC/TBB/lib/tbb_config.py -text
MAC/TBB/lib/tbb_freeze.py -text
MAC/TBB/lib/tbb_load_firmware.py -text
MAC/TBB/lib/tbb_release_recording.py -text
MAC/TBB/lib/tbb_restart_recording.py -text
MAC/TBB/lib/tbb_set_storage.py -text
MAC/TBB/lib/tbb_start_recording.py -text
MAC/TBB/lib/tbb_upload_to_cep.py -text
......
......@@ -4,6 +4,7 @@ lofar_add_bin_scripts(
tbb_freeze
tbb_load_firmware
tbb_release_recording
tbb_restart_recording
tbb_set_storage
tbb_start_recording
tbb_upload_to_cep
......
#!/usr/bin/env python
########################################################################
#
# Restart TBB recording on a bunch of stations
#
########################################################################
import logging
from lofar.mac.tbb.tbb_restart_recording import main
if __name__ == '__main__':
format = '%(asctime)-15s | %(message)s'
logging.basicConfig(format=format, level=logging.INFO)
main()
......@@ -8,6 +8,7 @@ python_install(
tbb_freeze.py
tbb_load_firmware.py
tbb_release_recording.py
tbb_restart_recording.py
tbb_set_storage.py
tbb_start_recording.py
tbb_upload_to_cep.py
......
#!/usr/bin/env python
########################################################################
#
# Restart TBB recording on a bunch of stations
#
########################################################################
import argparse
import logging
from lofar.mac.tbb.tbb_config import supported_modes
from lofar.mac.tbb.tbb_release_recording import release_tbb
from lofar.mac.tbb.tbb_start_recording import start_tbb
def main():
parser = argparse.ArgumentParser("This script will restart TBB recording on a bunch of stations.")
parser.add_argument('-s', '--stations', dest='stations', help="comma-separated list of station LCUs (e.g. cs030c,cs031c; also accepts lcurun aliases like 'today', 'nl', ...)", default='today')
parser.add_argument('-m', '--mode', dest='mode', help="supported tbb modes: %s" % supported_modes, default='subband')
parser.add_argument('-b', '--subbands', dest='subbands', help='Subband range, e.g. 10:496', default='10:496')
args = parser.parse_args()
if args.mode not in supported_modes:
raise ValueError('Mode must be one of %s' % supported_modes)
release_tbb(args.stations)
start_tbb(args.stations, args.mode, args.subbands)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment