CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CosmicMuonSeedProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 CosmicMuonSeed = cms.EDProducer("CosmicMuonSeedGenerator",
4  MaxSeeds = cms.int32(1000),
5  CSCRecSegmentLabel = cms.InputTag("cscSegments"),
6  EnableDTMeasurement = cms.bool(True),
7  MaxCSCChi2 = cms.double(300.0),
8  MaxDTChi2 = cms.double(300.0),
9  DTRecSegmentLabel = cms.InputTag("dt4DSegments"),
10  EnableCSCMeasurement = cms.bool(True),
11  ForcePointDown = cms.bool(True)
12 )
13 
14 
15