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

Functions

 JetFitterMode3dTo1dFinderCfg (flags, name, useBTagFlagsDefaults=True, **options)

Function Documentation

◆ JetFitterMode3dTo1dFinderCfg()

python.JetFitterMode3dTo1dFinderConfig.JetFitterMode3dTo1dFinderCfg ( flags,
name,
useBTagFlagsDefaults = True,
** options )
Sets up a JetFitterMode3dTo1dFinder tool and returns it.

input:             name: The name of the tool (should be unique).
  useBTagFlagsDefaults : Whether to use BTaggingFlags defaults for options that are not specified.
                         Note however that this tool has no BTaggingFlags defaults; the option is
                         here only for consistency.
              **options: Python dictionary with options for the tool.
output: The actual tool, which can then by added to ToolSvc via ToolSvc += output.

Definition at line 6 of file JetFitterMode3dTo1dFinderConfig.py.

6def JetFitterMode3dTo1dFinderCfg(flags, name, useBTagFlagsDefaults = True, **options):
7 """Sets up a JetFitterMode3dTo1dFinder tool and returns it.
8
9 input: name: The name of the tool (should be unique).
10 useBTagFlagsDefaults : Whether to use BTaggingFlags defaults for options that are not specified.
11 Note however that this tool has no BTaggingFlags defaults; the option is
12 here only for consistency.
13 **options: Python dictionary with options for the tool.
14 output: The actual tool, which can then by added to ToolSvc via ToolSvc += output."""
15 acc = ComponentAccumulator()
16 options['name'] = name
17 acc.setPrivateTools(CompFactory.Trk.Mode3dTo1dFinder(**options))
18
19 return acc