CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
CosmicSeed_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 cosmicseedfinder = cms.EDProducer("CosmicSeedGenerator",
4  stereorecHits = cms.InputTag("siStripMatchedRecHits","stereoRecHit"),
5  originZPosition = cms.double(0.0),
6  GeometricStructure = cms.untracked.string('STANDARD'), ##other choice: TIBD+
7 
8  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
9  MaxNumberOfCosmicClusters = cms.uint32(300),
10  maxSeeds = cms.int32(10000),
11  SeedPt = cms.double(5.0),
12  HitsForSeeds = cms.untracked.string('pairs'),
13  TTRHBuilder = cms.string('WithTrackAngle'),
14  ptMin = cms.double(0.9),
15  rphirecHits = cms.InputTag("siStripMatchedRecHits","rphiRecHit"),
16  doClusterCheck = cms.bool(True),
17  DontCountDetsAboveNClusters = cms.uint32(20),
18  originRadius = cms.double(150.0),
19  ClusterCollectionLabel = cms.InputTag("siStripClusters"),
20  MaxNumberOfPixelClusters = cms.uint32(300),
21  PixelClusterCollectionLabel = cms.InputTag("siPixelClusters"),
22  originHalfLength = cms.double(90.0),
23  #***top-bottom
24  PositiveYOnly = cms.bool(False),
25  NegativeYOnly = cms.bool(False)
26  #***
27 )
28 
29