Skip to content
Snippets Groups Projects
Commit 152be671 authored by Daniel van der Schuur's avatar Daniel van der Schuur
Browse files

-Fixed lack opf weight parameter that made SC1 fail.

parent 87cc6e6a
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ def start_recording_sc1():
logger.info('==== SC1: SET UP RECORDING ====')
time_before_enable_rec = time.time()
folder = args.rec_dir
folder = '{}p{}a{}w{}'.format(args.tel, list2str(args.pol).replace(',',''), args.wg_amplitude, args.weight[0]) #e.g. 6p01a128w32000 = max length, otherwise recording fails.
folder = '{}p{}a{}w{}'.format(args.tel, list2str(args.pol).replace(',',''), args.wg_amplitude, 'X') #e.g. 6p01a128w32000 = max length, otherwise recording fails.
logger.info('Recording subfolder="%s"', folder)
_cmd = 'ssh arts@arts0.apertif "cd /home/arts/code/apertif/software/trunk/arts/python/controller_api; ./start_obs -psr {} -lo1 4800 -force -dump -wait 20 -dur {} sweeptest.py; python sweeptest.py" >> record_log 2>&1 &'.format(
......
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