CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
gammaJetAnalysis_CHSJECs_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Define CHS correctors
4 ak5PFchsL1Fastjet = cms.ESProducer(
5  'L1FastjetCorrectionESProducer',
6  level = cms.string('L1FastJet'),
7  algorithm = cms.string('AK5PFchs'),
8  srcRho = cms.InputTag('kt6PFJets','rho')
9 )
10 ak5PFchsL2Relative = cms.ESProducer(
11  'LXXXCorrectionESProducer',
12  level = cms.string('L2Relative'),
13  algorithm = cms.string('AK5PFchs')
14 )
15 ak5PFchsL3Absolute = cms.ESProducer(
16  'LXXXCorrectionESProducer',
17  level = cms.string('L3Absolute'),
18  algorithm = cms.string('AK5PFchs')
19 )
20 ak5PFJetschsL1FastL2L3 = cms.ESProducer(
21  'JetCorrectionESChain',
22  correctors = cms.vstring('ak5PFchsL1Fastjet','ak5PFchsL2Relative', 'ak5PFchsL3Absolute')
23 )
24 
25 ak5PFchsL2L3 = cms.ESProducer(
26  'JetCorrectionESChain',
27  correctors = cms.vstring('ak5PFchsL2Relative', 'ak5PFchsL3Absolute')
28  )
29