CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  EnableDTMeasurement = cms.bool(True),
15  EnableCSCMeasurement = cms.bool(True),
16  # places where it's OK to have single-segment seeds
17  crackEtas = cms.vdouble(0.2, 1.6, 1.7),
18  crackWindow = cms.double(0.04),
19  deltaPhiSearchWindow = cms.double(0.25),
20  deltaEtaSearchWindow = cms.double(0.2),
21  deltaEtaCrackSearchWindow = cms.double(0.25),
22  )
23 
24 
25