Skip to content
Snippets Groups Projects
Commit b0c33dc2 authored by Marian Stahl's avatar Marian Stahl
Browse files

merging step of 2022 hlt2 reprocessing production

parent 0084d45f
No related branches found
No related tags found
1 merge request!4176MDF copy writer for 2022 reprocessing
###############################################################################
# (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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment