CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Variables
muonL1Match_cfi Namespace Reference

Variables

tuple muonL1Match
 For L1 Singlets you. More...
 
tuple muonL1MatcherParameters
 

Variable Documentation

tuple muonL1Match_cfi.muonL1Match
Initial value:
1 = cms.EDProducer("L1MuonMatcher",
2  muonL1MatcherParameters,
3 
4  # Reconstructed muons
5  src = cms.InputTag("muons"),
6 
7  # L1 Muon collection, and preselection on that collection
8  matched = cms.InputTag("l1extraParticles"),
9  preselection = cms.string("bx == 0"),
10 
11  # Fake filter labels for output
12  setL1Label = cms.string("l1"),
13  setPropLabel = cms.string("propagated"),
14 
15  # Write extra ValueMaps
16  writeExtraInfo = cms.bool(True),
17 
18  # Min and Max BXs from l1t::BxVector (applies to stage 2 only)
19  firstBX = cms.int32(0),
20  lastBX = cms.int32(0),
21 
22 )

For L1 Singlets you.

Definition at line 30 of file muonL1Match_cfi.py.

tuple muonL1Match_cfi.muonL1MatcherParameters
Initial value:
1 = cms.PSet(
2  # Choice of matching algorithm
3  useTrack = cms.string("tracker"), # 'none' to use Candidate P4; or 'tracker', 'muon', 'global'
4  useState = cms.string("atVertex"), # 'innermost' and 'outermost' require the TrackExtra
5  useSimpleGeometry = cms.bool(True), # just use a cylinder plus two disks.
6  fallbackToME1 = cms.bool(False), # If propagation to ME2 fails, propagate to ME1
7 
8  useMB2InOverlap = cms.bool(False), # propagate to MB2 in overlap region (according to L1 experts OMTF uses MB2 as RF in all its coverage)
9  useStage2L1 = cms.bool(False), # Use stage2 L1 instead of legacy one
10 
11  sortBy = cms.string("pt"), # among compatible candidates, pick the highest pt one
12 
13  # Matching Criteria
14  maxDeltaR = cms.double(0.5),
15  maxDeltaPhi = cms.double(6),
16  maxDeltaEta = cms.double(99),
17  l1PhiOffset = cms.double(1.25 * pi/180.), ## Offset to add to L1 phi before matching (according to L1 experts)
18 )

Definition at line 9 of file muonL1Match_cfi.py.