CMS 3D CMS Logo

LaserSeedGenerator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 LaserSeedFinder = cms.EDFilter("LaserSeedGenerator",
4  originHalfLength = cms.double(90.0),
5  originZPosition = cms.double(0.0),
6  matchedRecHits = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
7  TTRHBuilder = cms.string('WithTrackAngle'),
8  ptMin = cms.double(0.0),
9  rphiRecHits = cms.InputTag("siStripMatchedRecHits","rphiRecHit"),
10  originRadius = cms.double(150.0),
11  Propagator = cms.string('Analytical'), ## change to WithMaterial if you want to use the PropagatorWithMaterial
12 
13  stereoRecHits = cms.InputTag("siStripMatchedRecHits","stereoRecHit")
14 )
15 
16