Skip to content

Commit

Permalink
Removed analytic PSDs from possible options.
Browse files Browse the repository at this point in the history
  • Loading branch information
MarlinSchaefer committed Oct 26, 2021
1 parent 3cc81da commit d39fce5
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions generate_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,16 +328,8 @@ def get_real_noise(path=None, min_segment_duration=None, start_offset=0,
return

class NoiseGenerator(object):
psd_options = {'H1': ['aLIGOZeroDetHighPower',
'aLIGOZeroDetLowPower',
'aLIGOLateHighSensitivityP1200087',
'aLIGOMidHighSensitivityP1200087'],
'L1': ['aLIGOZeroDetHighPower',
'aLIGOZeroDetLowPower',
'aLIGOLateHighSensitivityP1200087',
'aLIGOMidHighSensitivityP1200087']}
psd_options['H1'].extend([f'psds/H1/psd-{i}.hdf' for i in range(20)])
psd_options['L1'].extend([f'psds/L1/psd-{i}.hdf' for i in range(20)])
psd_options = {'H1': [f'psds/H1/psd-{i}.hdf' for i in range(20)],
'L1': [f'psds/L1/psd-{i}.hdf' for i in range(20)]}
def __init__(self, dataset, seed=0, filter_duration=128,
sample_rate=2048, low_frequency_cutoff=15,
detectors=['H1', 'L1']):
Expand Down

0 comments on commit d39fce5

Please sign in to comment.