ATLAS Offline Software
Loading...
Searching...
No Matches
InDetMeasurementsUtilitiesConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4from 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
ComponentAccumulator xAODSpacePointReaderAlgCfg(flags, str name, **dict kwargs)