File indexing completed on 2024-04-06 12:27:02
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from RecoMuon.MuonIdentification.muons1stStep_cfi import muons1stStep
0004
0005 earlyMuons = muons1stStep.clone(
0006 inputCollectionTypes = ['inner tracks','outer tracks'],
0007 inputCollectionLabels = ['earlyGeneralTracks', 'standAloneMuons:UpdatedAtVtx'],
0008 minP = 3.0,
0009 minPt = 2.0,
0010 minPCaloMuon = 3.0,
0011 fillCaloCompatibility = False,
0012 fillEnergy = False,
0013 fillGlobalTrackQuality = False,
0014 fillGlobalTrackRefits = False,
0015 fillIsolation = False,
0016 fillTrackerKink = False,
0017 TrackAssociatorParameters = dict(
0018 useHO = False,
0019 useEcal = False,
0020 useHcal = False),
0021 selectHighPurity = False
0022 )
0023 earlyDisplacedMuons = earlyMuons.clone(
0024 inputCollectionLabels = ['earlyGeneralTracks','displacedStandAloneMuons:']
0025 )