ATLAS Offline Software
Functions
ActsObjectDecorationConfig Namespace Reference

Functions

ComponentAccumulator ActsMeasurementToTrackParticleDecorationCfg (flags, str name="ActsMeasurementToTrackParticleDecoration", **kwargs)
 

Function Documentation

◆ ActsMeasurementToTrackParticleDecorationCfg()

ComponentAccumulator ActsObjectDecorationConfig.ActsMeasurementToTrackParticleDecorationCfg (   flags,
str   name = "ActsMeasurementToTrackParticleDecoration",
**  kwargs 
)

Definition at line 6 of file ActsObjectDecorationConfig.py.

7  name: str = "ActsMeasurementToTrackParticleDecoration",
8  **kwargs) -> ComponentAccumulator:
10  kwargs.setdefault("TrackParticleKey", "InDetTrackParticles")
11 
12  # TODO:: The tracking geometry tool is not strictly necessary
13  # but can provide extra information on surfaces if needed in the future
14 
15  if 'TrackingGeometryTool' not in kwargs:
16  from ActsConfig.ActsGeometryConfig import ActsTrackingGeometryToolCfg
17  kwargs.setdefault(
18  "TrackingGeometryTool",
19  acc.popToolsAndMerge(ActsTrackingGeometryToolCfg(flags)),
20  )
21 
22 
23  acc.addEventAlgo(CompFactory.ActsTrk.MeasurementToTrackParticleDecoration(name, **kwargs))
24  return acc
25 
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
ActsObjectDecorationConfig.ActsMeasurementToTrackParticleDecorationCfg
ComponentAccumulator ActsMeasurementToTrackParticleDecorationCfg(flags, str name="ActsMeasurementToTrackParticleDecoration", **kwargs)
Definition: ActsObjectDecorationConfig.py:6
ActsGeometryConfig.ActsTrackingGeometryToolCfg
ComponentAccumulator ActsTrackingGeometryToolCfg(flags, str name="ActsTrackingGeometryTool")
Definition: ActsGeometryConfig.py:100