6 previousExtension: str =
None) -> ComponentAccumulator:
7 acc = ComponentAccumulator()
10 from ActsConfig.ActsRegionsOfInterestConfig
import ActsInDetRegionsOfInterestCreatorAlgCfg
11 acc.merge(ActsInDetRegionsOfInterestCreatorAlgCfg(flags,
12 name = f
"{flags.Tracking.ActiveConfig.extension}RegionsOfInterestCreatorAlg",
13 RoIs = f
"{flags.Tracking.ActiveConfig.extension}RegionOfInterest"))
17 from ActsConfig.ActsClusterizationInDetConfig
import ActsIDClusterizationCfg
18 acc.merge(ActsIDClusterizationCfg(flags,
19 previousActsExtension = previousExtension))
22 from ActsConfig.ActsSpacePointFormationInDetConfig
import ActsIDSpacePointFormationCfg
23 acc.merge(ActsIDSpacePointFormationCfg(flags,
24 previousActsExtension = previousExtension))
30 if flags.Tracking.doTruth:
31 from ActsConfig.ActsTruthConfig
import ActsTruthAssociationAlgCfg, ActsInDetTruthParticleHitCountAlgCfg
32 acc.merge(ActsTruthAssociationAlgCfg(flags))
33 acc.merge(ActsInDetTruthParticleHitCountAlgCfg(flags))