6 previousExtension: str =
None) -> ComponentAccumulator:
7 acc = ComponentAccumulator()
10 from ActsConfig.ActsRegionsOfInterestConfig
import ActsRegionsOfInterestCreatorAlgCfg
11 acc.merge(ActsRegionsOfInterestCreatorAlgCfg(flags,
12 name = f
"{flags.Tracking.ActiveConfig.extension}RegionsOfInterestCreatorAlg"))
16 from ActsConfig.ActsClusterizationConfig
import ActsClusterizationCfg
17 acc.merge(ActsClusterizationCfg(flags,
18 previousActsExtension = previousExtension))
21 from ActsConfig.ActsSpacePointFormationConfig
import ActsSpacePointFormationCfg
22 acc.merge(ActsSpacePointFormationCfg(flags,
23 previousActsExtension = previousExtension))
29 if flags.Tracking.doTruth:
30 from ActsConfig.ActsTruthConfig
import ActsTruthAssociationAlgCfg, ActsTruthParticleHitCountAlgCfg
31 acc.merge(ActsTruthAssociationAlgCfg(flags))
32 acc.merge(ActsTruthParticleHitCountAlgCfg(flags))