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 from global pflow
36  embedTunePMuonBestTrack = cms.bool(True), ## embed in AOD externally stored muon best track from muon only
37  forceBestTrackEmbedding = cms.bool(False), ## force embedding separately the best tracks even if they're already embedded e.g. as tracker or global tracks
38  embedTrack = cms.bool(False), ## embed in AOD externally stored tracker track
39  embedCombinedMuon = cms.bool(True), ## embed in AOD externally stored combined muon track
40  embedStandAloneMuon = cms.bool(True), ## embed in AOD externally stored standalone muon track
41  embedPickyMuon = cms.bool(True), ## embed in AOD externally stored TeV-refit picky muon track
42  embedTpfmsMuon = cms.bool(True), ## embed in AOD externally stored TeV-refit TPFMS muon track
43  embedDytMuon = cms.bool(True), ## embed in AOD externally stored TeV-refit DYT muon track
44  embedPFCandidate = cms.bool(True), ## embed in AOD externally stored particle flow candidate
45 
46  # embedding of muon MET corrections for caloMET
47  embedCaloMETMuonCorrs = cms.bool(True),
48  caloMETMuonCorrs = cms.InputTag("muonMETValueMapProducer" , "muCorrData"),
49  # embedding of muon MET corrections for tcMET
50  embedTcMETMuonCorrs = cms.bool(False), # removed from RECO/AOD!
51  tcMETMuonCorrs = cms.InputTag("muonTCMETValueMapProducer", "muCorrData"),
52 
53  # embed IsoDeposits
54  isoDeposits = cms.PSet(
55  #user = cms.VInputTag(
56  # cms.InputTag("muIsoDepositCalByAssociatorTowers","ho"),
57  # cms.InputTag("muIsoDepositJets")
58  # ),
59  ),
60 
61  # user defined isolation variables the variables defined here will be accessible
62  # via pat::Muon::userIsolation(IsolationKeys key) with the key as defined in
63  # DataFormats/PatCandidates/interface/Isolation.h
64  userIsolation = cms.PSet(
65  #user = cms.VPSet(cms.PSet(
66  # src = cms.InputTag("muIsoDepositCalByAssociatorTowers","ho"),
67  # deltaR = cms.double(0.3)
68  # ),
69  # cms.PSet(
70  # src = cms.InputTag("muIsoDepositJets"),
71  # deltaR = cms.double(0.3)
72  # )),
73  ),
74 
75  # mc matching
76  addGenMatch = cms.bool(True),
77  embedGenMatch = cms.bool(True),
78  genParticleMatch = cms.InputTag("muonMatch"), ## particles source to be used for the matching
79 
80  # efficiencies
81  addEfficiencies = cms.bool(False),
82  efficiencies = cms.PSet(),
83 
84  # resolution configurables
85  addResolutions = cms.bool(False),
86  resolutions = cms.PSet(),
87 
88  # high level selections
89  embedHighLevelSelection = cms.bool(True),
90  usePV = cms.bool(True),
91  beamLineSrc = cms.InputTag("offlineBeamSpot"),
92  pvSrc = cms.InputTag("offlinePrimaryVertices")
93 )
94 
95 
96 
97 
98 
99 
100 
101 
102 
103 
104 
105 
106 
107 
108 
109 
110 
111 
112 
113 
114 
115