File indexing completed on 2024-04-06 12:25:28
0001
0002
0003
0004
0005 import FWCore.ParameterSet.Config as cms
0006
0007 process = cms.Process("Ana")
0008 process.load("FWCore.MessageService.MessageLogger_cfi")
0009
0010 process.maxEvents = cms.untracked.PSet(
0011 input = cms.untracked.int32(100)
0012 )
0013
0014 process.source = cms.Source("PoolSource",
0015 fileNames = cms.untracked.vstring('/store/relval/CMSSW_3_1_2/RelValQCD_FlatPt_15_3000/GEN-SIM-RECO/MC_31X_V3-v1/0007/9E83A122-E978-DE11-9D04-001D09F23C73.root')
0016 )
0017
0018 process.L2RelativeJetCorrector = cms.ESSource("L2RelativeCorrectionService",
0019 tagName = cms.string('Summer09_L2Relative_SC5Calo'),
0020 label = cms.string('L2RelativeJetCorrector')
0021 )
0022
0023 process.L3AbsoluteJetCorrector = cms.ESSource("L3AbsoluteCorrectionService",
0024 tagName = cms.string('Summer09_L3Absolute_SC5Calo'),
0025 label = cms.string('L3AbsoluteJetCorrector')
0026 )
0027
0028 process.L4JetCorrector = cms.ESSource("L4EMFCorrectionService",
0029 tagName = cms.string('L4EMF_IC5'),
0030 label = cms.string('L4EMFJetCorrector')
0031 )
0032
0033 process.L2L3L4JetCorrector = cms.ESSource("JetCorrectionServiceChain",
0034 correctors = cms.vstring('L2RelativeJetCorrector','L3AbsoluteJetCorrector','L4EMFJetCorrector'),
0035 label = cms.string('L2L3L4JetCorrector')
0036 )
0037
0038 process.L2L3L4CorJet = cms.EDProducer("CaloJetCorrectionProducer",
0039 src = cms.InputTag("sisCone5CaloJets"),
0040 correctors = cms.vstring('L2L3L4JetCorrector')
0041 )
0042
0043 process.prefer("L2L3L4JetCorrector")
0044
0045 process.plots = cms.EDAnalyzer("CaloJetPlotsExample",
0046 JetAlgorithm = cms.string('L2L3L4CorJet'),
0047 HistoFileName = cms.string('L2L3L4CaloJetCorExample.root'),
0048 NJets = cms.int32(100)
0049 )
0050
0051 process.p = cms.Path(process.L2L3L4CorJet * process.plots)
0052
0053 process.MessageLogger.cerr.FwkReport.reportEvery = 10