Skip to content
Snippets Groups Projects
Commit 59f8d6f4 authored by David Keitel's avatar David Keitel
Browse files

Writer.run_makefakedata: pass through ephemeride file choices

parent 5d2d7f81
No related branches found
No related tags found
1 merge request!25ephemerides handling fixes
......@@ -350,6 +350,10 @@ transientTau = {:10.0f}\n"""
cl_mfd.append("--Tsft={}".format(self.Tsft))
if self.h0 != 0:
cl_mfd.append('--injectionSources="{}"'.format(self.config_file_name))
if self.earth_ephem is not None:
cl_mfd.append('--ephemEarth="{}"'.format(self.earth_ephem))
if self.sun_ephem is not None:
cl_mfd.append('--ephemSun="{}"'.format(self.sun_ephem))
cl_mfd = " ".join(cl_mfd)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment