1 |
mirena |
1.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)
|