Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
LHCb
LHCb
Commits
589dad01
Commit
589dad01
authored
1 year ago
by
Adam Morris
Committed by
Sebastien Ponce
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Add `--with-defaults` command-line option to LbExec
parent
1c5f3c4c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!4319
Add `--with-defaults` command-line option to LbExec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GaudiConf/python/GaudiConf/LbExec/__init__.py
+4
-2
4 additions, 2 deletions
GaudiConf/python/GaudiConf/LbExec/__init__.py
GaudiConf/python/GaudiConf/LbExec/__main__.py
+6
-1
6 additions, 1 deletion
GaudiConf/python/GaudiConf/LbExec/__main__.py
with
10 additions
and
3 deletions
GaudiConf/python/GaudiConf/LbExec/__init__.py
+
4
−
2
View file @
589dad01
###############################################################################
# (c) Copyright 2022 CERN for the benefit of the LHCb Collaboration
#
# (c) Copyright 2022
-2023
CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
...
...
@@ -25,6 +25,7 @@ def main(function,
extra_args
,
*
,
dry_run
=
False
,
with_defaults
=
False
,
export
=
None
,
app_type
=
"
Gaudi::Application
"
):
"""
Run an lbexec-style Gaudi job.
...
...
@@ -34,6 +35,7 @@ def main(function,
options (Options): An initialised APP.Options object
extra_args (list of str): list of strings to add the the call to ``function``
dry_run (bool): Only generate the configuration and don
'
t actually start the job
with_defaults (bool): Include options set to default values when writing them out
export (str): Filename to write the options out (or ``
'
-
'
`` to write to stdout as ``.opts``)
app_type (str): The ``Gaudi.Application`` ``appType`` to run
...
...
@@ -42,7 +44,7 @@ def main(function,
"""
config
=
function
(
options
,
*
extra_args
)
opts
=
config2opts
(
config
)
opts
=
config2opts
(
config
,
with_defaults
)
if
export
:
click
.
echo
(
...
...
This diff is collapsed.
Click to expand it.
GaudiConf/python/GaudiConf/LbExec/__main__.py
+
6
−
1
View file @
589dad01
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2022 CERN for the benefit of the LHCb Collaboration
#
# (c) Copyright 2022
-2023
CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
...
...
@@ -38,6 +38,11 @@ def parse_args():
"
--export
"
,
help
=
'
Write a file containing the full options (use
"
-
"
for stdout)
'
,
)
parser
.
add_argument
(
"
--with-defaults
"
,
action
=
"
store_true
"
,
help
=
"
Include options set to default values (for use with --export)
"
,
)
parser
.
add_argument
(
"
--app-type
"
,
default
=
"
Gaudi::Application
"
,
...
...
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