ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/test/analyzeTowers.py
Revision: 1.1
Committed: Mon Jul 5 22:18:11 2010 UTC (14 years, 10 months ago) by yilmaz
Content type: text/x-python
Branch: MAIN
Log Message:
min bias analysis cfg

File Contents

# User Rev Content
1 yilmaz 1.1 process = cms.Process('ANALYSIS')
2    
3     process.maxEvents = cms.untracked.PSet(
4     input = cms.untracked.int32(2)
5     )
6    
7     # Input source
8     process.source = cms.Source("PoolSource",
9     fileNames = cms.untracked.vstring('rfio:/castor/cern.ch/user/y/yilmaz/pat/CMSSW_3_7_0/Hydjet_MinBias_2760GeV_000.root')
10     )
11    
12     process.ana = cms.EDAnalyzer('MinBiasTowerAnalyzer')
13    
14     process.TFileService = cms.Service('TFileService',
15     fileName = cms.string('plots.root')
16     )
17    
18     process.p = cms.Path(process.ana)
19