CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CosmicSeed_cfi.py
Go to the documentation of this file.
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  originRadius = cms.double(150.0),
18  ClusterCollectionLabel = cms.InputTag("siStripClusters"),
19  MaxNumberOfPixelClusters = cms.uint32(300),
20  PixelClusterCollectionLabel = cms.InputTag("siPixelClusters"),
21  originHalfLength = cms.double(90.0),
22  #***top-bottom
23  PositiveYOnly = cms.bool(False),
24  NegativeYOnly = cms.bool(False)
25  #***
26 )
27 
28