ATLAS Offline Software
Loading...
Searching...
No Matches
OutputStreamSequencerSvcConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
3from AthenaConfiguration.ComponentFactory import CompFactory
4
5
6def 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
OutputStreamSequencerSvcCfg(flags, incidentName='', reportingOn=False, replaceRangeMode=False)