ATLAS Offline Software
InDetMeasurementsUtilitiesConfig.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 
7  name: str,
8  **kwargs: dict) -> ComponentAccumulator:
9  """ Read xAOD::SpacePoints from file and attach bare pointer to xAOD::UncalibratedMeasurements as a decoration """
10  acc = ComponentAccumulator()
11  acc.addEventAlgo(CompFactory.InDet.SpacePointReader(name=name, **kwargs))
12  return acc
13 
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.InDetMeasurementsUtilitiesConfig.xAODSpacePointReaderAlgCfg
ComponentAccumulator xAODSpacePointReaderAlgCfg(flags, str name, **dict kwargs)
Definition: InDetMeasurementsUtilitiesConfig.py:6