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

Functions

 SVForIPToolCfg (name='SVForIPTool', **options)

Function Documentation

◆ SVForIPToolCfg()

SVForIPToolConfig.SVForIPToolCfg ( name = 'SVForIPTool',
** options )
Sets up a SVForIPTool tool and returns it.

input:    name: The name of the tool (should be unique).
              **options: Python dictionary with options for the tool.
output: The actual tool.

Definition at line 6 of file SVForIPToolConfig.py.

6def SVForIPToolCfg( name = 'SVForIPTool', **options ):
7 """Sets up a SVForIPTool tool and returns it.
8
9 input: name: The name of the tool (should be unique).
10 **options: Python dictionary with options for the tool.
11 output: The actual tool."""
12 acc = ComponentAccumulator()
13 options['name'] = name
14 acc.setPrivateTools(CompFactory.Analysis.SVForIPTool( **options))
15
16 return acc