2 from AthenaConfiguration.ComponentAccumulator 
import ComponentAccumulator
 
    3 from AthenaConfiguration.ComponentFactory 
import CompFactory
 
    7     """Return a ComponentAccumulator with configured PixelReadoutManager""" 
    9     acc.addService(CompFactory.InDetDD.PixelReadoutManager(name, **kwargs), primary=
True)
 
   14     """Return a ComponentAccumulator with configured ITkPixelReadoutManager""" 
   16     acc.addService(CompFactory.InDetDD.ITk.PixelReadoutManager(name, **kwargs), primary=
True)
 
   20     """Return a ComponentAccumulator with a PLR configured ITkPixelReadoutManager""" 
   22     kwargs.setdefault(
"DetectorName", 
"PLR")
 
   23     kwargs.setdefault(
"PixelIDName", 
"PLR_ID")
 
   24     acc.addService(CompFactory.InDetDD.ITk.PixelReadoutManager(name, **kwargs), primary=
True)