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
4641457b
Commit
4641457b
authored
6 years ago
by
Chad Hanna
Browse files
Options
Downloads
Patches
Plain Diff
new program to make dt dphi pdfs in a dag
parent
30cecee1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gstlal-inspiral/bin/Makefile.am
+1
-0
1 addition, 0 deletions
gstlal-inspiral/bin/Makefile.am
gstlal-inspiral/bin/gstlal_inspiral_create_dt_dphi_snr_ratio_pdfs_dag
+39
-0
39 additions, 0 deletions
...ral/bin/gstlal_inspiral_create_dt_dphi_snr_ratio_pdfs_dag
with
40 additions
and
0 deletions
gstlal-inspiral/bin/Makefile.am
+
1
−
0
View file @
4641457b
...
...
@@ -8,6 +8,7 @@ dist_bin_SCRIPTS = \
gstlal_inspiral_calc_rank_pdfs
\
gstlal_inspiral_coinc_extractor
\
gstlal_inspiral_create_dt_dphi_snr_ratio_pdfs
\
gstlal_inspiral_create_dt_dphi_snr_ratio_pdfs_dag
\
gstlal_inspiral_create_p_of_ifos_given_horizon
\
gstlal_inspiral_create_prior_diststats
\
gstlal_inspiral_dlrs_diag
\
...
...
This diff is collapsed.
Click to expand it.
gstlal-inspiral/bin/gstlal_inspiral_create_dt_dphi_snr_ratio_pdfs_dag
0 → 100755
+
39
−
0
View file @
4641457b
#!/usr/bin/env python
#
# Copyright (C) 2018 Chad Hanna
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
from
glue
import
pipeline
from
gstlal
import
inspiral_pipe
from
gstlal
import
dagparts
as
gstlaldagparts
try
:
os
.
mkdir
(
"
logs
"
)
except
:
pass
dag
=
inspiral_pipe
.
DAG
(
"
dt_dphi
"
)
margJob
=
inspiral_pipe
.
generic_job
(
"
gstlal_inspiral_create_dt_dphi_snr_ratio_pdfs
"
,
condor_commands
=
{
"
request_memory
"
:
"
4GB
"
,
"
want_graceful_removal
"
:
"
True
"
,
"
kill_sig
"
:
"
15
"
,
"
accounting_group
"
:
"
ligo.prod.o2.cbc.uber.gstlaloffline
"
})
for
start
in
range
(
0
,
3345408
,
10000
):
stop
=
start
+
10000
inspiral_pipe
.
generic_node
(
margJob
,
dag
,
parent_nodes
=
[],
opts
=
{
""
:
[
start
,
stop
]})
dag
.
write_sub_files
()
dag
.
write_dag
()
dag
.
write_script
()
dag
.
write_cache
()
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