@@ -270,7 +270,6 @@ def fetchmindata(self):
270
270
mindata = ["L0B_RRSD_REE1" ,
271
271
"L0B_RRSD_REE_NOISEST1" ,
272
272
"L0B_RRSD_REE17_PTA" ,
273
- "L0B_RRSD_REE_beamform" ,
274
273
"L1_RSLC_UAVSAR_SanAnd_05024_18038_006_180730_L090_CX_129_05" ,
275
274
"L1_RSLC_UAVSAR_NISARP_32039_19049_005_190717_L090_CX_129_03" ,
276
275
"L1_RSLC_UAVSAR_NISARP_32039_19052_004_190726_L090_CX_129_02" ,
@@ -490,27 +489,6 @@ def ptatest(self, tests=None):
490
489
except subprocess .CalledProcessError as e :
491
490
raise RuntimeError (f"CalTool point target analyzer tool test { testname } failed" ) from e
492
491
493
- def beamformtest (self , tests = None ):
494
- if tests is None :
495
- tests = workflowtests ['beamform' ].items ()
496
- for testname , dataname in tests :
497
- print (f"\n Running CalTool beamformer test { testname } \n " )
498
- testdir = os .path .abspath (pjoin (self .testdir , testname ))
499
- os .makedirs (pjoin (testdir , f"output_beamform" ), exist_ok = True )
500
- log = pjoin (testdir , f"output_beamform" , "stdouterr.log" )
501
- cmd = [f"""time beamform_tx.py -i input_{ dataname [0 ]} /{ dataname [1 ]} \
502
- -a input_{ dataname [0 ]} /{ dataname [2 ]} \
503
- -o output_beamform/beamform_tx_output.txt""" ,
504
- f"""time beamform_rx.py -i input_{ dataname [0 ]} /{ dataname [1 ]} \
505
- -a input_{ dataname [0 ]} /{ dataname [2 ]} \
506
- -c input_{ dataname [0 ]} /{ dataname [3 ]} \
507
- -o output_beamform/beamform_rx_output.txt""" ]
508
- try :
509
- self .distribrun (testdir , cmd , logfile = log , dataname = dataname [0 ], nisarimg = True ,
510
- loghdlrname = f"wftest.{ os .path .basename (testdir )} " )
511
- except subprocess .CalledProcessError as e :
512
- raise RuntimeError (f"CalTool beamformer tool test { testname } failed" ) from e
513
-
514
492
def soilmtest (self , tests = None ):
515
493
if tests is None :
516
494
tests = workflowtests ['soilm' ].items ()
@@ -539,7 +517,6 @@ def mintests(self):
539
517
self .insartest (tests = list (workflowtests ['insar' ].items ())[:1 ])
540
518
self .noisesttest (tests = list (workflowtests ['noisest' ].items ())[:1 ])
541
519
self .ptatest (tests = list (workflowtests ['pta' ].items ())[:1 ])
542
- self .beamformtest (tests = list (workflowtests ['beamform' ].items ())[:1 ])
543
520
544
521
def workflowqa (self , wfname , testname , suf = "" , description = "" ):
545
522
"""
0 commit comments