ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Jeng/PVStudy/python/pveffstudy_cfi.py
Revision: 1.5
Committed: Thu May 13 09:28:54 2010 UTC (15 years ago) by yygao
Content type: text/x-python
Branch: MAIN
CVS Tags: CMSSW_3_5_8_patch3_May6thReReco
Changes since 1.4: +3 -1 lines
Log Message:
update

File Contents

# User Rev Content
1 yygao 1.1 import FWCore.ParameterSet.Config as cms
2 yygao 1.2 from TrackingTools.TransientTrack.TransientTrackBuilder_cfi import *
3 yygao 1.1
4     pveffana = cms.EDAnalyzer('PVEffAnalyzer'
5     ,simG4 = cms.InputTag("g4SimHits")
6     ,trackCollection = cms.untracked.InputTag('generalTracks')
7     ,splitTrackCollection1 = cms.untracked.InputTag("VtxTrackSplitterProducer","SplittedTracks1")
8     ,splitTrackCollection2 = cms.untracked.InputTag("VtxTrackSplitterProducer","SplittedTracks2")
9     ,vertexCollection = cms.untracked.InputTag('offlinePrimaryVertices')
10     ,splitVertexCollection1 = cms.untracked.InputTag("PVProducer1")
11     ,splitVertexCollection2 = cms.untracked.InputTag("PVProducer2")
12     ,verbose = cms.untracked.bool(False)
13     ,realData = cms.untracked.bool(False)
14 yygao 1.4 ,useTP = cms.untracked.bool(False)
15     ,useAssociator = cms.untracked.bool(False)
16 yygao 1.2 ,reqCluster = cms.untracked.bool(True)
17     ,analyze = cms.untracked.bool(False)
18 yygao 1.5 ,histoFileName = cms.untracked.string('pveff_hist.root')
19     ,OutputFileName = cms.untracked.string('pveff_ntuple.root')
20     ,saventuple = cms.untracked.bool(False)
21 yygao 1.1 ,zsigncut = cms.untracked.double(5)
22 yygao 1.3 ,ptcut = cms.untracked.double(0.5) # the cut on goodTracks in vtx
23 yygao 1.1 ,nTrkMin = cms.untracked.int32(0)
24     ,nTrkMax = cms.untracked.int32(999)
25     ,beamSpot = cms.InputTag("offlineBeamSpot")
26 yygao 1.2 ,TkClusParameters = cms.PSet(
27     zSeparation = cms.double(10) ## 10cm
28     )
29 yygao 1.4 ,TkFilterParameters = cms.PSet(maxNormalizedChi2 = cms.double(20.0),
30     minSiliconHits = cms.int32(6), ## hits > 7
31     maxD0Significance = cms.double(100.0), ## keep most primary tracks
32     minPt = cms.double(0.0), ## better for softish events
33     minPixelHits = cms.int32(1) ## hits > 2
34     )
35 yygao 1.1 )