1
2
3
4
5
6
7
8
9
10
11
|
import FWCore.ParameterSet.Config as cms
hltPhase2PixelTracksAndHighPtStepTrackingRegions = cms.EDProducer("GlobalTrackingRegionFromBeamSpotEDProducer",
RegionPSet = cms.PSet(
beamSpot = cms.InputTag("hltOnlineBeamSpot"),
nSigmaZ = cms.double(4.0),
originRadius = cms.double(0.02),
precise = cms.bool(True),
ptMin = cms.double(0.9)
)
)
|