CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonSeed_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
6 MuonSeed = cms.EDProducer("MuonSeedProducer",
7  ptSeedParameterization,
8  MuonServiceProxy,
9  dphiScale,
10  # Parameters for seed creation in overlap region
11  maxDeltaEtaOverlap = cms.double(0.08),
12  # Flag for internal debugging
13  DebugMuonSeed = cms.bool(False),
14  minimumSeedPt = cms.double(5.0),
15  # The following parameters are only used in the new seed generator !
16  # Parameters for seed creation in endcap region
17  minCSCHitsPerSegment = cms.int32(4),
18  maxDeltaPhiDT = cms.double(0.3),
19  maxDeltaPhiOverlap = cms.double(0.25),
20  # Parameters for seed creation in barrel region
21  minDTHitsPerSegment = cms.int32(2),
22  maxPhiResolutionDT = cms.double(0.03),
23  DTSegmentLabel = cms.InputTag("dt4DSegments"),
24  SeedPtSystematics = cms.double(0.1),
25  maximumSeedPt = cms.double(3000.0),
26  # Minimum and maximum Pt for seeds
27  defaultSeedPt = cms.double(25.0),
28  CSCSegmentLabel = cms.InputTag("cscSegments"),
29  # this means 1/5 of length in ME1/a
30  maxEtaResolutionCSC = cms.double(0.06),
31  # enable the DT chamber
32  EnableDTMeasurement = cms.bool(True),
33  # Resolution power for distinguishing between 2 muon seeds (suppression of combinatorics)
34  # this means 1/20th of MB0
35  maxEtaResolutionDT = cms.double(0.02),
36  maxDeltaEtaDT = cms.double(0.3),
37  # this is a 5th of a chamber width
38  maxPhiResolutionCSC = cms.double(0.03),
39  maxDeltaEtaCSC = cms.double(0.2),
40  maxDeltaPhiCSC = cms.double(0.5),
41  # enable the CSC chamber
42  EnableCSCMeasurement = cms.bool(True)
43 )
44 
45 
46