ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/HiPatExamples/test/analyzeHiPatBasics_cfg.py
Revision: 1.1
Committed: Mon Jul 27 19:44:31 2009 UTC (15 years, 9 months ago) by appeltel
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Error occurred while calculating annotation data.
Log Message:
initial revision

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 process = cms.Process("Test")
4
5 process.source = cms.Source("PoolSource",
6 fileNames = cms.untracked.vstring(
7 'file:HIPAT_output_full.root'
8 )
9 )
10
11 process.MessageLogger = cms.Service("MessageLogger")
12
13 process.analyzeBasicHiPat = cms.EDFilter("HiPatBasicAnalyzer",
14 photonSrc = cms.untracked.InputTag("selectedLayer1Photons"),
15 muonSrc = cms.untracked.InputTag("selectedLayer1Muons"),
16 jetSrc = cms.untracked.InputTag("selectedLayer1Jets"),
17 )
18
19 process.TFileService = cms.Service("TFileService",
20 fileName = cms.string('analyzeHiPatBasics.root')
21 )
22
23 process.p = cms.Path(process.analyzeBasicHiPat)