Revision: | 1.2 |
Committed: | Thu Feb 21 07:06:15 2013 UTC (12 years, 2 months ago) by pakhotin |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | HEAD |
Changes since 1.1: | +0 -0 lines |
State: | FILE REMOVED |
Log Message: | remove file |
# | Content |
---|---|
1 | import FWCore.ParameterSet.Config as cms |
2 | |
3 | process = cms.Process("Demo") |
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:myfile.root' |
13 | ) |
14 | ) |
15 | |
16 | process.demo = cms.EDAnalyzer('CutFlowAnalyzer' |
17 | ) |
18 | |
19 | |
20 | process.p = cms.Path(process.demo) |