ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/lucieg/AnalyzerForTests/Analyzer/test/Analyzer_cfg.py
Revision: 1.1
Committed: Thu Jul 7 16:21:21 2011 UTC (13 years, 9 months ago) by lucieg
Content type: text/x-python
Branch: MAIN
CVS Tags: logger_lucieg_22Nov11-00h31m40s, logger_lucieg_11Jul11-14h37m27s, HEAD
Error occurred while calculating annotation data.
Log Message:
resync

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 process = cms.Process("ANALYSIS")
4
5 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
6 process.options = cms.untracked.PSet(
7 SkipEvent = cms.untracked.vstring('ProductNotFound'),
8 )
9
10 process.source = cms.Source("PoolSource",
11 fileNames = cms.untracked.vstring(
12 # '/store/cmst3/user/cbern/CMG/HT/Run2011A-May10ReReco-v1/AOD/PAT_CMG_MAX/tree_CMG_10.root'
13 #'/store/cmst3/user/lucieg/CMG/DoubleMu/Run2011A-May10ReReco-v1/AOD/PAT_CMG/patTuple_PF2PAT_44.root'
14 # 'file:/tmp/lucieg/patTuple_PF2PAT.root'
15 'file:/data/lucieg/RelValZEE423/tree_CMG_0.root'
16 )
17 )
18
19 process.load("AnalyzerForTests.Analyzer.analyzer_cfi")
20
21 process.analysis.HistOutFile = cms.untracked.string('test.root')
22 process.p = cms.Path(process.analysis)
23
24 process.load("FWCore.MessageLogger.MessageLogger_cfi")
25 process.MessageLogger.cerr.FwkReport.reportEvery = 1