Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Keitel
PyFstat
Commits
115d3c28
Commit
115d3c28
authored
Jul 17, 2017
by
Gregory Ashton
Browse files
Closes
#2
Removes the forced `int` for `fmin` in MFD. As noted by David, this isn't required.
parent
eb65af5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
pyfstat/core.py
View file @
115d3c28
...
...
@@ -1094,7 +1094,7 @@ transientTauDays={:1.3f}\n""")
else
:
data_duration
=
self
.
maxStartTime
-
self
.
minStartTime
cl_mfd
.
append
(
'--duration={}'
.
format
(
int
(
data_duration
)))
cl_mfd
.
append
(
'--fmin={}'
.
format
(
int
(
self
.
fmin
))
)
cl_mfd
.
append
(
'--fmin={}'
.
format
(
self
.
fmin
))
cl_mfd
.
append
(
'--Band={}'
.
format
(
self
.
Band
))
cl_mfd
.
append
(
'--Tsft={}'
.
format
(
self
.
Tsft
))
if
self
.
h0
!=
0
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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