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 candidatePointSeededTrackingRegionsFromBeamSpot = cms.EDProducer('CandidatePointSeededTrackingRegionsEDProducer',
0004   RegionPSet = cms.PSet(
0005     seedingMode = cms.string('Candidate'),
0006     input = cms.InputTag(''),
0007     points = cms.PSet(
0008       eta = cms.vdouble(),
0009       phi = cms.vdouble()
0010     ),
0011     maxNRegions = cms.uint32(10),
0012     operationMode = cms.string('BeamSpotFixed'),
0013     beamSpot = cms.InputTag('hltOnlineBeamSpot'),
0014     vertexCollection = cms.InputTag('hltPixelVertices'),
0015     maxNVertices = cms.int32(1),
0016     nSigmaZBeamSpot = cms.double(4),
0017     zErrorBeamSpot = cms.double(24.2),
0018     nSigmaZVertex = cms.double(3),
0019     zErrorVertex = cms.double(0.2),
0020     ptMin = cms.double(0.9),
0021     originRadius = cms.double(0.2),
0022     deltaEta_Cand = cms.double(-1),
0023     deltaPhi_Cand = cms.double(-1),
0024     deltaEta_Point = cms.double(-1),
0025     deltaPhi_Point = cms.double(-1),
0026     precise = cms.bool(True),
0027     whereToUseMeasurementTracker = cms.string('ForSiStrips'),
0028     measurementTrackerName = cms.InputTag(''),
0029     searchOpt = cms.bool(False)
0030   ),
0031   mightGet = cms.optional.untracked.vstring
0032 )