3 from AthenaConfiguration.ComponentAccumulator 
import ComponentAccumulator
 
    4 from AthenaConfiguration.ComponentFactory 
import CompFactory
 
    7     """Sets up a ImprovedJetFitterInitializationHelper tool and returns it. 
    9     The following options have BTaggingFlags defaults: 
   11     input:             name: The name of the tool (should be unique). 
   12       useBTagFlagsDefaults : Whether to use BTaggingFlags defaults for options that are not specified. 
   13                   **options: Python dictionary with options for the tool. 
   14     output: The actual tool, which can then by added to ToolSvc via ToolSvc += output.""" 
   16     if useBTagFlagsDefaults:
 
   17         from TrkConfig.TrkVertexFitterUtilsConfig 
import AtlasFullLinearizedTrackFactoryCfg
 
   19         defaults = {
'LinearizedTrackFactory' : jetFitterFullLinearizedTrackFactory}
 
   20         for option 
in defaults:
 
   21             options.setdefault(option, defaults[option])
 
   23     options[
'name'] = name
 
   24     acc.setPrivateTools(CompFactory.Trk.JetFitterInitializationHelper(**options))