132 Returns the tuple of MetaDataHelperLists and ComponentAccumulator.
133 The former combines the lists needed to setup given metadata category
134 for the output stream configuration and metadata service.
135 The latter contains the CA needed for a given metadata category.
137 tools = MetaDataHelperLists()
139 log = logging.getLogger(
"SetupMetaDataForStreamCfg")
141 if category == MetadataCategory.FileMetaData:
142 tools.mdToolNames.append(
"xAODMaker::FileMetaDataTool")
144 "xAOD::FileMetaData#FileMetaData",
145 "xAOD::FileMetaDataAuxInfo#FileMetaDataAux.",
147 tools.helperTools.append(
148 CompFactory.xAODMaker.FileMetaDataCreatorTool(
149 f
"{outputStreamName(streamName)}_FileMetaDataCreatorTool",
150 OutputKey=
"FileMetaData",
152 EventInfoKey=f
"{flags.Overlay.BkgPrefix}EventInfo"
153 if flags.Common.ProductionStep
in [ProductionStep.PileUpPresampling, ProductionStep.PileUpPretracking, ProductionStep.MinbiasPreprocessing]
157 elif category == MetadataCategory.EventStreamInfo:
159 CompFactory.CopyEventStreamInfo(
160 f
"{outputStreamName(streamName)}_CopyEventStreamInfo",
165 elif category == MetadataCategory.EventFormat:
166 efTool = CompFactory.xAODMaker.EventFormatStreamHelperTool(
167 f
"{outputStreamName(streamName)}_EventFormatStreamHelperTool",
168 Key=f
"EventFormat{outputStreamName(streamName)}",
172 f
"xAOD::EventFormat#EventFormat{outputStreamName(streamName)}",
174 tools.helperTools.append(efTool)
175 tools.mdToolNames.append(
"xAODMaker::EventFormatMetaDataTool")
176 elif category == MetadataCategory.CutFlowMetaData:
177 if "CutBookkeepers" in flags.Input.MetadataItems:
178 from EventBookkeeperTools.EventBookkeeperToolsConfig
import (
182 tools.mdToolNames.append(
"BookkeeperTool")
185 elif category == MetadataCategory.TriggerMenuMetaData:
186 if any(
"TriggerMenu" in item
for item
in flags.Input.MetadataItems):
188 tools.mdTools = _tools.mdTools
189 tools.mdItems = _tools.mdItems
191 elif category == MetadataCategory.TruthMetaData:
192 if "TruthMetaData" in flags.Input.MetadataItems:
194 "xAOD::TruthMetaDataContainer#TruthMetaData",
195 "xAOD::TruthMetaDataAuxContainer#TruthMetaDataAux.",
197 tools.mdTools.append(
198 CompFactory.xAODMaker.TruthMetaDataTool(
"TruthMetaDataTool")
200 elif category == MetadataCategory.ByteStreamMetaData:
201 if "ByteStreamMetadata" in flags.Input.MetadataItems:
202 tools.mdItems += [
"ByteStreamMetadataContainer#*"]
203 elif category == MetadataCategory.LumiBlockMetaData:
205 lb
in flags.Input.MetadataItems
206 for lb
in [
"SuspectLumiBlocks",
"IncompleteLumiBlocks",
"LumiBlocks"]
208 tools.mdToolNames.append(
"LumiBlockMetaDataTool")
210 "xAOD::LumiBlockRangeContainer#*",
211 "xAOD::LumiBlockRangeAuxContainer#*",
213 elif category == MetadataCategory.IOVMetaData:
214 if "IOVMetaDataContainer" in flags.Input.MetadataItems.values():
215 tools.mdItems += [
"IOVMetaDataContainer#*"]
218 log.warning(f
"Requested metadata category: {category} could not be configured")