While Minke's primary purpose is to produce MDC sets for analysis, it
is also capable of producing sets of simulation signals for more
general purposes.
In this tutorial we'll make a set of SineGaussian signals, and impose
an SNR threshold on the waveforms which are included in the set, with
regards to the PSD from the detector.
We'll start by importing minke::
>>> from minke import mdctools, distribution, sources, noise
Then we can create the signal Set. To do that we need to tell Minke which
interferometers are being simulated. We'll assume we're simulating the O1 configuration, which was LIGO Livingston,
and LIGO Hanford (4km).::
>>> mdcset = mdctools.MDCSet(['L1', 'H1'])
Next we define a distribution for the times of the injections. Here we'll produce 1000 signals over the entire O1 run, made randomly according to a uniform distribution over times. ::
>>> times = distribution.uniform_time(start = 1126620016, stop = 1136995216, numer = 1000)