Skip to content
Snippets Groups Projects
Commit fbef5787 authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-380: improved indenting

parent 4b266211
No related branches found
No related tags found
1 merge request!220Resolve L2SS-480 "Delays to beam weights"
...@@ -128,13 +128,12 @@ class Beam(lofar_device): ...@@ -128,13 +128,12 @@ class Beam(lofar_device):
self.recv_proxy.HBAT_BF_delays_RW = HBAT_bf_delays self.recv_proxy.HBAT_BF_delays_RW = HBAT_bf_delays
# Record where we now point to, now that we've updated the weights. # Record where we now point to, now that we've updated the weights.
# Only the entries within the mask have been updated: # Only the entries within the mask have been updated
# mask = False -> retain value, mask = True -> use new value
mask = self.recv_proxy.RCU_mask_RW mask = self.recv_proxy.RCU_mask_RW
for tile in range(96): for tile in range(96):
if mask[tile]: if mask[tile]:
self._hbat_pointing_direction[tile] = pointing_direction[tile] self._hbat_pointing_direction[tile] = pointing_direction[tile]
self._hbat_pointing_timestamp[tile] = timestamp self._hbat_pointing_timestamp[tile] = timestamp
# -------- # --------
# Commands # Commands
......
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