CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
slimmedMETs_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 slimmedMETs = cms.EDProducer("PATMETSlimmer",
4  src = cms.InputTag("patMETs"),
5  rawVariation = cms.InputTag("patPFMet"),
6  t1Uncertainties = cms.InputTag("patPFMetT1%s"),
7  t01Variation = cms.InputTag("patPFMetT0pcT1"),
8  t1SmearedVarsAndUncs = cms.InputTag("patPFMetT1Smear%s"),
9 
10  tXYUncForRaw=cms.InputTag("patPFMetTxy"),
11  tXYUncForT1=cms.InputTag("patPFMetT1Txy"),
12  tXYUncForT01=cms.InputTag("patPFMetT0pcT1Txy"),
13  tXYUncForT1Smear=cms.InputTag("patPFMetT1SmearTxy"),
14  tXYUncForT01Smear=cms.InputTag("patPFMetT0pcT1SmearTxy"),
15 
16  #caloMET, will be used for the beginning of ata takin by the JetMET people
17  caloMET = cms.InputTag("patCaloMet"),
18 
19  #switch to read the type0 correction from the existing slimmedMET
20  #when running on top of miniAOD (type0 cannot be redone at the miniAOD level
21  runningOnMiniAOD = cms.bool(False)
22 
23 )
24