ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Jeng/PVStudy/python/pvstudy_cfi.py
Revision: 1.1
Committed: Thu Sep 3 17:32:03 2009 UTC (15 years, 8 months ago) by jengbou
Content type: text/x-python
Branch: MAIN
Branch point for: CMSSW_2_2_X
Log Message:
Add file

File Contents

# User Rev Content
1 jengbou 1.1 import FWCore.ParameterSet.Config as cms
2    
3     ana = cms.EDAnalyzer('PVStudy'
4     ,simG4 = cms.InputTag("g4SimHits")
5     ,tracks = cms.untracked.InputTag('generalTracks')
6     ,vtxSample = cms.untracked.InputTag('offlinePrimaryVertices')
7     ,verbose = cms.untracked.bool(False)
8     ,realData = cms.untracked.bool(False)
9     )