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

Functions

 DRMultiAssociation (parent, type_name, default_sgkey, default_drcut, prefix='', level=0, blockname=None, *args, **kw)

Variables

 D3PD = CompFactory.D3PD

Function Documentation

◆ DRMultiAssociation()

python.DRMultiAssociation.DRMultiAssociation ( parent,
type_name,
default_sgkey,
default_drcut,
prefix = '',
level = 0,
blockname = None,
* args,
** kw )
Helper for setting up an association to objects within a DR cone,
represented by containment.

Definition at line 19 of file DRMultiAssociation.py.

26 *args, **kw):
27 """Helper for setting up an association to objects within a DR cone,
28 represented by containment.
29"""
30 if blockname is None:
31 blockname = prefix + 'DRMultiAssoc'
32
33 def maker (name, prefix, object_name,
34 sgkey = default_sgkey,
35 getter = None,
36 assoc = None,
37 drcut = default_drcut):
38
39 if not getter:
41 (name + '_Getter',
42 TypeName = type_name,
43 SGKey = sgkey)
44 if not assoc:
45 assoc = D3PD.DRConeAssociationTool (name + 'Assoc',
46 Getter = getter,
47 DRCut = drcut)
48
50 Prefix = prefix,
51 Associator = assoc)
52
53 obj = D3PDObject (maker, prefix)
54 parent.defineBlock (level, blockname, obj)
55 return obj
56
57
Represent a multiple association by containment.
Associate all particles within a DR cut.
Getter tool to retrieve DataVector/List collections from StoreGate.

Variable Documentation

◆ D3PD

python.DRMultiAssociation.D3PD = CompFactory.D3PD

Definition at line 16 of file DRMultiAssociation.py.