Revision: | 1.1 |
Committed: | Tue Nov 11 23:01:20 2008 UTC (16 years, 5 months ago) by kukartse |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | V00-03-01, ZMorph_BASE_20100408, gak040610_morphing, V00-02-02, gak011410, gak010310, ejterm2010_25nov2009, V00-02-01, V00-02-00, gak112409, CMSSW_22X_branch_base, segala101609, V00-01-15, V00-01-14, V00-01-13, V00-01-12, V00-01-11, V00-01-10, gak031009, gak030509, gak022309, gak021209, gak040209, gak012809, V00-01-09, V00-01-08, V00-01-07, V00-01-06, V00-01-05, V00-01-04, V00-00-07, V00-00-06, V00-00-05, V00-00-04, V00-01-03, V00-00-02, V00-00-01, HEAD |
Branch point for: | ZMorph-V00-03-01, CMSSW_22X_branch |
Log Message: | initial creation of a package for LJMET multivariate analysis |
# | 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('MultivariateAnalysis' |
17 | ) |
18 | |
19 | |
20 | process.p = cms.Path(process.demo) |