CMS 3D CMS Logo

siStripElectrons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # $ Id: $
5 # Author: Jim Pivarski, Cornell 3 Aug 2006
6 #
7 siStripElectrons = cms.EDProducer("SiStripElectronProducer",
8  siStereoHitCollection = cms.string('stereoRecHit'),
9  maxHitsOnDetId = cms.int32(4),
10  minHits = cms.int32(5),
11  trackCandidatesLabel = cms.string(''),
12  superClusterProducer = cms.string('correctedHybridSuperClusters'),
13  phiBandWidth = cms.double(0.01), ## radians
14 
15  siStripElectronsLabel = cms.string(''),
16  siRphiHitCollection = cms.string('rphiRecHit'),
17  siHitProducer = cms.string('siStripMatchedRecHits'),
18  maxReducedChi2 = cms.double(10000.0), ## might not work yet
19 
20  originUncertainty = cms.double(15.0), ## cm
21 
22  maxNormResid = cms.double(10.0),
23  siMatchedHitCollection = cms.string('matchedRecHit'),
24  superClusterCollection = cms.string('')
25 )
26 
27