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
a8610504
Commit
a8610504
authored
8 years ago
by
Chad Hanna
Browse files
Options
Downloads
Patches
Plain Diff
gstlal_inspiral_treebank_dag: fix some typos
parent
4c9ae9df
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_inspiral_treebank_dag
+8
-12
8 additions, 12 deletions
gstlal-ugly/bin/gstlal_inspiral_treebank_dag
with
8 additions
and
12 deletions
gstlal-ugly/bin/gstlal_inspiral_treebank_dag
+
8
−
12
View file @
a8610504
...
...
@@ -17,10 +17,6 @@ from gstlal import dagparts as gstlaldagparts
def
parse_command_line
():
parser
=
argparse
.
ArgumentParser
(
description
=
"
Template generator via tree.
"
)
parser
.
add_argument
(
"
-v
"
,
"
--verbose
"
,
action
=
"
store_true
"
,
default
=
False
,
\
help
=
"
Be verbose.
"
)
parser
.
add_argument
(
"
-d
"
,
"
--debug
"
,
action
=
"
store_true
"
,
default
=
False
,
\
help
=
"
Extra explicit information for debugging and sanity checks.
"
)
# Options for generating the template bank
parser
.
add_argument
(
"
--min-mass1
"
,
action
=
"
store
"
,
type
=
float
,
\
...
...
@@ -86,25 +82,25 @@ def parse_command_line():
args
=
parse_command_line
()
dag
=
inspiral_pipe
.
DAG
(
"
treebank
"
)
treeJob
=
inspiral_pipe
.
generic_job
(
"
gstlal_inspiral_treebank
"
)
argsdict
=
vars
(
args
)
argsdict
=
dict
((
key
.
replace
(
"
_
"
,
"
-
"
),
value
)
for
key
,
value
in
vars
(
args
)
.
items
())
mass1
=
numpy
.
logspace
(
numpy
.
log10
(
args
.
min_mass1
),
numpy
.
log10
(
args
.
max_mass1
),
numpy
.
int
(
args
.
num_jobs
**
.
5
))
mass2
=
numpy
.
logspace
(
numpy
.
log10
(
args
.
min_mass2
),
numpy
.
log10
(
args
.
max_mass2
),
numpy
.
int
(
args
.
num_jobs
**
.
5
))
del
argsdict
[
"
num
_
jobs
"
]
del
argsdict
[
"
num
-
jobs
"
]
pnodes
=
[]
cnt
=
1
for
minmass1
,
maxmass1
in
zip
(
mass1
[:
-
1
],
mass1
[
1
:]):
for
minmass2
,
maxmass2
in
zip
(
mass2
[:
-
1
],
mass2
[
1
:]):
argsdict
[
"
min
_
mass1
"
]
=
minmass1
argsdict
[
"
max
_
mass1
"
]
=
maxmass1
argsdict
[
"
min
_
mass2
"
]
=
minmass2
argsdict
[
"
max
_
mass2
"
]
=
maxmass2
argsdict
[
"
user
_
tag
"
]
=
cnt
argsdict
[
"
min
-
mass1
"
]
=
minmass1
argsdict
[
"
max
-
mass1
"
]
=
maxmass1
argsdict
[
"
min
-
mass2
"
]
=
minmass2
argsdict
[
"
max
-
mass2
"
]
=
maxmass2
argsdict
[
"
user
-
tag
"
]
=
cnt
cnt
+=
1
# parser.add_argument("--user-tag", action="store", default="ROCKS",\
# help="Add tag to output filename")
pnodes
.
append
(
inspiral_pipe
.
generic_node
(
treeJob
,
dag
,
parent_nodes
=
[],
input_files
=
{},
output_files
=
{
""
:
"
TREEBANK_%d.xml.gz
"
%
cnt
},
opts
=
argsdict
))
pnodes
.
append
(
inspiral_pipe
.
generic_node
(
treeJob
,
dag
,
parent_nodes
=
[],
input_files
=
{},
output_files
=
{},
opts
=
argsdict
))
#FIXME add a ligolw_add job to the end of the dag
...
...
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