Variables | |
tuple | muonL1Match |
For L1 Singlets you. | |
tuple | muonL1MatcherParameters |
00001 cms.EDProducer("L1MuonMatcher", 00002 muonL1MatcherParameters, 00003 00004 # Reconstructed muons 00005 src = cms.InputTag("muons"), 00006 00007 # L1 Muon collection, and preselection on that collection 00008 matched = cms.InputTag("l1extraParticles"), 00009 preselection = cms.string("bx == 0"), 00010 00011 # Fake filter labels for output 00012 setL1Label = cms.string("l1"), 00013 setPropLabel = cms.string("propagated"), 00014 00015 # Write extra ValueMaps 00016 writeExtraInfo = cms.bool(True), 00017 )
For L1 Singlets you.
Definition at line 26 of file muonL1Match_cfi.py.
00001 cms.PSet( 00002 # Choice of matching algorithm 00003 useTrack = cms.string("tracker"), # 'none' to use Candidate P4; or 'tracker', 'muon', 'global' 00004 useState = cms.string("atVertex"), # 'innermost' and 'outermost' require the TrackExtra 00005 useSimpleGeometry = cms.bool(True), # just use a cylinder plus two disks. 00006 fallbackToME1 = cms.bool(False), # If propagation to ME2 fails, propagate to ME1 00007 sortBy = cms.string("pt"), # among compatible candidates, pick the highest pt one 00008 00009 # Matching Criteria 00010 maxDeltaR = cms.double(0.5), 00011 maxDeltaPhi = cms.double(6), 00012 maxDeltaEta = cms.double(99), 00013 l1PhiOffset = cms.double(1.25 * pi/180.), ## Offset to add to L1 phi before matching (according to L1 experts) 00014 )
Definition at line 9 of file muonL1Match_cfi.py.