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
b0c33dc2
Commit
b0c33dc2
authored
1 year ago
by
Marian Stahl
Browse files
Options
Downloads
Patches
Plain Diff
merging step of 2022 hlt2 reprocessing production
parent
0084d45f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!4176
MDF copy writer for 2022 reprocessing
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
GaudiConf/python/GaudiConf/mergeMDF.py
+24
-0
24 additions, 0 deletions
GaudiConf/python/GaudiConf/mergeMDF.py
with
24 additions
and
0 deletions
GaudiConf/python/GaudiConf/mergeMDF.py
0 → 100644
+
24
−
0
View file @
b0c33dc2
###############################################################################
# (c) Copyright 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". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
from
GaudiConf.LbExec
import
Options
from
PyConf.application
import
configure_input
,
configure
,
mdf_writer
from
PyConf.control_flow
import
CompositeNode
def
mdf
(
options
:
Options
):
"""
Merges output of HLT2 reprocessing jobs in production
"""
writer
=
mdf_writer
(
options
.
output_file
,
"
/Event/DAQ/RawEvent
"
)
node
=
CompositeNode
(
'
MDFMerger
'
,
[
writer
])
config
=
configure_input
(
options
)
config
.
update
(
configure
(
options
,
node
))
return
config
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