CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/Validation/RecoVertex/python/PrimaryVertexAnalyzer4PU_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 
00004 vertexAnalysis = cms.EDAnalyzer("PrimaryVertexAnalyzer4PU",
00005         simG4 = cms.InputTag("g4SimHits"),
00006         outputFile = cms.untracked.string("pv.root"),
00007         verbose = cms.untracked.bool(True),
00008         recoTrackProducer = cms.untracked.string("generalTracks"),
00009         zmatch=cms.untracked.double(0.05),
00010         TkFilterParameters = cms.PSet(             
00011           maxNormalizedChi2 = cms.double(5.0),     # should be identical to those used in
00012                                                    # OfflinePrimaryVertex_cfg.py
00013           minSiliconLayersWithHits = cms.int32(5), # >= 5
00014           minPixelLayersWithHits = cms.int32(2),   # >= 2
00015           maxD0Significance = cms.double(5.0),     # keep most primary tracks
00016           minPt = cms.double(0.0),                 # better for softish events
00017           trackQuality = cms.string("any")
00018         )
00019 )