ATLAS Offline Software
Loading...
Searching...
No Matches
python.xAODVertexD3PDObject Namespace Reference

Functions

 DefinexAODVertexD3PDObject (object, trackTarget='trk', trackPrefix='trk_', flags=D3PDMakerFlags.Track)
 BuildxAODVertexD3PDObject (_prefix='vx_', _label='vx', _sgkey=D3PDMakerFlags.VertexSGKey, _object_name='PrimaryVertexD3PDObject', trackTarget='trk', trackPrefix='trk_')

Variables

 D3PD = CompFactory.D3PD
 PrimaryxAODVertexD3PDObject

Function Documentation

◆ BuildxAODVertexD3PDObject()

python.xAODVertexD3PDObject.BuildxAODVertexD3PDObject ( _prefix = 'vx_',
_label = 'vx',
_sgkey = D3PDMakerFlags.VertexSGKey,
_object_name = 'PrimaryVertexD3PDObject',
trackTarget = 'trk',
trackPrefix = 'trk_' )

Definition at line 99 of file xAODVertexD3PDObject.py.

104 trackPrefix='trk_'):
105
106 object = make_SGDataVector_D3PDObject (
107 'DataVector<xAOD::Vertex_v1>',
108 _sgkey,
109 _prefix,
110 _object_name,
111 #default_allowMissing = True,
112 allow_args = ['storeVertexTrackAssociation',
113 'storeVertexTrackIndexAssociation',
114 'storeDiagonalCovarianceAsErrors',
115 'storeVertexType',
116 'storeVertexFitQuality',
117 'storeVertexKinematics',
118 'storeVertexPurity',
119 'vertexPositionLevelOfDetails',
120 'doTruth'])
121
122 DefinexAODVertexD3PDObject(object,
123 trackTarget,
124 trackPrefix)
125
126 return object
127
128
129#
130# Additional arguments that can be passed to this D3PDObject:
131# storeVertexAssociation
132# storeVertexTrackIndexAssociation
133#

◆ DefinexAODVertexD3PDObject()

python.xAODVertexD3PDObject.DefinexAODVertexD3PDObject ( object,
trackTarget = 'trk',
trackPrefix = 'trk_',
flags = D3PDMakerFlags.Track )

Definition at line 13 of file xAODVertexD3PDObject.py.

16 flags = D3PDMakerFlags.Track):
17
18 # Position
19 object.defineBlock (flagTestLOD('vertexPositionLevelOfDetails>=1', flags),
20 'Position',
22 Vars = ['x', 'y', 'z'])
23
24 # Covariance Matrix
25 CovarianceAssoc = SimpleAssociation \
26 (object,
28 level = flagTestLOD('vertexPositionLevelOfDetails>=2', flags))
29
30
31 CovarianceAssoc.defineBlock (
32 flagTestLOD('vertexPositionLevelOfDetails>=2', flags),
33 'Error',
35 Error = deferFlag ('storeDiagonalCovarianceAsErrors', flags),
36 DiagCovariance = deferFlag('not storeDiagonalCovarianceAsErrors',flags),
37 OffDiagCovariance = False,
38 IsPosition = True)
39
40 CovarianceAssoc.defineBlock (flagTestLOD('vertexPositionLevelOfDetails>=3', flags),
41 'Covariance',
43 Error = False,
44 DiagCovariance = False,
45 OffDiagCovariance = True,
46 IsPosition = True)
47
48 # Type
49 object.defineBlock (flagTestLOD('storeVertexType', flags),
50 'Type',
52 Vars = ['type = vertexType'])
53
54 # Fit Quality
55 object.defineBlock (flagTestLOD('storeVertexFitQuality', flags),
56 'FitQuality',
58 Vars = ['chi2 = chiSquared', 'ndof = numberDoF'])
59
60 # Kine
61 object.defineBlock (flagTestLOD('storeVertexKinematics', flags),
62 'Kine',
64
65 # Track Association
66 TrackAssoc = ContainedVectorMultiAssociation \
67 (object,
69 trackPrefix,
70 level = flagTestLOD ('storeVertexTrackAssociation or storeVertexTrackIndexAssociation',
71 flags))
72
73 TrackAssoc.defineBlock (
74 flagTestLOD ('storeVertexTrackAssociation or storeVertexTrackIndexAssociation', flags),
75 'TrkFitQuality',
77 Vars = ['chi2 = chiSquared'])
78
79 PerigeeAssoc = SimpleAssociation \
80 (TrackAssoc,
82 def _trackToVertexHook (c, flags, acc, *args, **kw):
83 from TrackToVertex.TrackToVertexConfig import InDetTrackToVertexCfg
84 c.Associator.TrackToVertexTool = acc.popToolsAndMerge (InDetTrackToVertexCfg (flags))
85 return
86 PerigeeAssoc.defineHook (_trackToVertexHook)
87 PerigeeAssoc.defineBlock (flagTestLOD ('storeVertexTrackAssociation or storeVertexTrackIndexAssociation', flags),
88 'Trk',
90
91 TrackAssoc.defineBlock (
92 flagTestLOD ('storeVertexTrackIndexAssociation', flags),
93 'TrackAssocIndex',
95 Target = trackTarget)
96 return
97
98
Copy aux data to D3PD.
Block filler tool for error and covariance matrix.
Fill an index of an object within a container.
Associate from a VxCandidate to its perigee at primary vertex.
Associate from a VxCandidate to its Position ErrorMatrix.
Block filler tool for vertex kinematics, from attached tracks.

Variable Documentation

◆ D3PD

python.xAODVertexD3PDObject.D3PD = CompFactory.D3PD

Definition at line 10 of file xAODVertexD3PDObject.py.

◆ PrimaryxAODVertexD3PDObject

python.xAODVertexD3PDObject.PrimaryxAODVertexD3PDObject
Initial value:
1= BuildxAODVertexD3PDObject(
2 _prefix='vx_',
3 _label='vx',
4 _sgkey='VxPrimaryCandidate',
5 _object_name='PrimaryVertexD3PDObject',
6 trackTarget='trk',
7 trackPrefix='trk_')

Definition at line 134 of file xAODVertexD3PDObject.py.