ATLAS Offline Software
MuonHitCsvDumpConfig.py
Go to the documentation of this file.
1 #Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4 from AthenaConfiguration.ComponentFactory import CompFactory
5 
6 
7 def CsvMdtDriftCircleDumpCfg(flags, name="CsvDriftCircleDumper", **kwargs):
8  result = ComponentAccumulator()
9  the_alg = CompFactory.MdtDriftCircleCsvDumperAlg(name=name, **kwargs)
10  result.addEventAlgo(the_alg, primary = True)
11  return result
12 
13 def CsvMuonSimHitDumpCfg(flags, name="CsvMuonSimHitDumper", **kwargs):
14  result = ComponentAccumulator()
15  the_alg = CompFactory.MuonSimHitCsvDumperAlg(name = name, **kwargs)
16  result.addEventAlgo(the_alg, primary = True)
17  return result
18 
19 def CsvMuonStripDumpCfg(flags, name="CsvStripHitDumper", **kwargs):
20  result = ComponentAccumulator()
21  the_alg = CompFactory.MuonStripCsvDumperAlg(name = name, **kwargs)
22  result.addEventAlgo(the_alg, primary = True)
23  return result
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
MuonHitCsvDumpConfig.CsvMdtDriftCircleDumpCfg
def CsvMdtDriftCircleDumpCfg(flags, name="CsvDriftCircleDumper", **kwargs)
Definition: MuonHitCsvDumpConfig.py:7
MuonHitCsvDumpConfig.CsvMuonStripDumpCfg
def CsvMuonStripDumpCfg(flags, name="CsvStripHitDumper", **kwargs)
Definition: MuonHitCsvDumpConfig.py:19
MuonHitCsvDumpConfig.CsvMuonSimHitDumpCfg
def CsvMuonSimHitDumpCfg(flags, name="CsvMuonSimHitDumper", **kwargs)
Definition: MuonHitCsvDumpConfig.py:13