CMS 3D CMS Logo

HITpixelPairRegGenerator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 HITpixelPairRegGenerator = cms.EDProducer("SeedGeneratorFromRegionHitsEDProducer",
4  OrderedHitsFactoryPSet = cms.PSet(
5  ComponentName = cms.string('StandardHitPairGenerator'),
6  SeedingLayers = cms.InputTag('PixelLayerPairs')
7  ),
8  SeedComparitorPSet = cms.PSet(
9  ComponentName = cms.string('none')
10  ),
11  RegionFactoryPSet = cms.PSet(
12  ComponentName = cms.string('HITRegionalPixelSeedGenerator'),
13  RegionPSet = cms.PSet(
14  precise = cms.bool(True),
15  deltaEtaTrackRegion = cms.double(0.05),
16  deltaPhiTrackRegion = cms.double(0.05),
17  originHalfLength = cms.double(0.2),
18  deltaEtaL1JetRegion = cms.double(0.3),
19  useTracks = cms.bool(False),
20  originRadius = cms.double(0.2),
21  trackSrc = cms.InputTag("pixelTracks"),
22  useL1Jets = cms.bool(False),
23  useIsoTracks = cms.bool(True),
24  l1tjetSrc = cms.InputTag("l1extraParticles","Tau"),
25  deltaPhiL1JetRegion = cms.double(0.3),
26  ptMin = cms.double(5.0),
27  fixedReg = cms.bool(False),
28  etaCenter = cms.double(0.0),
29  phiCenter = cms.double(0.0),
30  originZPos = cms.double(0.0),
31  vertexSrc = cms.InputTag("pixelVertices")
32  )
33  ),
34  TTRHBuilder = cms.string('WithTrackAngle')
35 )
36 
37