Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 patMuons = cms.EDProducer("PATMuonProducer",
00004
00005 muonSource = cms.InputTag("muons"),
00006
00007
00008 useParticleFlow = cms.bool( False ),
00009 pfMuonSource = cms.InputTag("particleFlow"),
00010
00011
00012 userData = cms.PSet(
00013
00014 userClasses = cms.PSet(
00015 src = cms.VInputTag('')
00016 ),
00017
00018 userFloats = cms.PSet(
00019 src = cms.VInputTag('')
00020 ),
00021
00022 userInts = cms.PSet(
00023 src = cms.VInputTag('')
00024 ),
00025
00026 userCands = cms.PSet(
00027 src = cms.VInputTag('')
00028 ),
00029
00030 userFunctions = cms.vstring(),
00031 userFunctionLabels = cms.vstring()
00032 ),
00033
00034
00035 embedMuonBestTrack = cms.bool(True),
00036 embedTrack = cms.bool(False),
00037 embedCombinedMuon = cms.bool(True),
00038 embedStandAloneMuon = cms.bool(True),
00039 embedPickyMuon = cms.bool(True),
00040 embedTpfmsMuon = cms.bool(True),
00041 embedDytMuon = cms.bool(True),
00042 embedPFCandidate = cms.bool(True),
00043
00044
00045 embedCaloMETMuonCorrs = cms.bool(True),
00046 caloMETMuonCorrs = cms.InputTag("muonMETValueMapProducer" , "muCorrData"),
00047
00048 embedTcMETMuonCorrs = cms.bool(True),
00049 tcMETMuonCorrs = cms.InputTag("muonTCMETValueMapProducer", "muCorrData"),
00050
00051
00052 isoDeposits = cms.PSet(
00053
00054
00055
00056
00057 ),
00058
00059
00060
00061
00062 userIsolation = cms.PSet(
00063
00064
00065
00066
00067
00068
00069
00070
00071 ),
00072
00073
00074 addGenMatch = cms.bool(True),
00075 embedGenMatch = cms.bool(True),
00076 genParticleMatch = cms.InputTag("muonMatch"),
00077
00078
00079 addEfficiencies = cms.bool(False),
00080 efficiencies = cms.PSet(),
00081
00082
00083 addResolutions = cms.bool(False),
00084 resolutions = cms.PSet(),
00085
00086
00087 embedHighLevelSelection = cms.bool(True),
00088 usePV = cms.bool(True),
00089 beamLineSrc = cms.InputTag("offlineBeamSpot"),
00090 pvSrc = cms.InputTag("offlinePrimaryVertices")
00091 )
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113