Commit df5794fd authored by Daniel Williams's avatar Daniel Williams
Browse files

Added seed information to the xml process register.

parent 69556e3a
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -4,6 +4,18 @@
Installation
============

Installation of the Minke package is a little more involved than the
majority of Python packages, due to its dependence upon LALSuite, and,
unforunately, a development version of LALSuite.

We've included a script to install the necessary LAL software into a
virtual environment alongside the Minke code, which should make your
life slightly easier, and in the future we hope to find a way to
bundle this installation into the Minke install script.




At the command line::

    $ easy_install minki
+1 −1
Original line number Diff line number Diff line
@@ -105,8 +105,8 @@ class MDCSet():
        lw.appendChild(sim)
        # This needs to be given the proper metadata once the package has the maturity to
        # write something sensible.
        procrow = process.register_to_xmldoc(xmldoc, "minke_burst_mdc", {})
        for waveform in self.waveforms:
            procrow = process.register_to_xmldoc(xmldoc, "minke_burst_mdc", waveform.params)
            waveform_row = waveform._row(sim)
            waveform_row.process_id = procrow.process_id
            sim.append()
+1 −0
Original line number Diff line number Diff line
@@ -203,6 +203,7 @@ class SineGaussian(Waveform):
        self._clear_params()
        self.sky_dist = sky_dist
        self.params['hrss'] = hrss
        self.params['seed'] = seed
        self.params['frequency'] = frequency
        self.params['q'] = q
        self.time = time