CMS 3D CMS Logo

OfflinePrimaryVerticesFromCosmicTracks_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 offlinePrimaryVerticesFromCosmicTracks = cms.EDProducer("PrimaryVertexProducer",
4 
5  verbose = cms.untracked.bool(False),
6  TrackLabel = cms.InputTag("ctfWithMaterialTracksP5"),
7  beamSpotLabel = cms.InputTag("offlineBeamSpot"),
8 
9  TkFilterParameters = cms.PSet(
10  algorithm=cms.string('filter'),
11  maxNormalizedChi2 = cms.double(5.0),
12  minSiliconLayersWithHits = cms.int32(7),
13  maxD0Significance = cms.double(5.0),
14  maxD0Error = cms.double(10.0),
15  maxDzError = cms.double(10.0),
16  minPt = cms.double(0.0),
17  maxEta = cms.double(5.0),
18  minPixelLayersWithHits = cms.int32(2),
19  trackQuality = cms.string("any")
20  ),
21 
22  TkClusParameters = cms.PSet(
23  algorithm = cms.string("gap"),
24  TkGapClusParameters = cms.PSet(
25  zSeparation = cms.double(0.1)
26  )
27  ),
28 
29  vertexCollections = cms.VPSet(
30  [cms.PSet(label=cms.string(""),
31  algorithm=cms.string("AdaptiveVertexFitter"),
32  chi2cutoff = cms.double(3.0),
33  minNdof=cms.double(0.0),
34  useBeamConstraint = cms.bool(False),
35  maxDistanceToBeam = cms.double(1.0)
36  )
37  ]
38  )
39 
40 
41 
42 )
43 
44