1 |
jengbou |
1.1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
|
|
3 |
|
|
ana = cms.EDAnalyzer('PVStudy'
|
4 |
yygao |
1.4 |
,simG4 = cms.InputTag("g4SimHits")
|
5 |
|
|
,trackCollection = cms.untracked.InputTag('generalTracks')
|
6 |
|
|
,splitTrackCollection1 = cms.untracked.InputTag("TrackSplitterProducer","SplittedTracks1")
|
7 |
|
|
,splitTrackCollection2 = cms.untracked.InputTag("TrackSplitterProducer","SplittedTracks2")
|
8 |
|
|
,vertexCollection = cms.untracked.InputTag('offlinePrimaryVertices')
|
9 |
|
|
,splitVertexCollection1 = cms.untracked.InputTag("PVProducer1")
|
10 |
|
|
,splitVertexCollection2 = cms.untracked.InputTag("PVProducer2")
|
11 |
|
|
,verbose = cms.untracked.bool(False)
|
12 |
|
|
,realData = cms.untracked.bool(False)
|
13 |
yygao |
1.8 |
,applEvtClean = cms.untracked.bool(True)
|
14 |
|
|
#max sep in z allowed for the two-vertices pair to be analyzed
|
15 |
|
|
,zsigncut = cms.untracked.int32(5)
|
16 |
yygao |
1.4 |
,analyzeOnTheFly = cms.untracked.bool(False)
|
17 |
|
|
,saventuple = cms.untracked.bool(False)
|
18 |
|
|
,ntrkdiffcut = cms.untracked.double(1.0)
|
19 |
|
|
,OutputFileName = cms.untracked.string('ntuple.root')
|
20 |
|
|
,nTrkMin = cms.untracked.int32(0)
|
21 |
yygao |
1.5 |
,nTrkMax = cms.untracked.int32(999)
|
22 |
yygao |
1.8 |
,beamSpot = cms.InputTag("offlineBeamSpot")
|
23 |
|
|
,histoFileName = cms.untracked.string('pvstudy_histo.root')
|
24 |
|
|
|
25 |
|
|
)
|