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):
7  result = ComponentAccumulator()
8  service = CompFactory.OutputStreamSequencerSvc("OutputStreamSequencerSvc",
9  SequenceIncidentName=incidentName,
10  ReportingOn=reportingOn)
11  result.addService(service)
12  return result
13 
14 
python.OutputStreamSequencerSvcConfig.OutputStreamSequencerSvcCfg
def OutputStreamSequencerSvcCfg(flags, incidentName='', reportingOn=False)
Definition: OutputStreamSequencerSvcConfig.py:6
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302