CMS 3D CMS Logo

ALCARECOTkAlMuonIsolatedHI_cff.py
Go to the documentation of this file.
1 # AlCaReco for track based alignment using isolated muon tracks - relaxed cuts for PbPb collisions
2 import FWCore.ParameterSet.Config as cms
3 
5 
6 ALCARECOTkAlMuonIsolatedHIHLT = ALCARECOTkAlMuonIsolatedHLT.clone(
7  eventSetupPathsKey = 'TkAlMuonIsolatedHI'
8  )
9 
10 ALCARECOTkAlMuonIsolatedHIDCSFilter = ALCARECOTkAlMuonIsolatedDCSFilter.clone()
11 
12 ALCARECOTkAlMuonIsolatedHI = ALCARECOTkAlMuonIsolated.clone(
13  src = 'hiGeneralTracks'
14 )
15 
16 # Isolation is shifted to the muon preselection, and then applied intrinsically if applyGlobalMuonFilter = True
17 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.applyIsolationtest = False
18 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.minJetDeltaR = 0.0 #pp version has 0.1
19 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.applyGlobalMuonFilter = True
20 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.jetIsoSource = cms.InputTag("iterativeConePu5CaloJets")
21 ALCARECOTkAlMuonIsolatedHI.GlobalSelector.jetCountSource = cms.InputTag("iterativeConePu5CaloJets")
22 
23 ALCARECOTkAlMuonIsolatedHI.TwoBodyDecaySelector.applyMassrangeFilter = False
24 ALCARECOTkAlMuonIsolatedHI.TwoBodyDecaySelector.applyChargeFilter = False
25 ALCARECOTkAlMuonIsolatedHI.TwoBodyDecaySelector.applyAcoplanarityFilter = False
26 
27 seqALCARECOTkAlMuonIsolatedHI = cms.Sequence(ALCARECOTkAlMuonIsolatedHIHLT
28  +ALCARECOTkAlMuonIsolatedHIDCSFilter
29  +ALCARECOTkAlMuonIsolatedHI
30  )