Skip to content
Snippets Groups Projects
Commit 453d61cf authored by Patrick Godwin's avatar Patrick Godwin
Browse files

gstlal_idq_trigger_gen: trigger freq band output fixed, from (rate/2,rate) to...

gstlal_idq_trigger_gen: trigger freq band output fixed, from (rate/2,rate) to (rate/4,rate/2) where f_nyquist=rate/2
parent 5521ae9c
No related branches found
No related tags found
No related merge requests found
......@@ -265,7 +265,7 @@ class MultiChannelHandler(simplehandler.Handler):
latency = numpy.round(current_time - buftime)
freq, q, duration = self.basis_params[(channel, int(rate))][row.channel_index]
start_time = trigger_time - duration
channel_tag = ('%s_%i_%s' %(channel, int(rate)/2, rate)).replace(":","_",1)
channel_tag = ('%s_%i_%i' %(channel, int(rate)/4, int(rate)/2)).replace(":","_",1)
# NOTE
# Setting stop time to trigger time for use with half sine gaussians
stop_time = trigger_time
......
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