Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 patMETs = cms.EDProducer("PATMETProducer",
00004
00005 metSource = cms.InputTag("caloType1CorrectedMet"),
00006
00007
00008 userData = cms.PSet(
00009
00010 userClasses = cms.PSet(
00011 src = cms.VInputTag('')
00012 ),
00013
00014 userFloats = cms.PSet(
00015 src = cms.VInputTag('')
00016 ),
00017
00018 userInts = cms.PSet(
00019 src = cms.VInputTag('')
00020 ),
00021
00022 userCands = cms.PSet(
00023 src = cms.VInputTag('')
00024 ),
00025
00026 userFunctions = cms.vstring(),
00027 userFunctionLabels = cms.vstring()
00028 ),
00029
00030
00031 addMuonCorrections = cms.bool(True),
00032 muonSource = cms.InputTag("muons"),
00033
00034
00035 addGenMET = cms.bool(True),
00036 genMETSource = cms.InputTag("genMetTrue"),
00037
00038
00039 addEfficiencies = cms.bool(False),
00040 efficiencies = cms.PSet(),
00041
00042
00043 addResolutions = cms.bool(False),
00044 resolutions = cms.PSet(),
00045 )
00046
00047