ATLAS Offline Software
Loading...
Searching...
No Matches
LUCID_G4_SDConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4from AthenaConfiguration.ComponentFactory import CompFactory
5
6def LUCID_SensitiveDetectorCfg(flags, name="LUCID_SensitiveDetector", **kwargs):
7 result = ComponentAccumulator()
8 kwargs.setdefault("LogicalVolumeNames", ["LUCID::lvPmt"])
9 kwargs.setdefault("OutputCollectionNames", ["LucidSimHitsVector"])
10 result.setPrivateTools(CompFactory.LUCID_SensitiveDetectorTool(name, **kwargs))
11 return result
LUCID_SensitiveDetectorCfg(flags, name="LUCID_SensitiveDetector", **kwargs)