Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
L
lalsuite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
109
Issues
109
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
30
Merge Requests
30
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lscsoft
lalsuite
Commits
a1cb32b8
Commit
a1cb32b8
authored
Jun 01, 2018
by
Vivien Raymond
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes segment selection in lalinference_pipe_utils when using bayeswave
parent
7924c03b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
lalinference/python/lalinference/lalinference_pipe_utils.py
lalinference/python/lalinference/lalinference_pipe_utils.py
+2
-2
lalinference/python/lalinference_pipe.py
lalinference/python/lalinference_pipe.py
+2
-2
No files found.
lalinference/python/lalinference/lalinference_pipe_utils.py
View file @
a1cb32b8
...
...
@@ -1315,7 +1315,7 @@ class LALInferencePipelineDAG(pipeline.CondorDAG):
else
:
slide
=
0
for
seg
in
self
.
segments
[
ifo
]:
if
segstart
>=
seg
.
start
()
and
segend
<
seg
.
end
():
if
segstart
>=
seg
.
start
()
and
segend
<
=
seg
.
end
():
if
not
self
.
config
.
has_option
(
'lalinference'
,
'fake-cache'
):
if
self
.
config
.
has_option
(
'condor'
,
'bayesline'
)
or
self
.
config
.
has_option
(
'condor'
,
'computeroqweights'
):
prenode
.
add_ifo_data
(
ifo
,
seg
,
self
.
channels
[
ifo
],
timeslide
=
slide
)
...
...
@@ -1410,7 +1410,7 @@ class LALInferencePipelineDAG(pipeline.CondorDAG):
else
:
slide
=
0
for
seg
in
self
.
segments
[
ifo
]:
if
segstart
>=
seg
.
start
()
and
segend
<
seg
.
end
():
if
segstart
>=
seg
.
start
()
and
segend
<
=
seg
.
end
():
if
not
self
.
config
.
has_option
(
'lalinference'
,
'fake-cache'
):
bayeswavepsdnode
[
ifo
].
add_ifo_data
(
ifo
,
seg
,
self
.
channels
[
ifo
],
timeslide
=
slide
)
else
:
...
...
lalinference/python/lalinference_pipe.py
View file @
a1cb32b8
...
...
@@ -211,8 +211,8 @@ for sampler in samps:
cp
.
set
(
'paths'
,
'roq_b_matrix_directory'
,
thispath
)
flow
=
roq_params
[
roq
][
'flow'
]
/
roq_mass_freq_scale_factor
srate
=
2.
*
roq_params
[
roq
][
'fhigh'
]
/
roq_mass_freq_scale_factor
if
srate
>
8192
:
srate
=
8192
if
srate
>
8192
:
srate
=
8192
seglen
=
roq_params
[
roq
][
'seglen'
]
*
roq_mass_freq_scale_factor
# params.dat uses the convention q>1 so our q_min is the inverse of their qmax
...
...
Vivien Raymond
@vivien
mentioned in merge request
!296 (merged)
·
Jun 01, 2018
mentioned in merge request
!296 (merged)
mentioned in merge request !296
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment