ATLAS Offline Software
OutputStreamSequencerSvcConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
3 from AthenaConfiguration.ComponentFactory import CompFactory
4 
5 
6 def OutputStreamSequencerSvcCfg(flags, incidentName='', reportingOn=False, replaceRangeMode=False):
7  result = ComponentAccumulator()
8  service = CompFactory.OutputStreamSequencerSvc("OutputStreamSequencerSvc",
9  SequenceIncidentName=incidentName,
10  ReportingOn=reportingOn,
11  ReplaceRangeMode=replaceRangeMode)
12  result.addService(service)
13  return result
14 
15 
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.OutputStreamSequencerSvcConfig.OutputStreamSequencerSvcCfg
def OutputStreamSequencerSvcCfg(flags, incidentName='', reportingOn=False, replaceRangeMode=False)
Definition: OutputStreamSequencerSvcConfig.py:6