CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonProducer_cfi.py
Go to the documentation of this file.
2 
3 patMuons = cms.EDProducer("PATMuonProducer",
4  # input
5  muonSource = cms.InputTag("muons"),
6 
7  # use particle flow instead of std reco
8  useParticleFlow = cms.bool( False ),
9  pfMuonSource = cms.InputTag("particleFlow"),
10 
11  # add user data
12  userData = cms.PSet(
13  # add custom classes here
14  userClasses = cms.PSet(
15  src = cms.VInputTag('')
16  ),
17  # add doubles here
18  userFloats = cms.PSet(
19  src = cms.VInputTag('')
20  ),
21  # add ints here
22  userInts = cms.PSet(
23  src = cms.VInputTag('')
24  ),
25  # add candidate ptrs here
26  userCands = cms.PSet(
27  src = cms.VInputTag('')
28  ),
29  # add "inline" functions here
30  userFunctions = cms.vstring(),
31  userFunctionLabels = cms.vstring()
32  ),
33 
34  # embedding objects
35  embedMuonBestTrack = cms.bool(True), ## embed in AOD externally stored muon best track
36  embedTrack = cms.bool(False), ## embed in AOD externally stored tracker track
37  embedCombinedMuon = cms.bool(True), ## embed in AOD externally stored combined muon track
38  embedStandAloneMuon = cms.bool(True), ## embed in AOD externally stored standalone muon track
39  embedPickyMuon = cms.bool(True), ## embed in AOD externally stored TeV-refit picky muon track
40  embedTpfmsMuon = cms.bool(True), ## embed in AOD externally stored TeV-refit TPFMS muon track
41  embedDytMuon = cms.bool(True), ## embed in AOD externally stored TeV-refit DYT muon track
42  embedPFCandidate = cms.bool(True), ## embed in AOD externally stored particle flow candidate
43 
44  # embedding of muon MET corrections for caloMET
45  embedCaloMETMuonCorrs = cms.bool(True),
46  caloMETMuonCorrs = cms.InputTag("muonMETValueMapProducer" , "muCorrData"),
47  # embedding of muon MET corrections for tcMET
48  embedTcMETMuonCorrs = cms.bool(True),
49  tcMETMuonCorrs = cms.InputTag("muonTCMETValueMapProducer", "muCorrData"),
50 
51  # embed IsoDeposits
52  isoDeposits = cms.PSet(
53  #user = cms.VInputTag(
54  # cms.InputTag("muIsoDepositCalByAssociatorTowers","ho"),
55  # cms.InputTag("muIsoDepositJets")
56  # ),
57  ),
58 
59  # user defined isolation variables the variables defined here will be accessible
60  # via pat::Muon::userIsolation(IsolationKeys key) with the key as defined in
61  # DataFormats/PatCandidates/interface/Isolation.h
62  userIsolation = cms.PSet(
63  #user = cms.VPSet(cms.PSet(
64  # src = cms.InputTag("muIsoDepositCalByAssociatorTowers","ho"),
65  # deltaR = cms.double(0.3)
66  # ),
67  # cms.PSet(
68  # src = cms.InputTag("muIsoDepositJets"),
69  # deltaR = cms.double(0.3)
70  # )),
71  ),
72 
73  # mc matching
74  addGenMatch = cms.bool(True),
75  embedGenMatch = cms.bool(True),
76  genParticleMatch = cms.InputTag("muonMatch"), ## particles source to be used for the matching
77 
78  # efficiencies
79  addEfficiencies = cms.bool(False),
80  efficiencies = cms.PSet(),
81 
82  # resolution configurables
83  addResolutions = cms.bool(False),
84  resolutions = cms.PSet(),
85 
86  # high level selections
87  embedHighLevelSelection = cms.bool(True),
88  usePV = cms.bool(True),
89  beamLineSrc = cms.InputTag("offlineBeamSpot"),
90  pvSrc = cms.InputTag("offlinePrimaryVertices")
91 )
92 
93 
94 
95 
96 
97 
98 
99 
100 
101 
102 
103 
104 
105 
106 
107 
108 
109 
110 
111 
112 
113