Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PixelInactiveAreaTrackingRegionsSeedingLayersProducer(**kwargs):
0004   mod = cms.EDProducer('PixelInactiveAreaTrackingRegionsSeedingLayersProducer',
0005     RegionPSet = cms.PSet(
0006       operationMode = cms.string('BeamSpotFixed'),
0007       beamSpot = cms.InputTag('offlineBeamSpot'),
0008       vertexCollection = cms.InputTag('firstStepPrimaryVertices'),
0009       maxNVertices = cms.int32(-1),
0010       nSigmaZBeamSpot = cms.double(4),
0011       zErrorBeamSpot = cms.double(24.2),
0012       nSigmaZVertex = cms.double(3),
0013       zErrorVertex = cms.double(0.2),
0014       extraPhi = cms.double(0),
0015       extraEta = cms.double(0),
0016       ptMin = cms.double(0.9),
0017       originRadius = cms.double(0.2),
0018       precise = cms.bool(True),
0019       whereToUseMeasurementTracker = cms.string('Never'),
0020       measurementTrackerName = cms.InputTag(''),
0021       seedingMode = cms.string('Global'),
0022       input = cms.InputTag(''),
0023       deltaEta_Cand = cms.double(-1),
0024       deltaPhi_Cand = cms.double(-1),
0025       searchOpt = cms.bool(False)
0026     ),
0027     inactivePixelDetectorLabels = cms.VInputTag('siPixelDigis'),
0028     badPixelFEDChannelCollectionLabels = cms.VInputTag('siPixelDigis'),
0029     ignoreSingleFPixPanelModules = cms.bool(False),
0030     debug = cms.untracked.bool(False),
0031     createPlottingFiles = cms.untracked.bool(False),
0032     layerList = cms.vstring(),
0033     BPix = cms.PSet(),
0034     FPix = cms.PSet(),
0035     TIB = cms.PSet(),
0036     TID = cms.PSet(),
0037     TOB = cms.PSet(),
0038     TEC = cms.PSet(),
0039     MTIB = cms.PSet(),
0040     MTID = cms.PSet(),
0041     MTOB = cms.PSet(),
0042     MTEC = cms.PSet(),
0043     mightGet = cms.optional.untracked.vstring
0044   )
0045   for k,v in kwargs.items():
0046     setattr(mod, k, v)
0047   return mod