ATLAS Offline Software
Public Member Functions | List of all members
NewVrtSecInclusive.SoftBFinderTool Class Reference
Inheritance diagram for NewVrtSecInclusive.SoftBFinderTool:
Collaboration diagram for NewVrtSecInclusive.SoftBFinderTool:

Public Member Functions

def __init__ (self, name='SoftBFinderTool')
 

Detailed Description

Definition at line 11 of file NewVrtSecInclusive.py.

Constructor & Destructor Documentation

◆ __init__()

def NewVrtSecInclusive.SoftBFinderTool.__init__ (   self,
  name = 'SoftBFinderTool' 
)

Definition at line 13 of file NewVrtSecInclusive.py.

13  def __init__(self, name = 'SoftBFinderTool' ):
14 
15  from AthenaCommon.AppMgr import ToolSvc
16  mlog = logging.getLogger( 'SoftBFinderTool::__init__ ' )
17  mlog.info("entering")
18  #----------------------
19  # VKalVrt vertex fitter
20  #
21  from TrkVKalVrtFitter.TrkVKalVrtFitterConf import Trk__TrkVKalVrtFitter
22  SVertexFitterTool = Trk__TrkVKalVrtFitter(name="SoftBVertexFitterTool",
23  Extrapolator="Trk::Extrapolator/AtlasExtrapolator")
24  ToolSvc += SVertexFitterTool
25  #----------------------
26  # Soft B-hadron vertex finder itself
27  #
28  Rec__NewVrtSecInclusiveTool.__init__( self, name = name,
29  VertexFitterTool = SVertexFitterTool,
30  CutPt = 500,
31  CutBLayHits = 1,
32  CutPixelHits = 3,
33  CutSiHits = 8,
34  CutTRTHits = 10,
35  useVertexCleaning = True,
36  MultiWithOneTrkVrt = True,
37  removeTrkMatSignif = -1., # No additional material rejection
38  AntiPileupSigRCut = 2.0,
39  TrkSigCut = 2.0,
40  SelVrtSigCut = 3.0,
41  v2tIniBDTCut =-0.7,
42  v2tFinBDTCut = 0.0,
43  cosSVPVCut = 0.4,
44  FastZSVCut = 5.,
45  VertexMergeCut = 4., # 3D vertex-vertex dist significance to try merging
46  MaxSVRadiusCut = 50 # Inside Pixel BL volume
47  )
48  mlog = logging.getLogger( 'SoftBFinderTool::__configured__ ' )
49 

The documentation for this class was generated from the following file:
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18