CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/PhysicsTools/PatAlgos/python/producersLayer1/metProducer_cfi.py

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