CMS 3D CMS Logo

HITmixedPairRegGenerator_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 HITmixedPairRegGenerator = cms.EDProducer("SeedGeneratorFromRegionHitsEDProducer",
4  OrderedHitsFactoryPSet = cms.PSet(
5  ComponentName = cms.string('StandardHitPairGenerator'),
6  SeedingLayers = cms.InputTag('MixedLayerPairs')
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.3),
16  deltaPhiTrackRegion = cms.double(0.3),
17  isoTrackSrc = cms.InputTag("isolPixelTrackFilterL2"),
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  ptMin = cms.double(0.9),
24  useIsoTracks = cms.bool(True),
25  l1tjetSrc = cms.InputTag("l1extraParticles","Tau"),
26  deltaPhiL1JetRegion = cms.double(0.3),
27  vertexSrc = cms.InputTag("pixelVertices"),
28  fixedReg = cms.bool(False),
29  etaCenter = cms.double(0.0),
30  phiCenter = cms.double(0.0),
31  originZPos = cms.double(0.0),
32  originHalfLength = cms.double(0.2)
33  )
34  ),
35  TTRHBuilder = cms.string('WithTrackAngle')
36 )
37 
38