Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 cosmicseedfinder = cms.EDProducer("CosmicSeedGenerator",
00004 stereorecHits = cms.InputTag("siStripMatchedRecHits","stereoRecHit"),
00005 originZPosition = cms.double(0.0),
00006 GeometricStructure = cms.untracked.string('STANDARD'),
00007
00008 matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
00009 MaxNumberOfCosmicClusters = cms.uint32(300),
00010 maxSeeds = cms.int32(10000),
00011 SeedPt = cms.double(5.0),
00012 HitsForSeeds = cms.untracked.string('pairs'),
00013 TTRHBuilder = cms.string('WithTrackAngle'),
00014 ptMin = cms.double(0.9),
00015 rphirecHits = cms.InputTag("siStripMatchedRecHits","rphiRecHit"),
00016 doClusterCheck = cms.bool(True),
00017 originRadius = cms.double(150.0),
00018 ClusterCollectionLabel = cms.InputTag("siStripClusters"),
00019 MaxNumberOfPixelClusters = cms.uint32(300),
00020 PixelClusterCollectionLabel = cms.InputTag("siPixelClusters"),
00021 originHalfLength = cms.double(90.0),
00022
00023 PositiveYOnly = cms.bool(False),
00024 NegativeYOnly = cms.bool(False)
00025
00026 )
00027
00028