CMS 3D CMS Logo

ancientMuonSeed_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
5 
6 # module standAloneMuonSeeds = MuonSeedGenerator {
7 ancientMuonSeed = cms.EDProducer("MuonSeedGenerator",
8  ptSeedParameterization,
9  dphiScale,
10  beamSpotTag = cms.InputTag("offlineBeamSpot"),
11  scaleDT = cms.bool(True),
12  CSCRecSegmentLabel = cms.InputTag("cscSegments"),
13  DTRecSegmentLabel = cms.InputTag("dt4DSegments"),
14  ME0RecSegmentLabel = cms.InputTag("me0Segments"),
15  EnableDTMeasurement = cms.bool(True),
16  EnableCSCMeasurement = cms.bool(True),
17  EnableME0Measurement = cms.bool(False),
18  # places where it's OK to have single-segment seeds
19  crackEtas = cms.vdouble(0.2, 1.6, 1.7),
20  crackWindow = cms.double(0.04),
21  deltaPhiSearchWindow = cms.double(0.25),
22  deltaEtaSearchWindow = cms.double(0.2),
23  deltaEtaCrackSearchWindow = cms.double(0.25),
24  )
25 
26 # phase2 ME0
27 from Configuration.Eras.Modifier_phase2_muon_cff import phase2_muon
28 phase2_muon.toModify(ancientMuonSeed, EnableME0Measurement = cms.bool(True))