File indexing completed on 2023-05-05 02:46:43
0001 import FWCore.ParameterSet.Config as cms
0002
0003 nearbyPixelClustersAnalyzer = cms.EDAnalyzer('NearbyPixelClustersAnalyzer',
0004 clusterCollection = cms.InputTag('ALCARECOSiPixelCalSingleMuonTight'),
0005 nearByClusterCollection = cms.InputTag('closebyPixelClusters'),
0006 trajectoryInput = cms.InputTag('refittedTracks'),
0007 muonTracks = cms.InputTag('ALCARECOSiPixelCalSingleMuonTight'),
0008 distToTrack = cms.InputTag('trackDistances'),
0009 skimmedGeometryPath = cms.string('SLHCUpgradeSimulations/Geometry/data/PhaseI/PixelSkimmedGeometry_phase1.txt'),
0010 mightGet = cms.optional.untracked.vstring
0011 )