Skip to content
Snippets Groups Projects
Commit 089ca345 authored by Ruud Overeem's avatar Ruud Overeem
Browse files

BugID: 810

Some station-observationbased datapoints where missing.
parent 84ca5f00
No related branches found
No related tags found
No related merge requests found
......@@ -43,5 +43,7 @@ StnPermSW - S P LOFAR_PermSW
CalCtrl CC S P LOFAR_PermSW_CalCtrl@instance@
DigBoardCtrl DBC S P LOFAR_PermSW_DigBoardCtrl@instance@
StationCtrl SC S P LOFAR_PermSW_StationCtrl
ObsSW - S O LOFAR_ObsSW
Observation - S O LOFAR_ObsSW_@observation@
BeamCtrl BC S O LOFAR_ObsSW_@observation@_BeamCtrl
......@@ -603,9 +603,10 @@ DBTYPENAME=Main
DBTYPE=C
STNNAME="Station"
eval set argv=`getopt "d:o:s:Sh" $*` # reformat arguments
shift
while [ "$1" != "--" ]
argv=`getopt "d:o:s:Sh" $*` # reformat arguments
#eval set argv=`getopt "d:o:s:Sh" $*` # reformat arguments
#shift
while [ -n "$1" -a "$1" != "--" ]
do
case "$1" in
-d) DESTDIR=$2
......@@ -629,6 +630,8 @@ do
;;
-h) SyntaxError
;;
*) SyntaxError
;;
esac
done
shift # remove '--'
......
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