00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007 from RecoMuon.MuonSeedGenerator.ptSeedParameterization_38T_cfi import *
00008
00009
00010
00011 MuonSeed = cms.EDFilter("MuonSeedGenerator",
00012 ptSeedParameterization,
00013 CSCRecSegmentLabel = cms.InputTag("cscSegments"),
00014 DTRecSegmentLabel = cms.InputTag("dt4DSegments"),
00015 EnableDTMeasurement = cms.bool(True),
00016 EnableCSCMeasurement = cms.bool(True),
00017
00018 crackEtas = cms.vdouble(0.2, 1.6, 1.7),
00019 crackWindow = cms.double(0.04)
00020 )
00021
00022
00023