Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
vlbi_resolve
Commits
28c89338
Commit
28c89338
authored
Jan 22, 2021
by
Reimar Leike
Browse files
Delete unnecessary print
parent
c233eba4
Pipeline
#91946
passed with stages
in 14 minutes and 20 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
reconstruction.py
View file @
28c89338
...
...
@@ -146,10 +146,6 @@ def setup():
# Encapsulate everything in functions, to avoid as many (unintended) global variables as possible
def
main
():
# These following lines are to verify the scan averaging
with
open
(
"time_averaging.txt"
,
'w'
)
as
f
:
# delete the file such that new lines can be appended
f
.
write
(
"min max avg med
\n
"
)
pos
,
sky
,
ic
,
pre_output
,
likelihoods
=
setup
()
for
ii
in
range
(
60
):
...
...
src/data.py
View file @
28c89338
...
...
@@ -115,8 +115,6 @@ def read_data(prefix, day, freq, ts_per_bin):
i
+=
1
i0
=
i
tbsize
=
np
.
array
([
t
[
2
]
for
t
in
tbins
])
print
(
"min, max, avg, med time bins:"
)
print
(
"{} {} {} {}"
.
format
(
np
.
amin
(
tbsize
),
np
.
amax
(
tbsize
),
np
.
mean
(
tbsize
),
np
.
median
(
tbsize
)))
else
:
print
(
'No temporal averaging.'
)
# End combine over scan
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment