CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
candidateVertexArbitrator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 candidateVertexArbitrator = cms.EDProducer("CandidateVertexArbitrator",
4  beamSpot = cms.InputTag("offlineBeamSpot"),
5  primaryVertices = cms.InputTag("offlinePrimaryVertices"),
6  tracks = cms.InputTag("particleFlow"),
7  secondaryVertices = cms.InputTag("candidateVertexMerger"),
8  dLenFraction = cms.double(0.333),
9  dRCut = cms.double(0.4),
10  distCut = cms.double(0.04),
11  sigCut = cms.double(5),
12  fitterSigmacut = cms.double(3),
13  fitterTini = cms.double(256),
14  fitterRatio = cms.double(0.25),
15  trackMinLayers = cms.int32(4),
16  trackMinPt = cms.double(0.4),
17  trackMinPixels = cms.int32(1)
18 
19 )
20 
21