CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
JetPartonCorrections_cff.py
Go to the documentation of this file.
2 
3 # File: JetCorrections.cff
4 # Author: O. Kodolova
5 # Date: 1/24/07
6 #
7 # JetParton corrections for the icone5, icone7 jets. (ORCA derived)
8 #
9 JetPartonCorrectorIcone5 = cms.ESSource("JetPartonCorrectionService",
10  MixtureType = cms.int32(3),
11  Radius = cms.double(0.5),
12  tagName = cms.string('PartonScale_IterativeCone0.5.txt'),
13  label = cms.string('JetPartonCorrectorIcone5')
14 )
15 
16 es_prefer_JetPartonCorrectorIcone5 = cms.ESPrefer("JetPartonCorrectionService","JetPartonCorrectorIcone5")
17 JetPartonCorrectorIcone7 = cms.ESSource("JetPartonCorrectionService",
18  MixtureType = cms.int32(3),
19  Radius = cms.double(0.7),
20  tagName = cms.string('PartonScale_IterativeCone0.7.txt'),
21  label = cms.string('JetPartonCorrectorIcone7')
22 )
23 
24 JetPartonCorJetIcone5 = cms.EDProducer("JetCorrectionProducer",
25  src = cms.InputTag("iterativeCone5CaloJets"),
26  correctors = cms.vstring('JetPartonCorrectorIcone5'),
27  alias = cms.untracked.string('JetPartonCorJetIcone5')
28 )
29 
30 JetPartonCorJetIcone7 = cms.EDProducer("JetCorrectionProducer",
31  src = cms.InputTag("iterativeCone7CaloJets"),
32  correctors = cms.vstring('JetPartonCorrectorIcone7'),
33  alias = cms.untracked.string('JetPartonCorJetIcone7')
34 )
35 
36 JetPartonCorrections = cms.Sequence(JetPartonCorJetIcone5*JetPartonCorJetIcone7)
37