Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
f1fd10dd
Commit
f1fd10dd
authored
6 years ago
by
Mattia Mancini
Browse files
Options
Downloads
Patches
Plain Diff
SW-13
: fix various bugs
parent
cd716141
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
LCU/StationTest/rspctlprobe.py
+32
-16
32 additions, 16 deletions
LCU/StationTest/rspctlprobe.py
with
32 additions
and
16 deletions
LCU/StationTest/rspctlprobe.py
+
32
−
16
View file @
f1fd10dd
...
...
@@ -12,7 +12,11 @@ import shutil
import
time
import
socket
logger
=
logging
.
getLogger
(
__name__
)
import
traceback
name
=
__name__
if
__name__
!=
'
__main__
'
else
'
rspctlprobe
'
logger
=
logging
.
getLogger
(
name
)
# --------------------------------NICE PRINTOUT
...
...
@@ -199,7 +203,7 @@ class RCUBoard:
self
.
xcsub_bands
)
def
__getitem__
(
self
,
item
):
getattr
(
self
,
item
)
return
getattr
(
self
,
item
)
# -------RCU mode
...
...
@@ -488,7 +492,7 @@ def execute_xcstatistics_mode(parameters):
:return:
:rtype:
"""
logger
.
info
(
"
Executing xcstatistics with these parameters
{}
"
)
logger
.
info
(
"
Executing xcstatistics with these parameters
%s
"
,
parameters
)
cmd_list
=
[]
if
'
xcangle
'
in
parameters
:
...
...
@@ -549,16 +553,15 @@ def query_status():
logger
.
error
(
"
error querying spectral inversion: %s
"
,
e
.
message
)
raise
Exception
(
'
Error querying spectral inversion
'
)
rcus
=
{}
for
k
in
rcu
.
keys
():
rcu_i
=
rcu
[
k
]
rcu_i
.
sub_bands
=
sub_bands
[
k
]
rcu_i
.
xcsub_bands
=
xcsub_bands
[
k
]
res
=
{
"
rcus
"
:
rcu
s
,
"
clock
"
:
clock
,
"
boards-spinv
"
:
boards_spinv
}
res
=
{
"
rcus
"
:
rcu
,
"
clock
"
:
clock
,
"
boards-spinv
"
:
boards_spinv
}
rcus_mode
=
[
rcu
s
[
i
][
"
mode
"
]
for
i
in
rcu
s
]
rcus_xcsub_band
=
[
rcu
s
[
i
][
"
xcsub
-
band
"
]
for
i
in
rcu
s
]
rcus_mode
=
[
rcu
[
i
][
"
mode
"
]
for
i
in
rcu
]
rcus_xcsub_band
=
[
rcu
[
i
][
"
xcsub
_
band
s
"
]
for
i
in
rcu
]
res
[
"
mode
"
]
=
list_mode
(
rcus_mode
)
res
[
"
xcsub_band
"
]
=
list_mode
(
rcus_xcsub_band
)
...
...
@@ -601,7 +604,7 @@ def query_xcstatistics(options):
filename
=
"
_mode_%s_xst_sb%0.3d.dat
"
%
(
mode
,
subband
)
temporary_output_directory
=
tempfile
.
mkdtemp
()
temporary_output_directory
=
tempfile
.
mkdtemp
(
prefix
=
"
rspctlprobe_tmp
"
)
options
[
'
directory
'
]
=
temporary_output_directory
integration
=
options
[
'
integration
'
]
...
...
@@ -624,7 +627,7 @@ def query_xcstatistics(options):
shutil
.
rmtree
(
temporary_output_directory
)
rcus
=
res
[
"
rcus
"
]
header
=
[
"
RCUID
"
,
"
delay
"
,
"
att
"
,
"
mode
"
,
"
stat
e
"
,
"
xcsub
-
band
"
]
header
=
[
"
RCUID
"
,
"
delay
"
,
"
att
enuation
"
,
"
mode
"
,
"
stat
us
"
,
"
xcsub
_
band
s
"
]
ids
=
[[
header
[
0
]]
+
map
(
str
,
rcus
.
keys
())]
# Create the id column of the file
table
=
[[
key
]
+
[
str
(
rcus
[
i
][
key
])
for
i
in
rcus
]
for
key
in
header
[
1
:]]
table
=
ids
+
table
...
...
@@ -644,6 +647,15 @@ def query_xcstatistics(options):
return
res
def
query_most_common_mode
():
"""
Return the most frequent mode that the RCUs have
:return: the mode
"""
rcus_mode
=
query_rcu_mode
()
rcus_mode
=
[
rcus_mode
[
rcu
]
for
rcu
in
rcus_mode
]
return
int
(
list_mode
(
map
(
lambda
x
:
x
[
'
mode
'
],
rcus_mode
)))
def
set_mode
(
mode
):
"""
Set the mode on all the rsp boards
...
...
@@ -651,14 +663,17 @@ def set_mode(mode):
:param mode: the mode to be set
:type mode: int
"""
if
mode
==
query_most_common_mode
():
return
True
logger
.
info
(
'
switching rcu mode to %d
'
,
mode
)
issue_rspctl_command
([
"
--mode={}
"
.
format
(
mode
)])
logger
.
info
(
'
mode change command issued
'
)
for
i
in
range
(
10
):
time
.
sleep
(
3
)
rcus_mode
=
query_rcu_mode
()
rcus_mode
=
[
rcus_mode
[
rcu
]
for
rcu
in
rcus_mode
]
outmode
=
int
(
list_mode
(
map
(
lambda
x
:
x
[
'
mode
'
],
rcus_mode
)))
outmode
=
query_most_common_mode
()
logger
.
info
(
'
current rsp mode is {}
'
.
format
(
outmode
))
if
mode
==
outmode
:
logger
.
info
(
'
mode changed correctly to {}
'
.
format
(
outmode
))
...
...
@@ -696,7 +711,7 @@ def produce_xcstatistics(integration_time=1, duration=1, add_options=None, outpu
:param output_directory:
:return:
"""
if
not
add_options
()
:
if
not
add_options
:
add_options
=
{}
add_options
[
"
integration
"
]
=
integration_time
...
...
@@ -733,7 +748,7 @@ def batch_produce_xcstatistics(integration_time,
if
not
add_options
:
add_options
=
{}
if
mode
:
if
mode
!=
-
2
:
set_mode
(
mode
)
for
ind
,
(
i
,
d
,
w
)
in
enumerate
(
zip
(
integration_time
,
duration
,
wait_time
)):
...
...
@@ -777,7 +792,7 @@ def setup_command_argument_parser():
parser
.
add_argument
(
'
--wait
'
,
type
=
int
,
default
=
[
0
],
nargs
=
'
+
'
)
parser
.
add_argument
(
'
--xcsubband
'
,
type
=
str
,
default
=
""
)
parser
.
add_argument
(
'
--loops
'
,
type
=
int
,
default
=
1
)
parser
.
add_argument
(
'
--mode
'
,
type
=
int
,
default
=
None
)
parser
.
add_argument
(
'
--mode
'
,
type
=
int
,
default
=
-
2
)
return
parser
...
...
@@ -797,7 +812,7 @@ def parse_and_execute_command_arguments():
try
:
if
program_arguments
.
xcsubband
:
start
,
end
,
step
=
map
(
int
,
program_arguments
.
xcsubband
.
split
(
"
:
"
))
xcsub_bands
=
[
i
for
i
in
range
(
start
,
end
,
step
)]
xcsub_bands
=
[
i
for
i
in
range
(
start
,
end
+
step
,
step
)]
for
i
in
range
(
program_arguments
.
loops
):
batch_produce_xcstatistics
(
program_arguments
.
integration
,
...
...
@@ -818,6 +833,7 @@ def parse_and_execute_command_arguments():
output_directory
=
program_arguments
.
directory
)
except
Exception
as
e
:
logger
.
error
(
'
error executing rspctl : %s
'
,
e
)
logger
.
error
(
'
traceback
\n
%s
'
,
traceback
.
format_exc
())
raise
e
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment