CMS 3D CMS Logo

hltEleSeedsTrackingRegionsUnseeded_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltEleSeedsTrackingRegionsUnseeded = cms.EDProducer("TrackingRegionsFromSuperClustersEDProducer",
4  RegionPSet = cms.PSet(
5  beamSpot = cms.InputTag("hltOnlineBeamSpot"),
6  defaultZ = cms.double(0.0),
7  deltaEtaRegion = cms.double(0.1),
8  deltaPhiRegion = cms.double(0.4),
9  measurementTrackerEvent = cms.InputTag(""),
10  minBSDeltaZ = cms.double(0.0),
11  nrSigmaForBSDeltaZ = cms.double(4.0),
12  originHalfLength = cms.double(12.5),
13  originRadius = cms.double(0.2),
14  precise = cms.bool(True),
15  ptMin = cms.double(1.5),
16  superClusters = cms.VInputTag("hltEgammaSuperClustersToPixelMatchUnseeded"),
17  useZInBeamspot = cms.bool(False),
18  useZInVertex = cms.bool(False),
19  vertices = cms.InputTag(""),
20  whereToUseMeasTracker = cms.string('kNever')
21  )
22 )