CMS 3D CMS Logo

benchmark_cfg.py

Go to the documentation of this file.
00001 # Runs PFBenchmarkAnalyzer and PFJetBenchmark on PFJet sample to
00002 # monitor performance of PFJets
00003 
00004 import FWCore.ParameterSet.Config as cms
00005 
00006 process = cms.Process("TEST")
00007 process.load("DQMServices.Core.DQM_cfg")
00008 
00009 
00010 process.source = cms.Source("PoolSource",
00011 fileNames = cms.untracked.vstring(
00012 'file:aod.root'
00013 )
00014 )
00015 
00016 process.maxEvents = cms.untracked.PSet(
00017     input = cms.untracked.int32(-1)
00018 )
00019 
00020 
00021 process.load("Validation.RecoParticleFlow.tauBenchmarkGeneric_cff")
00022 
00023 process.p =cms.Path(
00024     process.tauBenchmarkGeneric
00025     )
00026 
00027 
00028 process.schedule = cms.Schedule(process.p)
00029 
00030 
00031 
00032 process.load("FWCore.messageLogger.MessageLogger_cfi")
00033 process.options = cms.untracked.PSet(
00034     makeTriggerResults = cms.untracked.bool(True),
00035     wantSummary = cms.untracked.bool(True),
00036     Rethrow = cms.untracked.vstring('Unknown', 
00037         'ProductNotFound', 
00038         'DictionaryNotFound', 
00039         'InsertFailure', 
00040         'Configuration', 
00041         'LogicError', 
00042         'UnimplementedFeature', 
00043         'InvalidReference', 
00044         'NullPointerError', 
00045         'NoProductSpecified', 
00046         'EventTimeout', 
00047         'EventCorruption', 
00048         'ModuleFailure', 
00049         'ScheduleExecutionFailure', 
00050         'EventProcessorFailure', 
00051         'FileInPathError', 
00052         'FatalRootError', 
00053         'NotFound')
00054 )
00055 
00056 
00057 
00058 

Generated on Tue Jun 9 17:49:35 2009 for CMSSW by  doxygen 1.5.4