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 |
yygao |
1.6 |
algorithm = cms.string('gap'),
|
28 |
|
|
zSeparation = cms.double(1) #release value is 0.1
|
29 |
|
|
)
|
30 |
|
|
,TkFilterParameters = cms.PSet(
|
31 |
|
|
maxNormalizedChi2 = cms.double(20.0),
|
32 |
|
|
maxD0Significance = cms.double(100.0),
|
33 |
|
|
minPixelLayersWithHits = cms.int32(2),
|
34 |
|
|
minSiliconLayersWithHits = cms.int32(5)
|
35 |
|
|
)
|
36 |
yygao |
1.1 |
)
|
37 |
yygao |
1.6 |
|