Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gstlal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Duncan Macleod
gstlal
Commits
b8b8d114
Commit
b8b8d114
authored
7 years ago
by
Duncan Meacher
Browse files
Options
Downloads
Patches
Plain Diff
gstlal_idq_trigger_gen: Added template mismatch as a command arg
parent
5abb743c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gstlal-ugly/bin/gstlal_idq_trigger_gen
+12
-10
12 additions, 10 deletions
gstlal-ugly/bin/gstlal_idq_trigger_gen
with
12 additions
and
10 deletions
gstlal-ugly/bin/gstlal_idq_trigger_gen
+
12
−
10
View file @
b8b8d114
...
...
@@ -127,19 +127,19 @@ def half_sine_gaussian(sg_arr):
#
#
number
of
tiles
in
frequency
and
Q
#
def
N_Q
(
q_min
,
q_max
,
mismatch =
0.
05
):
def
N_Q
(
q_min
,
q_max
,
mismatch =
0.
2
):
return
numpy.ceil
(1./(2.
*numpy.sqrt
(
mismatch
/3.))
*1.
/
numpy.sqrt
(2)
*numpy.log
(
q_max
/
q_min
))
def
N_phi
(
phi_min
,
phi_max
,
q
,
mismatch =
0.
05
):
def
N_phi
(
phi_min
,
phi_max
,
q
,
mismatch =
0.
2
):
return
numpy.ceil
(1./(2.
*numpy.sqrt
(
mismatch
/3.))
*
(
numpy.sqrt
(2.+
q**2.
)/2.)
*numpy.log
(
phi_max
/
phi_min
))
def
Qq
(
q_min
,
q_max
,
mismatch =
0.
05
):
N_q =
numpy.ceil(N_Q(q_min,
q_max
,
mismatch
))
def
Qq
(
q_min
,
q_max
,
mismatch =
0.
2
):
N_q =
numpy.ceil(N_Q(q_min,
q_max
,
mismatch =
mismatch))
return
[
q_min*
(
q_max
/
q_min
)
**
((0.5+
q
)/
N_q
)
for
q
in
range
(
int
(
N_q
))]
def
phi_ql
(
phi_min
,
phi_max
,
q_min
,
q_max
,
mismatch =
0.
05
):
for
q
in
Qq
(
q_min
,
q_max
)
:
nphi =
N_phi(phi_min,
phi_max
,
q
)
def
phi_ql
(
phi_min
,
phi_max
,
q_min
,
q_max
,
mismatch =
0.
2
):
for
q
in
Qq
(
q_min
,
q_max
,
mismatch =
mismatch
):
nphi =
N_phi(phi_min,
phi_max
,
q
,
mismatch =
mismatch
)
for
l
in
range
(
int
(
nphi
))
:
yield
(
phi_min*
(
phi_max
/
phi_min
)
**
((0.5+
l
)/
nphi
),
q
)
...
...
@@ -158,6 +158,8 @@ def parse_command_line():
parser.add_option
("
--disable-web-service
",
action =
"store_true"
,
help =
"If set, disables web service that allows monitoring of PSDS of aux channels."
)
parser.add_option
("
-v
",
"
--verbose
",
action =
"store_true"
,
help =
"Be verbose."
)
parser.add_option
("
--triggers-from-dataframe
",
action =
"store_true"
,
default =
False,
help =
"If set, will output iDQ-compatible triggers to disk straight from dataframe once every cadence"
)
parser.add_option
("
-m
",
"
--mismatch
",
type =
"float"
,
default =
0.2,
help =
"Mismatch between templates, mismatch = 1 - minimal match. Default = 0.2."
)
#
#
parse
the
arguments
and
sanity
check
#
...
...
@@ -656,13 +658,13 @@ for channel in channels:
fhigh = rate/2.*0.8
qhigh = 40
qlow = 4
dur = max([duration(phi, q, 1e-3) for (phi, q) in phi_ql(flow, fhigh, qlow, qhigh)])
dur = max([duration(phi, q, 1e-3) for (phi, q) in phi_ql(flow, fhigh, qlow, qhigh
, mismatch = options.mismatch
)])
t_arr = numpy.linspace(-dur/2., dur/2., int(dur*rate))
phase = [0, numpy.pi/2.]
basis_params[(channel, rate)] = [(phi, q, duration(phi, q, 1e-3)/2.) for (phi, q) in phi_ql(flow, fhigh, qlow, qhigh)]
basis_params[(channel, rate)] = [(phi, q, duration(phi, q, 1e-3)/2.) for (phi, q) in phi_ql(flow, fhigh, qlow, qhigh
, mismatch = options.mismatch
)]
thishead = pipeparts.mkqueue(pipeline, thishead, max_size_buffers = 0, max_size_bytes = 0, max_size_time = Gst.SECOND * 30)
time_domain = (dur*rate**2)
<
(5
*dur*rate*numpy.log2
(
rate
))
thishead =
pipeparts.mkfirbank(pipeline,
thishead
,
fir_matrix =
numpy.array([half_sine_gaussian(sine_gaussian(phi,
phi_0
,
q
,
t_arr
))
for
(
phi
,
q
)
in
phi_ql
(
flow
,
fhigh
,
qlow
,
qhigh
)
for
phi_0
in
phase
]),
time_domain =
time_domain,
block_stride =
int(rate),
latency =
0)
thishead =
pipeparts.mkfirbank(pipeline,
thishead
,
fir_matrix =
numpy.array([half_sine_gaussian(sine_gaussian(phi,
phi_0
,
q
,
t_arr
))
for
(
phi
,
q
)
in
phi_ql
(
flow
,
fhigh
,
qlow
,
qhigh
,
mismatch =
options.mismatch
)
for
phi_0
in
phase
]),
time_domain =
time_domain,
block_stride =
int(rate),
latency =
0)
if
data_source_info.latency_output:
thishead =
pipeparts.mklatency(pipeline,
thishead
,
name =
'stage4_afterFIRbank_%s_%s'
%
(
str
(
rate
).
zfill
(5),
channel
))
thishead =
pipeparts.mkqueue(pipeline,
thishead
,
max_size_buffers =
1,
max_size_bytes =
0,
max_size_time =
0)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment