Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:02

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PATTracksToPackedCandidates(*args, **kwargs):
0004   mod = cms.EDProducer('PATTracksToPackedCandidates',
0005     srcTracks = cms.InputTag('hiConformalPixelTracks'),
0006     srcPrimaryVertices = cms.InputTag('offlineSlimmedPrimaryVertices'),
0007     srcOfflineBeamSpot = cms.InputTag('offlineBeamSpot'),
0008     dzSigCut = cms.double(10),
0009     dxySigCut = cms.double(25),
0010     dzSigHP = cms.double(7),
0011     dxySigHP = cms.double(20),
0012     ptMax = cms.double(1),
0013     ptMin = cms.double(0.3),
0014     resetHP = cms.bool(True),
0015     covarianceVersion = cms.int32(0),
0016     covarianceSchema = cms.int32(520),
0017     mightGet = cms.optional.untracked.vstring
0018   )
0019   for a in args:
0020     mod.update_(a)
0021   mod.update_(kwargs)
0022   return mod