ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/codeHeavyBaryons/HeavyBaryonsAnalysis/Lambda/LambdaAnalyzer/lambdaanalyzer_cfg.py
Revision: 1.1.1.1 (vendor branch)
Committed: Mon Dec 13 15:58:16 2010 UTC (14 years, 5 months ago) by mirena
Content type: text/x-python
Branch: LambdaBAnalyzer
CVS Tags: START
Changes since 1.1: +0 -0 lines
Error occurred while calculating annotation data.
Log Message:

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 process = cms.Process("LambdaAnalysis")
4
5 process.load("FWCore.MessageService.MessageLogger_cfi")
6
7 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
8
9 process.source = cms.Source("PoolSource",
10 # replace 'myfile.root' with the source file you want to use
11 fileNames = cms.untracked.vstring(
12 'file:/nfs/data5/mirena/V0/data/test/B2682FB4-EE90-DF11-88C2-003048D4603E.root'
13 )
14 )
15
16 process.TFileService = cms.Service("TFileService",
17 fileName = cms.string('output.root')
18 )
19
20 process.LambdaAnalysis = cms.EDAnalyzer('LambdaAnalyzer'
21 )
22
23
24 process.p = cms.Path(process.LambdaAnalysis)