CMS 3D CMS Logo

earlyMuons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 earlyMuons = muons1stStep.clone(
6  inputCollectionTypes = cms.vstring('inner tracks','outer tracks'),
7  inputCollectionLabels = cms.VInputTag(cms.InputTag("earlyGeneralTracks"),cms.InputTag("standAloneMuons","UpdatedAtVtx")),
8  minP = 3.0, # was 2.5
9  minPt = 2.0, # was 0.5
10  minPCaloMuon = 3.0, # was 1.0
11  fillCaloCompatibility = False,
12  fillEnergy = False,
13  fillGlobalTrackQuality = False,
14  fillGlobalTrackRefits = False,
15  fillIsolation = False,
16  fillTrackerKink = False)
17 
18 earlyMuons.TrackAssociatorParameters.useHO = cms.bool(False)
19 earlyMuons.TrackAssociatorParameters.useEcal = cms.bool(False)
20 earlyMuons.TrackAssociatorParameters.useHcal = cms.bool(False)
21 
22 earlyDisplacedMuons = earlyMuons.clone(
23  inputCollectionLabels = cms.VInputTag(cms.InputTag("earlyGeneralTracks"),cms.InputTag("displacedStandAloneMuons","")),
24  )