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 = ['inner tracks','outer tracks'],
7  inputCollectionLabels = ['earlyGeneralTracks', '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  TrackAssociatorParameters = dict(
18  useHO = False,
19  useEcal = False,
20  useHcal = False),
21  selectHighPurity = False
22 )
23 earlyDisplacedMuons = earlyMuons.clone(
24  inputCollectionLabels = ['earlyGeneralTracks','displacedStandAloneMuons:']
25 )