Skip to content
Snippets Groups Projects
Commit 115d3c28 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Closes #2

Removes the forced `int` for `fmin` in MFD. As noted by David, this
isn't required.
parent eb65af5d
No related branches found
No related tags found
No related merge requests found
...@@ -1094,7 +1094,7 @@ transientTauDays={:1.3f}\n""") ...@@ -1094,7 +1094,7 @@ transientTauDays={:1.3f}\n""")
else: else:
data_duration = self.maxStartTime - self.minStartTime data_duration = self.maxStartTime - self.minStartTime
cl_mfd.append('--duration={}'.format(int(data_duration))) 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('--Band={}'.format(self.Band))
cl_mfd.append('--Tsft={}'.format(self.Tsft)) cl_mfd.append('--Tsft={}'.format(self.Tsft))
if self.h0 != 0: if self.h0 != 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment