Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-11-06 23:38:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 pointSeededTrackingRegion = cms.EDProducer('PointSeededTrackingRegionsEDProducer',
0004   RegionPSet = cms.PSet(
0005     points = cms.PSet(
0006       eta = cms.vdouble(0),
0007       phi = cms.vdouble(0)
0008     ),
0009     mode = cms.string('BeamSpotFixed'),
0010     maxNRegions = cms.int32(10),
0011     beamSpot = cms.InputTag('hltOnlineBeamSpot'),
0012     vertexCollection = cms.InputTag('hltPixelVertices'),
0013     maxNVertices = cms.int32(1),
0014     ptMin = cms.double(0.9),
0015     originRadius = cms.double(0.2),
0016     zErrorBeamSpot = cms.double(24.2),
0017     deltaEta = cms.double(0.5),
0018     deltaPhi = cms.double(0.5),
0019     precise = cms.bool(True),
0020     nSigmaZVertex = cms.double(3),
0021     zErrorVetex = cms.double(0.2),
0022     nSigmaZBeamSpot = cms.double(4),
0023     whereToUseMeasurementTracker = cms.string('ForSiStrips'),
0024     measurementTrackerName = cms.InputTag(''),
0025     searchOpt = cms.bool(False)
0026   ),
0027   mightGet = cms.optional.untracked.vstring
0028 )