ATLAS Offline Software
Loading...
Searching...
No Matches
EventDensityConfig Namespace Reference

Functions

 getEventShapeName (defOrLabel, nameprefix="", suffix=None, radius=0.4)
 configEventDensityTool (name, jetOrConstitdef, radius=0.4, **options)
 configEventShapeCopierAlg (input)

Function Documentation

◆ configEventDensityTool()

configEventDensityTool ( name,
jetOrConstitdef,
radius = 0.4,
** options )
Returns an EventDensityTool configured with input and output names build according to the given jet (or jet constituent) definition.

jetOrConstitdef can be a JetDefinition, JetInputConstit. The input PseudoJetContainer name and output EventShape name are build 
using helper functions shared in other parts of the config (jet, trigger, egamma,...)

It is still possible to override any properties of the tool in the optionnal additionnal arguments.

Definition at line 33 of file EventDensityConfig.py.

33def configEventDensityTool( name, jetOrConstitdef, radius=0.4, **options ):
34 """Returns an EventDensityTool configured with input and output names build according to the given jet (or jet constituent) definition.
35
36 jetOrConstitdef can be a JetDefinition, JetInputConstit. The input PseudoJetContainer name and output EventShape name are build
37 using helper functions shared in other parts of the config (jet, trigger, egamma,...)
38
39 It is still possible to override any properties of the tool in the optionnal additionnal arguments.
40 """
41 from JetRecConfig.JetRecConfig import getPJContName
42
43 # Set default and passed properties for the EventDensityTool
44 toolProperties = dict(
45 JetAlgorithm = "Kt",
46 JetRadius = radius,
47 InputContainer = getPJContName( jetOrConstitdef),
48 AbsRapidityMin = 0.0,
49 AbsRapidityMax = 2.0,
50 AreaDefinition = "Voronoi",
51 VoronoiRfact = 0.9,
52 OutputContainer = getEventShapeName( jetOrConstitdef) ,
53 UseFourMomArea = True,
54 )
55 # Override properties with user-supplied options.
56 toolProperties.update( options)
57 # Build the tool :
58 return CompFactory.EventDensityTool(name, **toolProperties)
59
60

◆ configEventShapeCopierAlg()

configEventShapeCopierAlg ( input)
 Returns an Athena alg copying EventShape objects with old key/names to objects with new key/names

Definition at line 61 of file EventDensityConfig.py.

61def configEventShapeCopierAlg( input ):
62 """ Returns an Athena alg copying EventShape objects with old key/names to objects with new key/names
63 """
64 def buildTool( alg):
65 from AthenaCommon.AppMgr import ToolSvc
66 t= CompFactory.EventShapeCopier( input+alg+"EvtShapeCopier",
67 InputEventShape=input+"EventShape",
68 OutputEventShape=alg+input+"EventShape",
69 EventDensityName = "DensityForJetsR" + alg[-1])
70 ToolSvc +=t
71 return t
72 return CompFactory.EventDensityAlg(input+"EventShapeCopierAlg", EventDensityTool = [ buildTool("Kt4"), buildTool("Kt6") ] )
73

◆ getEventShapeName()

getEventShapeName ( defOrLabel,
nameprefix = "",
suffix = None,
radius = 0.4 )
 Get the name of the event shape container for a given jet def or jet constit def.

It's typically like "Kt4EMPFlowEventShape"
But there can be many variations : 
  - nameprefix can be "HLT_"
  - suffix can be EMPFlowPUSB for pu side-band

We normalize all variations here.

Definition at line 5 of file EventDensityConfig.py.

5def getEventShapeName( defOrLabel, nameprefix="", suffix=None, radius=0.4):
6 """ Get the name of the event shape container for a given jet def or jet constit def.
7
8 It's typically like "Kt4EMPFlowEventShape"
9 But there can be many variations :
10 - nameprefix can be "HLT_"
11 - suffix can be EMPFlowPUSB for pu side-band
12
13 We normalize all variations here.
14 """
15
16 from JetRecConfig.JetDefinition import JetDefinition,JetInputConstit
17 tail=''
18 if isinstance(defOrLabel, JetDefinition):
19 label = defOrLabel.inputdef.label
20 # Ignore jet definition infix
21 elif isinstance(defOrLabel, JetInputConstit):
22 label = defOrLabel.label
23 else:
24 label = defOrLabel.replace('_','')
25
26 R = str(int(10*radius))
27 suffix = suffix or ""
28 nameprefix = nameprefix or "" # just in case we are passed None
29
30 return f"{nameprefix}Kt{R}{label}{suffix}{tail}EventShape"
31
32