ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/python/DAPrimaryVertex_cff.py
Revision: 1.1
Committed: Wed Mar 2 10:26:31 2011 UTC (14 years, 2 months ago) by mzanetti
Content type: text/x-python
Branch: MAIN
Log Message:
cff for DAPrimaryVertex

File Contents

# User Rev Content
1 mzanetti 1.1 # $Id: FastJetCorrection_cff.py,v 1.1 2011/02/04 16:31:53 mzanetti Exp $
2    
3     import FWCore.ParameterSet.Config as cms
4    
5     offlinePrimaryVerticesDA = cms.EDProducer("PrimaryVertexProducer",
6     verbose = cms.untracked.bool(False),
7     algorithm = cms.string('AdaptiveVertexFitter'),
8     TrackLabel = cms.InputTag("generalTracks"),
9     useBeamConstraint = cms.bool(False),
10     beamSpotLabel = cms.InputTag("offlineBeamSpot"),
11     minNdof = cms.double(0.0),
12     PVSelParameters = cms.PSet(
13     maxDistanceToBeam = cms.double(1.0)
14     ),
15     TkFilterParameters = cms.PSet(
16     algorithm=cms.string('filter'),
17     maxNormalizedChi2 = cms.double(5.0),
18     minPixelLayersWithHits=cms.int32(2),
19     minSiliconLayersWithHits = cms.int32(5),
20     maxD0Significance = cms.double(5.0),
21     minPt = cms.double(0.0),
22     trackQuality = cms.string("any")
23     ),
24    
25     TkClusParameters = cms.PSet(
26     algorithm = cms.string("DA"),
27     TkDAClusParameters = cms.PSet(
28     coolingFactor = cms.double(0.8), # rather slow annealing for now
29     Tmin = cms.double(9.), # end of annealing
30     vertexSize = cms.double(0.01) # 100 um !!
31     )
32     )
33     )
34    
35     daPrimaryVertexSequence = cms.Sequence( offlinePrimaryVerticesDA )