CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
correctionTermsCaloMet_cff.py
Go to the documentation of this file.
2 
3 ##____________________________________________________________________________||
5 
6 ##____________________________________________________________________________||
7 corrCaloMetType1 = caloJetMETcorr.clone()
8 
9 ##____________________________________________________________________________||
10 corrCaloMetType2 = cms.EDProducer(
11  "Type2CorrectionProducer",
12  srcUnclEnergySums = cms.VInputTag(
13  cms.InputTag('corrCaloMetType1', 'type2'),
14  cms.InputTag('muonCaloMETcorr') # NOTE: use 'muonCaloMETcorr' for 'corMetGlobalMuons', do **not** use it for 'met' !!
15  ),
16  type2CorrFormula = cms.string("A + B*TMath::Exp(-C*x)"),
17  type2CorrParameter = cms.PSet(
18  A = cms.double(2.0),
19  B = cms.double(1.3),
20  C = cms.double(0.1)
21  )
22  )
23 
24 ##____________________________________________________________________________||
25 correctionTermsCaloMet = cms.Sequence(
26  corrCaloMetType1 +
27  muonCaloMETcorr +
28  corrCaloMetType2
29  )
30 
31 ##____________________________________________________________________________||
____________________________________________________________________________||