Skip to content
Snippets Groups Projects
Commit 1589947a authored by Stefano Di Frischia's avatar Stefano Di Frischia
Browse files

L2SS-1203: update version

parent a3bed1b4
Branches
Tags test
1 merge request!38L2SS-1203: beamlet subbands in hdf5 header
Pipeline #55394 passed
......@@ -105,6 +105,7 @@ tox -e debug tests.requests.test_prometheus
```
## Releasenotes
- 0.14.1 - Added `beamlet.subband_select_RW` attribute to BSTHdf5Writer
- 0.14 - Added new attributes to statistics HDF file as well as documentation
- 0.13 - Added lazy connection behavior to `devices.LofarDeviceProxy` class
- 0.12.
......
0.14.0
0.14.1
......@@ -23,6 +23,11 @@ This script can be called with the following arguments:
-v --debug takes no arguments, when used prints a lot of extra data to help with debugging (default: off)
-d --decimation Configure the writer to only store one every n samples. Saves storage space (default: 1 (everything))
-r --reconnect Set the writer to keep trying to reconnect whenever connection is lost. (default: off)
-nt --no-tango Disable connection to Tango device attribute values retrieval (default: false)
-A --antennafield Device name for AntennaField Proxy device
-S --sdp Device name for SDP Proxy device
-TB --tilebeam Device name for Tilebeam Proxy device
-DB --digitalbeam Device name for Digitalbeam Proxy device
```
An example call could be:
......
0.2
0.3
......@@ -109,7 +109,7 @@ def _create_parser():
help="Antenna field to collect data for",
)
parser.add_argument(
"-SDP",
"-S",
"--sdp",
type=str,
choices=["", "1"],
......@@ -291,7 +291,7 @@ def main():
if args.tilebeam:
tilebeam_device = _get_tango_device(
tango_disabled, host, f"STAT/TileBeam/{args.sdp}"
tango_disabled, host, f"STAT/TileBeam/{args.tilebeam}"
)
else:
tilebeam_device = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment