CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PrimaryVertexAnalyzer4PU_cfi.py
Go to the documentation of this file.
2 
3 
4 vertexAnalysis = cms.EDAnalyzer("PrimaryVertexAnalyzer4PU",
5  beamSpot = cms.InputTag('offlineBeamSpot'),
6  simG4 = cms.InputTag("g4SimHits"),
7  outputFile = cms.untracked.string("pv.root"),
8  verbose = cms.untracked.bool(True),
9  recoTrackProducer = cms.untracked.string("generalTracks"),
10  zmatch=cms.untracked.double(0.05),
11  TkFilterParameters = cms.PSet(
12  maxNormalizedChi2 = cms.double(5.0), # should be identical to those used in
13  # OfflinePrimaryVertex_cfg.py
14  minSiliconLayersWithHits = cms.int32(5), # >= 5
15  minPixelLayersWithHits = cms.int32(2), # >= 2
16  maxD0Significance = cms.double(5.0), # keep most primary tracks
17  minPt = cms.double(0.0), # better for softish events
18  trackQuality = cms.string("any")
19  )
20 )