Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:28:29

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def CandidatePointSeededTrackingRegionsEDProducer(*args, **kwargs):
0004   mod = cms.EDProducer('CandidatePointSeededTrackingRegionsEDProducer',
0005     RegionPSet = cms.PSet(
0006       seedingMode = cms.string('Candidate'),
0007       input = cms.InputTag(''),
0008       points = cms.PSet(
0009         eta = cms.vdouble(),
0010         phi = cms.vdouble()
0011       ),
0012       maxNRegions = cms.uint32(10),
0013       operationMode = cms.string('BeamSpotFixed'),
0014       beamSpot = cms.InputTag('hltOnlineBeamSpot'),
0015       vertexCollection = cms.InputTag('hltPixelVertices'),
0016       maxNVertices = cms.int32(1),
0017       nSigmaZBeamSpot = cms.double(4),
0018       zErrorBeamSpot = cms.double(24.2),
0019       nSigmaZVertex = cms.double(3),
0020       zErrorVertex = cms.double(0.2),
0021       ptMin = cms.double(0.9),
0022       originRadius = cms.double(0.2),
0023       deltaEta_Cand = cms.double(-1),
0024       deltaPhi_Cand = cms.double(-1),
0025       deltaEta_Point = cms.double(-1),
0026       deltaPhi_Point = cms.double(-1),
0027       precise = cms.bool(True),
0028       whereToUseMeasurementTracker = cms.string('ForSiStrips'),
0029       measurementTrackerName = cms.InputTag(''),
0030       searchOpt = cms.bool(False)
0031     ),
0032     mightGet = cms.optional.untracked.vstring
0033   )
0034   for a in args:
0035     mod.update_(a)
0036   mod.update_(kwargs)
0037   return mod