CMS 3D CMS Logo

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  #adding CHS and Track MET for the Jet/MET studies
20  chsMET = cms.InputTag("patCHSMet"),
21  trkMET = cms.InputTag("patTrkMet"),
22 
23  #adding DeepMET variants
24  addDeepMETs = cms.bool(False),
25  deepMETResolutionTune = cms.InputTag("deepMETsResolutionTune"),
26  deepMETResponseTune = cms.InputTag("deepMETsResponseTune"),
27 
28  #switch to read the type0 correction from the existing slimmedMET
29  #when running on top of miniAOD (type0 cannot be redone at the miniAOD level
30  runningOnMiniAOD = cms.bool(False)
31 
32 )
33