ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Jeng/PVStudy/python/pvstudy_cfi.py
Revision: 1.12
Committed: Mon May 31 14:22:22 2010 UTC (14 years, 11 months ago) by yygao
Content type: text/x-python
Branch: MAIN
CVS Tags: CMSSW_3_6_1_patch3_May27thReReco, CMSSW_3_5_8_patch3_May6thReReco, HEAD
Changes since 1.11: +2 -1 lines
Log Message:
add option to select the vertex with avgTrackPtInPV cut

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 ana = cms.EDAnalyzer('PVStudy'
4 ,simG4 = cms.InputTag("g4SimHits")
5 ,trackCollection = cms.untracked.InputTag('generalTracks')
6 ,splitTrackCollection1 = cms.untracked.InputTag("VtxTrackSplitterProducer","SplittedTracks1")
7 ,splitTrackCollection2 = cms.untracked.InputTag("VtxTrackSplitterProducer","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 #max sep in z allowed for the two-vertices pair to be analyzed
14 ,zsigncut = cms.untracked.int32(5)
15 ,analyzeOnTheFly = cms.untracked.bool(False)
16 ,saventuple = cms.untracked.bool(False)
17 ,ntrkdiffcut = cms.untracked.double(1.0)
18 ,avgTrkPtInPVMin = cms.untracked.double(-1.0)
19 ,avgTrkPtInPVMax = cms.untracked.double(999999)
20 ,OutputFileName = cms.untracked.string('ntuple.root')
21 ,nTrkMin = cms.untracked.int32(0)
22 ,nTrkMax = cms.untracked.int32(999)
23 ,beamSpot = cms.InputTag("offlineBeamSpot")
24 ,histoFileName = cms.untracked.string('pvstudy_histo.root')
25 ,useHWTrk = cms.untracked.bool(False)
26 )