Go to the documentation of this file.00001
00002
00003
00004
00005 import FWCore.ParameterSet.Config as cms
00006
00007 process = cms.Process("TEST")
00008 process.load("DQMServices.Core.DQM_cfg")
00009
00010
00011 process.source = cms.Source("PoolSource",
00012 fileNames = cms.untracked.vstring(
00013 '/store/relval/CMSSW_3_1_2/RelValZEE/GEN-SIM-RECO/STARTUP31X_V2-v1/0007/DC0B8126-DB78-DE11-8962-001D09F25109.root',
00014 '/store/relval/CMSSW_3_1_2/RelValZEE/GEN-SIM-RECO/STARTUP31X_V2-v1/0007/A0CE6C32-DA78-DE11-96E3-001D09F2532F.root',
00015 '/store/relval/CMSSW_3_1_2/RelValZEE/GEN-SIM-RECO/STARTUP31X_V2-v1/0007/56BA18F5-E278-DE11-8038-001D09F26509.root',
00016 '/store/relval/CMSSW_3_1_2/RelValZEE/GEN-SIM-RECO/STARTUP31X_V2-v1/0007/30A1F4B9-DB78-DE11-8F74-001D09F253C0.root'
00017
00018
00019
00020
00021
00022 '/store/relval/CMSSW_3_1_2/RelValZEE/GEN-SIM-RECO/MC_31X_V3-v1/0007/0C3128C6-A878-DE11-9CEE-001D09F25208.root'
00023 )
00024 )
00025
00026 process.maxEvents = cms.untracked.PSet(
00027 input = cms.untracked.int32(-1)
00028 )
00029
00030
00031 process.load("Validation.RecoParticleFlow.tauBenchmarkElecRejection_cff")
00032 process.pfTauBenchmarkElecRejection.GenMatchObjectLabel = cms.string('e')
00033 process.pfTauBenchmarkElecRejection.OutputFile = cms.untracked.string('tauBenchmarkElecRejection_zee.root')
00034
00035 process.p =cms.Path(
00036 process.tauBenchmarkElecRejection
00037 )
00038
00039 process.schedule = cms.Schedule(process.p)
00040
00041 process.load("FWCore.MessageLogger.MessageLogger_cfi")
00042 process.options = cms.untracked.PSet(
00043 makeTriggerResults = cms.untracked.bool(True),
00044 wantSummary = cms.untracked.bool(True),
00045 Rethrow = cms.untracked.vstring('Unknown',
00046 'ProductNotFound',
00047 'DictionaryNotFound',
00048 'InsertFailure',
00049 'Configuration',
00050 'LogicError',
00051 'UnimplementedFeature',
00052 'InvalidReference',
00053 'NullPointerError',
00054 'NoProductSpecified',
00055 'EventTimeout',
00056 'EventCorruption',
00057 'ModuleFailure',
00058 'ScheduleExecutionFailure',
00059 'EventProcessorFailure',
00060 'FileInPathError',
00061 'FatalRootError',
00062 'NotFound')
00063 )