File indexing completed on 2025-02-20 03:45:10
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def AreaSeededTrackingRegionsEDProducer(*args, **kwargs):
0004 mod = cms.EDProducer('AreaSeededTrackingRegionsEDProducer',
0005 RegionPSet = cms.PSet(
0006 areas = cms.VPSet(
0007 template = cms.PSetTemplate(
0008 rmin = cms.double(0),
0009 rmax = cms.double(0),
0010 zmin = cms.double(0),
0011 zmax = cms.double(0),
0012 phimin = cms.double(0),
0013 phimax = cms.double(0)
0014 )
0015 ),
0016 operationMode = cms.string('BeamSpotFixed'),
0017 beamSpot = cms.InputTag('offlineBeamSpot'),
0018 vertexCollection = cms.InputTag('firstStepPrimaryVertices'),
0019 maxNVertices = cms.int32(-1),
0020 nSigmaZBeamSpot = cms.double(4),
0021 zErrorBeamSpot = cms.double(24.2),
0022 nSigmaZVertex = cms.double(3),
0023 zErrorVertex = cms.double(0.2),
0024 extraPhi = cms.double(0),
0025 extraEta = cms.double(0),
0026 ptMin = cms.double(0.9),
0027 originRadius = cms.double(0.2),
0028 precise = cms.bool(True),
0029 whereToUseMeasurementTracker = cms.string('Never'),
0030 measurementTrackerName = cms.InputTag(''),
0031 seedingMode = cms.string('Global'),
0032 input = cms.InputTag(''),
0033 deltaEta_Cand = cms.double(-1),
0034 deltaPhi_Cand = cms.double(-1),
0035 searchOpt = cms.bool(False)
0036 ),
0037 mightGet = cms.optional.untracked.vstring
0038 )
0039 for a in args:
0040 mod.update_(a)
0041 mod.update_(kwargs)
0042 return mod