CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoMuon/MuonSeedGenerator/python/ancientMuonSeed_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoMuon.MuonSeedGenerator.ptSeedParameterization_cfi import *
00004 from RecoMuon.MuonSeedGenerator.MuonSeedPtScale_cfi import *
00005 
00006 # module standAloneMuonSeeds = MuonSeedGenerator {
00007 ancientMuonSeed = cms.EDProducer("MuonSeedGenerator",
00008                                  ptSeedParameterization,
00009                                  dphiScale,
00010                                  beamSpotTag = cms.InputTag("offlineBeamSpot"),
00011                                  scaleDT = cms.bool(True),
00012                                  CSCRecSegmentLabel = cms.InputTag("cscSegments"),
00013                                  DTRecSegmentLabel = cms.InputTag("dt4DSegments"),
00014                                  EnableDTMeasurement = cms.bool(True),
00015                                  EnableCSCMeasurement = cms.bool(True),
00016                                  # places where it's OK to have single-segment seeds
00017                                  crackEtas = cms.vdouble(0.2, 1.6, 1.7),
00018                                  crackWindow = cms.double(0.04)
00019                                  )
00020 
00021 
00022