Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
LOFAR2.0
tango
Commits
27f25aac
Commit
27f25aac
authored
2 years ago
by
Stefano Di Frischia
Committed by
Corné Lukken
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-863
: fix bug
parent
960587c4
No related branches found
No related tags found
1 merge request
!392
L2SS-863: refactor SST collector
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tangostationcontrol/tangostationcontrol/statistics_writer/hdf5_writer.py
+2
-2
2 additions, 2 deletions
...trol/tangostationcontrol/statistics_writer/hdf5_writer.py
with
2 additions
and
2 deletions
tangostationcontrol/tangostationcontrol/statistics_writer/hdf5_writer.py
+
2
−
2
View file @
27f25aac
...
@@ -273,7 +273,7 @@ class sst_hdf5_writer(hdf5_writer):
...
@@ -273,7 +273,7 @@ class sst_hdf5_writer(hdf5_writer):
class
bst_hdf5_writer
(
hdf5_writer
):
class
bst_hdf5_writer
(
hdf5_writer
):
def
__init__
(
self
,
new_file_time_interval
,
file_location
,
decimation_factor
):
def
__init__
(
self
,
new_file_time_interval
,
file_location
,
decimation_factor
):
super
().
__init__
(
new_file_time_interval
,
file_location
,
hdf5_writer
.
BST_MODE
,
decimation_factor
)
super
().
__init__
(
new_file_time_interval
,
file_location
,
hdf5_writer
.
BST_MODE
,
decimation_factor
,
device
=
None
)
def
decoder
(
self
,
packet
):
def
decoder
(
self
,
packet
):
return
BSTPacket
(
packet
)
return
BSTPacket
(
packet
)
...
@@ -288,7 +288,7 @@ class bst_hdf5_writer(hdf5_writer):
...
@@ -288,7 +288,7 @@ class bst_hdf5_writer(hdf5_writer):
class
xst_hdf5_writer
(
hdf5_writer
):
class
xst_hdf5_writer
(
hdf5_writer
):
def
__init__
(
self
,
new_file_time_interval
,
file_location
,
decimation_factor
,
subband_index
):
def
__init__
(
self
,
new_file_time_interval
,
file_location
,
decimation_factor
,
subband_index
):
super
().
__init__
(
new_file_time_interval
,
file_location
,
hdf5_writer
.
XST_MODE
,
decimation_factor
)
super
().
__init__
(
new_file_time_interval
,
file_location
,
hdf5_writer
.
XST_MODE
,
decimation_factor
,
device
=
None
)
self
.
subband_index
=
subband_index
self
.
subband_index
=
subband_index
def
decoder
(
self
,
packet
):
def
decoder
(
self
,
packet
):
...
...
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